且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

在传输数据库/服务器设置期间使用波兰字符集编码错误

更新时间:2022-10-16 09:43:28

最后我发现,问题是与数据写入SQL在我的原始服务器不正确的事实有关。



我最后使用传输数据库:

  mysqldump  - default-character-set = utf8 [ORYGINAL_DB] | mysql [TARGET_DB] --default-character-set = utf8 



  UPDATE [table name] SET [field] = CONVERT(BINARY CONVERT([field] USING latin2)USING utf8)
$ p>



存储数据的奇怪字符编码,旧脚本显示它们罚款新的不会



希望上述解决方案对其他人也有帮助。


I am trying to transfer one of my databases from one host (home.pl) to another (my newly set server). The script that I am trying to transfer is wordpress. Unluckily irrespective of the method used I am struggling with encoding problems.

New host configuration

In my new server I am using the following directives in my.cnf:

[mysql]
default-character-set=utf8

[mysqld]
collation-server = utf8_general_ci
character-set-server = utf8
init_connect='SET collation_connection = utf8_general_ci' 
init_connect='SET NAMES utf8' 

[client]
default-character-set=utf8

My mySQL vars:

character_set_client    utf8
character_set_connection    utf8
character_set_database  utf8
character_set_filesystem    binary
character_set_results   utf8
character_set_server    utf8
character_set_system    utf8
collation_connection    utf8_general_ci
collation_database  utf8_general_ci
collation_server    utf8_general_ci

Php.ini on new server:

; PHP's default character set is set to UTF-8.
; http://php.net/default-charset
default_charset = "UTF-8"

Old host configuration

I have runned SHOW VARIABLES in my old host from which I am trying to transfer database and I got the following:

character_set_client    utf8
character_set_connection    utf8mb4
character_set_database  utf8
character_set_results   utf8
character_set_server    latin2
character_set_system    utf8
/usr/local/pssql55/share/charsets/
collation_connection    utf8mb4_general_ci
collation_database  utf8_polish_ci
collation_server    latin2_general_ci

Transfer methods tried out

1) Transfer via phpmyadmin

I have tried using PHPMYADMIN export/import. In particular I have pointed out UTF-8 as file character set both during export and import via phpmyadmin.

What is strange both in phpmyadmin on source server and new host I don't see polish chars (the output is the same without polish chars).

2) Export / Import via mysql dump

I have tried also to use:

 mysqldump -h OLD_HOST -u OLD_USER -p DB | mysql -h localhost -u root NEW DATABASE

but the encoding also fails.

Tried to use also encoding variables but it also failed:

 mysqldump --default-character-set=latin1  | mysql --default-character-set=utf8 

Dump file

In my dump file using Programers Notepad with UTF-8 encoding set, charcters look like this:

"Ä" instead of "ę"

Opening them in microsoft word I see

Ä™ instead of "ę"

The encoding converter (gżegżółka) recognises that the file is in: C:\Users\mkondej001\Desktop\14271425_mk.sql

Kodowanie: Unicode UTF-8
EOL: LF (Unix) 

Any clues how to transfer DB / set server variables correctly ?

At the end I have founded out that the problem was related to the fact that the data was written to SQL incorrectly in my original server.

I ended up with transferring DB using:

mysqldump --default-character-set=utf8 [ORYGINAL_DB] | mysql [TARGET_DB] --default-character-set=utf8

and the executing:

UPDATE [table name] SET [field] = CONVERT(BINARY CONVERT([field] USING latin2) USING utf8)

as it was advices here:

strange character encoding of stored data , old script is showing them fine new one doesn't

Hope that the above solution will be helpful for others too.