Using CakePHP 1.3.10

I have a legacy MYSQL database with latin1 encoding. I do not have the option of changing the database or table encoding since it will break other things.

I created and loaded a table with data using php code. One column in the table has russian text which is utf8. On my development box, Ubuntu 10.10, all the controller functions work perfectly. On my production box, the Russian column shows Сайты instead of Сайты

I had this problem in another development environment (in Elgg) and I solved it by invoking mysql_query("SET NAMES latin1") before the actual mysql_query($query) call.

I thought I could do this in Cake by specifying encoding => "latin1" in the database.php code but it made no difference. Still seeing things like Войти instead of Войти

For the record, the php5 php.ini does not specify encoding in either box and the mysql.conf files on both boxes have the same variables:

mysql> show variables like '%char%';
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | latin1                     |
| character_set_connection | latin1                     |
| character_set_database   | latin1                     |
| character_set_filesystem | binary                     |
| character_set_results    | latin1                     |
| character_set_server     | latin1                     |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
8 rows in set (0.00 sec)

So - I'm game for a suggestion how to fix this rather stupid issue

Thanks Dan

link|improve this question
I think what you're seeing is UTF-8, but it's displayed as Latin-1. The problem must be somewhere else down the line, not with the database fetch. – Kerrek SB Jun 27 '11 at 23:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.