Difference between revisions of "Change Wordpress URL in Database (MySQL)"

From ETCwiki
Jump to navigationJump to search
 
Line 2: Line 2:
  
 
==Notes about changing Wordpress URL==
 
==Notes about changing Wordpress URL==
*If your new URL is a different length it can cause loss of widgets and other serialized data in the database
+
Backup your site first. Backup everything. Do this wrong and things will not work.
 
 
  
 +
Fill in your old and new URL and run this in phpmyadmin.
 
  <nowiki>
 
  <nowiki>
 
  UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl.com', 'http://www.newurl.com') WHERE option_name = 'home' OR option_name = 'siteurl';
 
  UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl.com', 'http://www.newurl.com') WHERE option_name = 'home' OR option_name = 'siteurl';
Line 12: Line 12:
 
  </nowiki>
 
  </nowiki>
  
Also pop this into your wp-config.php to override the Settings page:
+
Also pop this into your wp-config.php to override the Settings page URL
 
  <nowiki>
 
  <nowiki>
 
  define( 'WP_HOME', 'http://example.com' );
 
  define( 'WP_HOME', 'http://example.com' );
 
  define( 'WP_SITEURL', 'http://example.com' );
 
  define( 'WP_SITEURL', 'http://example.com' );
 
  </nowiki>
 
  </nowiki>
 +
 +
 +
Now you go into the phpmyadmin search tab and look for the old url. Don't replace it here, find where it is referencing in Wordpress and change in the Wordpress Dashboard.
  
 
==External Links==
 
==External Links==

Latest revision as of 15:57, 30 March 2020

This code is to search and replace an old URL with a new URL inside your Wordpress SQL database. It would be easy to paste this code into phpmyadmin in the SQL tab to run all of these. Make sure you backup your database before you do anything!

Notes about changing Wordpress URL

Backup your site first. Backup everything. Do this wrong and things will not work.

Fill in your old and new URL and run this in phpmyadmin.

 UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl.com', 'http://www.newurl.com') WHERE option_name = 'home' OR option_name = 'siteurl';
 UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl.com','http://www.newurl.com');
 UPDATE wp_posts SET post_content = replace(post_content, 'http://www.oldurl.com', 'http://www.newurl.com');
 UPDATE wp_postmeta SET meta_value = replace(meta_value,'http://www.oldurl.com','http://www.newurl.com');
 

Also pop this into your wp-config.php to override the Settings page URL

 define( 'WP_HOME', 'http://example.com' );
 define( 'WP_SITEURL', 'http://example.com' );
 


Now you go into the phpmyadmin search tab and look for the old url. Don't replace it here, find where it is referencing in Wordpress and change in the Wordpress Dashboard.

External Links