Skip to content

Instantly share code, notes, and snippets.

@jenovateurs
Created November 19, 2019 16:53
Show Gist options
  • Save jenovateurs/3e38e862bcbf4bd853c018a74b1b4f3b to your computer and use it in GitHub Desktop.
Save jenovateurs/3e38e862bcbf4bd853c018a74b1b4f3b to your computer and use it in GitHub Desktop.
Permet de migrer un serveur WordPress.
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