Skip to content

Instantly share code, notes, and snippets.

@bannostookaylo
Last active February 23, 2018 01:36
Show Gist options
  • Save bannostookaylo/6840aad421b58c55dc06bdb156677c01 to your computer and use it in GitHub Desktop.
Save bannostookaylo/6840aad421b58c55dc06bdb156677c01 to your computer and use it in GitHub Desktop.
UPDATE wp_options SET option_value = REPLACE(option_value, 'http://thrive.bi', 'http://bi.majesticpenguin.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://thrive.bi', 'http://bi.majesticpenguin.com');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://thrive.bi','http://bi.majesticpenguin.com');
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'http://thrive.bi', 'http://bi.majesticpenguin.com');
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'http://thrive.bi','http://bi.majesticpenguin.com');
UPDATE wp_posts SET guid = REPLACE (guid, 'http://thrive.bi', 'http://bi.majesticpenguin.com') WHERE post_type = 'attachment';
UPDATE wp_options SET option_value = REPLACE(option_value, 'https://thrive.bi', 'http://bi.majesticpenguin.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET post_content = REPLACE (post_content, 'https://thrive.bi', 'http://bi.majesticpenguin.com');
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'https://thrive.bi','http://bi.majesticpenguin.com');
UPDATE wp_comments SET comment_content = REPLACE (comment_content, 'https://thrive.bi', 'http://bi.majesticpenguin.com');
UPDATE wp_comments SET comment_author_url = REPLACE (comment_author_url, 'https://thrive.bi','http://bi.majesticpenguin.com');
UPDATE wp_posts SET guid = REPLACE (guid, 'https://thrive.bi', 'http://bi.majesticpenguin.com') WHERE post_type = 'attachment';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment