• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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