Last active
March 10, 2016 22:50
-
-
Save vaporic/5f58ff0c06b34ecb0f5c to your computer and use it in GitHub Desktop.
Migrate Compraregalos.mx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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