Giải nén WordPress website A sửa thành website B
Muốn giải nén 1 website của domain khác là A và để thay thế cho 1 domain khác cụ thể là B
thì chú ý file wp-config.php phải trỏ đúng database
define( ‘WP_PLUGIN_DIR’, ‘/home/A.com/public_html/wp-content/plugins’ );
define( ‘WPMU_PLUGIN_DIR’, ‘/home/A.com/public_html/wp-content/mu-plugins’ );
—-> Sửa domain A thành B
ngoài ra trong database tìm đến wp-options sửa hết domain A thành B –> Chú ý dòng
recently_edited
siteurl
home
Tắt tất cả các plugin nếu sảy ra lỗi
wp_options –> active_plugins –> a:0:{}
Dưới đây là câu lệnh dùng cho phpmyadmin nếu bí rồi thì mở SQL trong đó lên mà chạy thay thế
UPDATE wp_options
SET option_value = REPLACE(option_value, ‘A.com’, ‘B.com’) WHERE option_value
LIKE ‘A.com/%’;
UPDATE wp_posts
SET post_content = REPLACE(post_content, ‘A.com’, ‘B.com’) WHERE post_content
LIKE ‘A.com/%’;