Archive

Archive for April, 2009

Small update for TWG will come soon

April 30th, 2009 No comments

Hi,

A couple of users found some smaller issues with their configuration and TWG 1.7.7.

I have fixed them already and the patches are tested right now by the users. As soon I get positive feedback I will update the download on the web site as well.  Most likely this will be available on the weekend.

I also got some new rating buttons which look much nicer – you can see them on the demo on the website already.

- Michael

Categories: TinyWebGallery Tags: ,

TWG 1.7.7 is ready and available on the web site

April 23rd, 2009 2 comments

A new version of TWG is ready. It looks like a small release but it was a lot of work.

The highlights:

  • Full support of IE8
  • Lytebox works over all images – even on the detail page
  • TFU 2.9 is integrated
  • TWG mobile mode – mobile devices like the iphone are detected and TWG switches to an optimized mode for it.

The full list of changes can be found in the forum:

http://www.tinywebgallery.com/forum/viewforum.php?f=14

you can download it on the download page.

Have fun using TWG

- Michael

Bug in WP-twitter 1.4

April 22nd, 2009 3 comments

UPDATE 2.5.2009: The author has updated the plugin to version 1.4.1 which fixes this problem.

If you use wp-twitter 1.4 then your rss feed does not work anymore because it is printing 2 returns which the rss feed of Firefox does not like. To fix this open wp-twitter.php and look for

?>

<?php

(line 155-157) just above wp_twitter_add()

Put them together to ?><?php or remove them.  save and your rss feed should work fine in firefox too.

Here is a link to the fixed version:
http://www.tinywebgallery.com/blog/download/wp-twitter14_fixed.zip

It seems this problem does happen on different version as well. Look for extra returns that should not be there.

- Michael

Categories: PHP Tags: , ,

The blog is now officially online

April 20th, 2009 No comments

www.TinyWebGallery.com does now link to this new blog at blog.tinywebgallery.com

You will find all the news about TWG, TFU, JFU and everything interesting around this topics. I’ll post problems I find with certain scripts or php or browsers or development overall.

Please subscribe to the RSS feed to stay informed if new versions are available.

Have fun using the new blog

- Michael

Tinywebgallery was added to softaculous.com

April 15th, 2009 No comments

TinyWebGallery was added to softaculous which is a new and very interesting installer for web applications.

But softaculous is not just an auto/instant installer. They wanted users to choose the best softwares available and ALSO give a fair chance to new Software Vendors. So Softaculous maintains USER RATINGS and makes them available to the endusers in the Softaculous Panel. Softaculous also provides USER REVIEWS given by various users of these softwares. Even you can RATE and REVIEW a software which will help others make a wise choice.

Please go there and vote for TWG.

- Michael

iframe bug in IE 8

April 15th, 2009 No comments

Hi,

During testing of TWG with IE 8 I have found out that there is a bug in IE 8 if you want to show a hidden iframe with the Javascript function setTimeOut.  The iframe is shown but without any text.

In TWG I showed the iframes 200 ms after clicking to load the page in background. I had to change the implementation to make this work with IE 8 in all modes as well.

For example:

window.setTimeout(‘document.getElementById(“details”).style.visibility = “visible”‘,600);

does not work properly in IE8 while

document.getElementById(“details”).style.visibility = “visible”;

does.

I have integrated this change already in TWG 1.7.7 and hope this helps anyone who runs into this problem.

- Michael

Categories: TinyWebGallery Tags: , ,

Welcome to the TWG blog

April 15th, 2009 No comments

I finally added a blog to TWG to make it easier to anounce new versions of TWG, TFU and JFU and also write about interesting things I find out during development which maybe are helpfull for others that run into the same problem.