Hello. I am really newbie at server side. Now I want to ask what happens when a user who has a keyboard rather than an English one sends a non-English blog post. Say when an Arabic user types a blog post in her Arabic keyboard, what happens? Can permalink be created by Dolphin successfully when the blog heading is Arabic? What can be done to send and retrieve properly the data in other languages rather than English?
Thanks.
|
Hi. If you are using php version 4.4.6 or higher You need just to go to inc/utils.inc.php find //$s = get_mb_replace ('/[^\pL^\pN]+/u', '-', $s); // unicode characters and uncomment it like here $s = get_mb_replace ('/[^\pL^\pN]+/u', '-', $s); // unicode characters after it find $s = get_mb_replace ('/([^\d^\w]+)/', '-', $s); // latin characters and comment iy Regards Artur A |