Replace local db with new URL


/ Published in: SQL
Save to your folder(s)

run these in the SQL tab


Copy this code and paste it in your HTML
  1. UPDATE wp_options SET option_value = REPLACE(option_value, 'http://localhost:8888', 'http://www.NEWSITE.com') WHERE option_name = 'home' OR option_name = 'siteurl';
  2.  
  3. UPDATE wp_posts SET guid = REPLACE(guid, 'http://localhost:8888','http://www.NEWSITE.com');
  4.  
  5. UPDATE wp_posts SET post_content = REPLACE(post_content, 'http://localhost:8888', 'http://www.NEWSITE.com');

URL: http://www.mydigitallife.info/how-to-move-wordpress-blog-to-new-domain-or-location/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.