• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

CentOS 7 (MySQL / MariaDB)

MariaDB is default SQL server on CentOS7 instead of MySQL. Why you don't want to use it?
 
Gigaveri, if this will comfort you, you shouldn't have a problem with MariaDB because that was MySQL right before MySQL was bought by Oracle ..
 
Gigaveri, if this will comfort you, you shouldn't have a problem with MariaDB because that was MySQL right before MySQL was bought by Oracle ..

CentOS 6 CentOS Plesk 7 Turkish character is having trouble handling MariaDB türkish ç ö ş ü ğ ı promlem Most health mysql 5.5

example

Code:
UPDATE wp_posts SET post_title = REPLACE(post_title,'ç','ç');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Ç','Ç');
UPDATE wp_posts SET post_title = REPLACE(post_title,'ÄŸ','ğ');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Äz','Ğ');
UPDATE wp_posts SET post_title = REPLACE(post_title,'ı','ı');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Ä°','İ');
UPDATE wp_posts SET post_title = REPLACE(post_title,'ö','ö');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Ö','Ö');
UPDATE wp_posts SET post_title = REPLACE(post_title,'ÅŸ','ş');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Åz','Ş');
UPDATE wp_posts SET post_title = REPLACE(post_title,'ü','ü');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Ãœ','Ü');
UPDATE wp_posts SET post_title = REPLACE(post_title,'’','’');
UPDATE wp_posts SET post_title = REPLACE(post_title,'Â',' ');
UPDATE wp_posts SET post_title = REPLACE(post_title,'â€','"');
UPDATE wp_posts SET post_title = REPLACE(post_title,'“','"');

they do not work MariaDB does not work that replace
 
Back
Top