kcyg17 adlı üyeden alıntı: mesajı görüntüle
sitenin cpanelinden sql yerine gir komutları çalıştır veya sorguyu çalıştır kısmından değiştirmek istediğin karakterlerden şu komutlarını kullan

UPDATE wp_posts SET post_content = REPLACE(post_content,'ç','ç');
UPDATE wp_posts SET post_title = REPLACE(post_title,'ı','i');
UPDATE wp_comments SET comment_content = REPLACE(comment_content,'ı','i');
UPDATE wp_links SET link_name = REPLACE(link_name,'İ','I');
UPDATE wp_links SET link_description = REPLACE(link_description,'ö','ö');
UPDATE wp_terms SET name = REPLACE(name,'ı','i');
UPDATE wp_term_taxonomy SET description = REPLACE(description,'Äz','G');
UPDATE wp_users SET user_login = REPLACE(user_login,'ö','ö');

işine yarar umarın
Sorguyu çalıştırdım ama bir şey değişmedi.

UPDATE wp_posts SET post_content = REPLACE(post_content,'ç','ç');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_posts SET post_title = REPLACE(post_title,'ı','i');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_comments SET comment_content = REPLACE(comment_content,'ı','i');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_links SET link_name = REPLACE(link_name,'İ','I');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_links SET link_description = REPLACE(link_description,'ö','ö');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_terms SET name = REPLACE(name,'ı','i');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_term_taxonomy SET description = REPLACE(description,'Äz','G');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).

UPDATE wp_users SET user_login = REPLACE(user_login,'ö','ö');# MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır).