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

Editor Blogs






Lost Password?
No account yet? Register

Who's Online

We have 1177 guests and 69 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.


leandrosalvador Extensions(0) | Reviews(1) | Favourites(0)
AJAX Shoutbox
 UTF-8 Encoding Problems, February 4, 2008

AJAX Shoutbox This is an excellent module! But it has a little bug, easily fixed. Just follow these instrucitons to do it...

For the problem showing text in the wrong (UTF-8) character set, you can make some changes in the file /modules/mod_shoutbox.php.

Search for "function jal_addData(" and after " $jal_user_text = substr($jal_user_text,0,500);
" add this:

$jal_user_text = mb_convert_encoding($jal_user_text, "ISO-8859-1", "UTF-8");

if your encoding is ISO-8859-1 or change it according to yours.