• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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