• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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