Support Joomla!
Search: Advanced Search
Serving 3610 extensions to the community. Last updated today.

Editor Blogs






Lost Password?
No account yet? Register

Who's Online

We have 736 guests and 41 members online

Directory Support

Rules
Using this Site

Disclaimer

The extensions and reviews listed in this area have been submitted by the community and their listing does not constitute or imply endorsement, recommendation, or favouring by Joomla!/OSM.

This content is provided as a free service to our visitors, and, as such, Joomla!/OSM cannot be held liable for the accuracy of the information. Visitors wishing to verify that the information is correct should contact the parties responsible for authoring the content and/or development of the extension.


Are you seeing blanks over some extensions' compatibility, license and type field? Head over to JED forum to learn why.
noamik Extensions(0) | Reviews(1) | Favourites(0)
Gallery 2 Bridge
 Nice bridge with charset problems, May 16, 2006
0 of 1 people find this review helpful:

Gallery 2 Bridge I use this bridge and I love it. The only problem is: gallery2 Comments are utf-8-encoded, joomla texts iso-8859-1.

I solved the problem with a little hack in the index.php of joomla:

// Hack to make Gallery2 have the right encoding ...
if($option == 'com_gallery2') DEFINE('_ISO','charset=utf-8');
// Hack end, next lines are already in the index.php, put the hack right here

// loads english language file by default
if ($mosConfig_lang=='') {
$mosConfig_lang = 'english';
}
include_once( 'language/' . $mosConfig_lang . '.php' );

Consider that you should not use any char which is different in utf-8 and iso-8859-1 in your navigation or any text visible at the same time as the gallery.

Would be nice if the bridge would be able to convert utf-8 to iso-8859-1 in one of the next versions.