• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

phpMyAdmin default character set problem

P

pun119

Guest
In phpMyAdmin home I can't change collation or other character set todefault.

This collation character set couse problem with website with forign languase (ex:Thai) that fetch data from Mysql to show ex: web board and forum because it default character set is set to latin.

Any one have way to fix this problem.

My solution so far is to put a code in side web page which take time if I have to do this with all of my clients.

Any solution will be very thankful.

:cool:
 
I had problems with Collation after importing database exported from older version of phpMyAdmin... Is it the same case with you?
 
I think it is the same problem .
I also export data from other server phpmyadmin with older ver. than my.
 
Then, you have the same problem as I did. User needed to migrate his MySQL database to our server which had newer version of phpMyAdmin installed.
After import to our server, Collation fields were all set to latin_swedish instead of cp1250_xxx and that was, as far as I remember, due to older version of phpMyAdmin not exporting CHARSET values along with data.
I don't remember whether I added this values manually to all tables (thankfully it was only 1 database) or I executed SQL query's on each table within phpMyAdmin...

ie.
ALTER TABLE your_table_name CONVERT TO CHARACTER SET your_new_encoding;
 
Thank you I give it a try but my data contain 70 table This might take time.:D
 
Back
Top