Created
November 19, 2019 16:53
-
-
Save jenovateurs/3e38e862bcbf4bd853c018a74b1b4f3b to your computer and use it in GitHub Desktop.
Permet de migrer un serveur WordPress.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://localhost', 'http://192.168.1.18') WHERE option_name = 'home' OR option_name = 'siteurl'; | |
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://localhost', 'http://192.168.1.18'); | |
UPDATE wp_posts SET post_excerpt = REPLACE (post_excerpt, 'http://localhost', 'http://192.168.1.18'); | |
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://localhost','http://192.168.1.18'); | |
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://localhost', 'http://192.168.1.18'); | |
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://localhost','http://192.168.1.18'); | |
UPDATE wp_posts SET guid = REPLACE (guid, 'http://localhost', 'http://192.168.1.18'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment