View next topic
View previous topic
Post new topic   Reply to topic
Author Message
slacker




Joined: Oct 04, 2008
Posts: 17

PostPosted: Sun Nov 30, 2008 12:45 pm
Reply with quote

Some languages have non-ascii characters like German, Scandinavian and Spanish. This can cause problems in PHP-Nuke sometimes. I have had problem with usernames with Swedish non-ascii characters in Live Chat, where the non-ascii characters are wrongly displayed. I think I have found a fix that to me seems to work, but I want to ask, if there is a better solution:

class.chat.php
Find:
Code:

    $message = mysql_real_escape_string(strip_tags($message));
   


Change to:
Code:
    $message = utf8_decode(mysql_real_escape_string(strip_tags($message)));
   


Find:
Code:

    $response = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>';


Change to:
Code:
    $response = '<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>';
 
View user's profile Send private message
Guardian




Joined: Dec 09, 2006
Posts: 249

PostPosted: Sun Nov 30, 2008 11:27 pm
Reply with quote

Looks good to me.
I am assuming your database isn't using UTF-8.

The sooner *nuke moves to full UTF-8 throughout it will finally get rid of problems like this.

_________________
Code Authors Nuke Reviews 
View user's profile Send private message
slacker




Joined: Oct 04, 2008
Posts: 17

PostPosted: Wed Dec 03, 2008 12:57 am
Reply with quote

I have been using ISO-8859-1 on my productive site now a few days and it works OK now for also usernames with non-ascii characters.
 
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 5 Hours