Skip to content

Instantly share code, notes, and snippets.

@dac73
Last active July 17, 2019 10:36
Show Gist options
  • Save dac73/0bee407324a25e88257b545f603eb794 to your computer and use it in GitHub Desktop.
Save dac73/0bee407324a25e88257b545f603eb794 to your computer and use it in GitHub Desktop.
Wordpres http > https mysql query
UPDATE wp_options SET option_value = replace(option_value, 'http://www.foo.bar', 'https://www.foo.bar') WHERE option_name = 'home' OR option_name = 'site url';
UPDATE wp_posts SET guid = replace(guid, 'http://www.foo.bar','https://www.foo.bar');
UPDATE wp_posts SET post_content = replace(post_content, 'http://www.foo.bar', 'https://www.foo.bar');
UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.foo.bar','https://www.foo.bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment