quick reply plugin - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Support (https://community.mybb.com/forum-72.html) +---- Thread: quick reply plugin (/thread-29317.html) |
quick reply plugin - imiviortal - 2008-03-04 hey , im trying to use quick reply plugin which can find here : http://mods.mybboard.net/view/ajax-quick-reply after ive installed the new pluging everything worked fine except one thing ... when im writing hebrew it posts a gibrish.. ive tried to change all the charset to windows-1255 , didnt help.. anyone have any ideas ? regards , ImMortaL . RE: quick reply plugin - User 2877 - 2008-03-04 In the plugin file edit this function: Quote: $message = strval($_POST['message']); RE: quick reply plugin - imiviortal - 2008-03-04 what should i change and to what ? RE: quick reply plugin - aglioeolio - 2008-03-04 I just converted to UTF-8 my database and Language files, then this plugin start working great RE: quick reply plugin - imiviortal - 2008-03-04 u didnt help me much i need to write hebrew ... what should i do ? and how im doing it ? RE: quick reply plugin - User 2877 - 2008-03-04 windows-1255 is that hebrew? Edit the function for that instead of utf-8. Play with it...figure it out. I gave you everything you need to troubleshoot this. Since I don't speak or write Hebrew nor have it as my windows charset I can't help you further. RE: quick reply plugin - imiviortal - 2008-03-04 yeah WINDOWS-1255 is hebrew , but where do i put it ? replace it with every utf-8 and iso-8859-1 in the code u gave me ? RE: quick reply plugin - Yumi - 2008-03-05 I would suggest converting to UTF-8 (I didn't bother making this compatible for non UTF-8 languages). The reason is because UTF-8 is increasingly becoming the standard as a Unicode character set. AJAX only sends data as UTF-8 (possibly one of the drivers for this). MyBB, since 1.2.10 provides a feature to convert your database to UTF-8, and I would suggest doing it. If, however, for some odd reason you don't want to convert to UTF-8, you can try Dared's mod: http://mybbhacks.zingaburga.com/showthread.php?tid=26&pid=361#pid361 (or wait for MyBB 1.4) |