Changing the site URL

If you have access to phpmyadmin the best way in my opinion is to get WP migrate Db Plugin, then create an export sql file with new url address and upload it with PhpmyAdmin. That way you ensure that every place in the site with old url get replaced with new url in a safe … Read more

How to retrive previous Domain URL in Wp

If you have access to the wp-config.php on the server, you can add the following constants that will override the database. This does not save the settings but will at least get you viewing the site again. define( ‘WP_SITEURL’, ‘url_to_wordpress_core_files’ ); define( ‘WP_HOME’, ‘url_to_wordpress_front_end’ ); There is also a RELOCATE constant that will make the … Read more

Blog broken after changing Site/Home URL

If you have access to the MySQL DB, make sure that wp_blogs.domain is correct, and also wp_blogs.path. Also, run the following to verify the values are correct (assuming WP_OPTIONS is the table holding the options for your main site). SELECT * from wp_options where option_name=”siteurl” or option_name=”home”;