Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

Question Migration problem with japanese characters

More
16 years 6 months ago #31927 by Matias
And did you also remember to put SQL into UTF-8 mode before you make any queries? You can change DB to send rows in custom charset, even if the tables are encoded in different encoding.

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #31935 by falsinfab
Hi,

Yes, I already changed the charset to unicode, this issue is fixed, the problem is in the php script. However the japanese texts are not a lot, I'm coping manually the original japanese text directly into the db.

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #31960 by falsinfab
Unfortunately there are too much japanese texts as expected, it will be a very hard work to copy and paste all the japanese string in the correct position and the probability to make some mistake is very hight. I must to find a way to have the importing script working also with unicode characters..... suggestion?

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #31988 by Matias
Again: In converter you need to tell MySQL to talk UTF-8 to you. Changing the tables is not enough as MySQL happily converts (by default) your strings to ISO-8859-1 when it is sending them to the client.

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #32030 by falsinfab
Hi Matias,

I'm sorry but I'm not a php programmer than I don't understand the modify I must to do into the script. Is there some special "command" I must to add at the beginning of the php code?
Thank you for the help

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #32044 by Matias
Something like this:

mysql_query( "SET NAMES 'utf8'", $database );

Please Log in or Create an account to join the conversation.

Time to create page: 0.234 seconds