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/%’;
Đôi khi việc chuyển file hoặc download từ local Việt Nam đi các VPS nước…
Kiểm tra port SSH đang sử dụng trên VPS netstat -atnp | grep "ssh" Kiểm…
phpMyAdmin – Error Error during session start; please check your PHP and/or webserver log file…
Sẽ không có hình ảnh minh họa cụ thể nào, tất cả hướng dẫn sẽ…
Cách cài đặt Fail2Ban trên CentOS 7. There were xxxxx failed login attempts since the…