Skip to content

Instantly share code, notes, and snippets.

@vaporic
Last active March 10, 2016 22:50
Show Gist options
  • Save vaporic/5f58ff0c06b34ecb0f5c to your computer and use it in GitHub Desktop.
Save vaporic/5f58ff0c06b34ecb0f5c to your computer and use it in GitHub Desktop.
Migrate Compraregalos.mx
UPDATE wp_options SET option_value = REPLACE(option_value,'http://localhost/www/compraregalos','http://compraregalos.mx');
UPDATE wp_posts SET post_content = REPLACE(post_content,'http://localhost/www/compraregalos','http://compraregalos.mx');
UPDATE wp_posts SET guid = REPLACE(guid,'http://localhost/www/compraregalos','http://compraregalos.mx');
UPDATE wp_postmeta SET meta_value = REPLACE(meta_value,'http://localhost/www/compraregalos','http://compraregalos.mx');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment