Skip to content

Instantly share code, notes, and snippets.

@barryroodt
Created August 31, 2012 10:34
Show Gist options
  • Save barryroodt/3551287 to your computer and use it in GitHub Desktop.
Save barryroodt/3551287 to your computer and use it in GitHub Desktop.
Move WordPress easily
Be sure to leave out trailing slashes
UPDATE wp_options SET option_value = replace(option_value, 'http://oldURL', 'http://yourUrl');
UPDATE wp_posts SET guid = replace(guid, 'http://oldURL', 'http://yourUrl');
UPDATE wp_posts SET post_content = replace(post_content, 'http://oldURL', 'http://yourUrl');
UPDATE wp_postmeta SET meta_value = replace(meta_value, 'http://oldURL', 'http://yourUrl');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment