Giải nén WordPress website A sửa thành website B

5
(1)

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/%’;

How useful was this post?

thuthuatcaidat.com

Share
Published by
thuthuatcaidat.com

Recent Posts

Ví dụ về việc chuyển file giữa 2 VPS

Đôi khi việc chuyển file hoặc download từ local Việt Nam đi các VPS nước…

3 năm ago

Thay đổi port SSH trên Linux

Kiểm tra port SSH đang sử dụng trên VPS netstat -atnp | grep "ssh" Kiểm…

3 năm ago

Sửa lỗi phpMyAdmin – Error

phpMyAdmin – Error Error during session start; please check your PHP and/or webserver log file…

5 năm ago

Thiết lập MySQLDumper

Đây là phần quản lý mysql, cơ sở dữ liệu lớn, dành cho những bạn…

5 năm ago

Tự động xóa hết file log trên VPS Linux bằng Crontab

Sẽ không có hình ảnh minh họa cụ thể nào, tất cả hướng dẫn sẽ…

5 năm ago

Cách cài đặt Fail2Ban trên CentOS 7

Cách cài đặt Fail2Ban trên CentOS 7. There were xxxxx failed login attempts since the…

6 năm ago