Skip to content

Instantly share code, notes, and snippets.

@farandal
Created October 13, 2016 07:34
Show Gist options
  • Save farandal/a2fdc284a10e8dd9858e4f5d614b64b5 to your computer and use it in GitHub Desktop.
Save farandal/a2fdc284a10e8dd9858e4f5d614b64b5 to your computer and use it in GitHub Desktop.
#Wordpress Blog Url Migration
SET @old_url = 'http://your_old_url.com';
SET @old_www_url = 'http://www.your_old_url.com';
SET @new_url = '//your_new_url';
UPDATE wp_options SET option_value = replace(option_value, @old_url , @new_url) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @old_url , @new_url);
UPDATE wp_posts SET post_content = replace(post_content, @old_url , @new_url);
UPDATE wp_postmeta SET meta_value = replace(meta_value,@old_url , @new_url);
UPDATE wp_options SET option_value = replace(option_value, @old_www_url , @new_url) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @old_www_url , @new_url);
UPDATE wp_posts SET post_content = replace(post_content, @old_www_url , @new_url);
UPDATE wp_postmeta SET meta_value = replace(meta_value, @old_www_url , @new_url);
@PlayfulChaos
Copy link

#extra useful replacements for a particular project
UPDATE wp_posts SET post_content = REPLACE(post_content, @old_url, @new_url);
UPDATE wp_posts SET post_content = REPLACE(post_content, @old_www_url , @new_url);
UPDATE wp_comments SET comment_author_url = REPLACE(comment_author_url, @old_url, @new_url);
UPDATE wp_comments SET comment_author_url = REPLACE(comment_author_url, @old_www_url, @new_url);
UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://www.youtube.com', '//www.youtube.com');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://img.youtube.com', '//img.youtube.com');
UPDATE wp_posts SET post_content = REPLACE(post_content, "http://s3-ap-southeast-1.amazonaws.com", "//s3-ap-southeast-1.amazonaws.com");
UPDATE wp_posts SET post_content = REPLACE(post_content, "http://3.bp.blogspot.com", "//3.bp.blogspot.com");
UPDATE wp_posts SET post_content = REPLACE(post_content, "http://2.bp.blogspot.com", "//2.bp.blogspot.com");
UPDATE wp_posts SET post_content = REPLACE(post_content, "http://1.bp.blogspot.com", "//1.bp.blogspot.com");
UPDATE wp_posts SET post_content = REPLACE(post_content, "http://4.bp.blogspot.com", "//4.bp.blogspot.com");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment