Plus Emulator - Turkish letters in Item Names

Sonay

Sonay#0001
Mar 24, 2016
100
51
Hey guys,

I have the problem that if I have turkish letters in the item names and when I open the catalog page with these letters, I get a client disconnect directly

I already changed the charset of the database and it works, the catalog name can use turkish letters without problems.

Maybe someone had such a problem and could fix it and can help me with it.

Greetings
Sonay
 

Parsov

Member
May 18, 2016
315
206
Bash:
shell> ./configure --with-charset=latin5 --with-collation=latin5_turkish_ci

Code:
mysql --database=DBNAME -B -N -e "SHOW TABLES" | awk '{print "SET foreign_key_checks = 0; ALTER TABLE", $1, "CONVERT TO CHARACTER SET latin5 COLLATE latin5_turkish_ci; SET foreign_key_checks = 1; "}' | mysql --database=DBNAME

Code:
ALTER DATABASE DBNAME CHARACTER SET latin5 COLLATE latin5_turkish_ci;
 

Users who are viewing this thread

Top