I deployed my multisite install from localhost to my webserver.

I changed the domain name in the database and in the configuration files, but some of my links are still using localhost for the domain, instead of the domain of the webserver:

link|improve this question

55% accept rate
feedback

3 Answers

up vote 1 down vote accepted

I guess the answer for your problem can be found here..
Edit the wp-config.php page as follows using the following link: wp-config page
What you need to add is the following :
- WP_SITEURL as
define('WP_SITEURL', 'http://example.com/wordpress');
and
- WP_HOME as
define('WP_HOME', 'http://example.com/wordpress');

link|improve this answer
feedback

From the linked images (most notably the network admin link), I think you're running a multisite install.

Moving a multisite install is more difficult than a standard install, as there are many more references to the server name, mostly in the database.

From the codex:

Multisite is far more complicated to move, as the database itself has multiple references to the server name as well as the folder locations.

The best way to move Multisite is to move the files, edit the .htaccess and wp-config.php (if the folder name containing Multisite changed), and then manually edit the database. Search for all instances of your domain name, and change them as needed. This step cannot yet be easily automated. If you're moving Multisite from one folder to another, you will need to make sure you edit the wp_blogs entries to change the folder name correctly.

As for exactly what you need to change:

In wp-config the domain URL is defined as DOMAIN_CURRENT_SITE

Looking at a database dump I have there were also these references which look to be needed:

  • siteurl - wp_options
  • home - wp_options
  • fileupload_url - wp_options
  • domain - wp_blogs field name
  • domain - wp_site
  • siteurl - wp_sitemeta

The following need to be done for each blog ID, replacing x with the ID of the blog.

  • siteurl - wp_x_options
  • home - wp_x_options
  • fileupload_url - wp_x_options

And another one which is probably not so critical but will link you about at a later date:

  • source_domain under wp_usermeta - stores data about which domain the user originated from
link|improve this answer
Thanks this solution worked: "In wp-config the domain URL is defined as DOMAIN_CURRENT_SITE" – Future King Mar 14 '11 at 22:49
@FutureKing I'm confused, if this worked, why have you changed your acceptance to the other answer? – Thomas McDonald Dec 30 '11 at 1:52
feedback

Generally wordpress stores links and other things directly in its database. I think you need to open the sql file with a text editor and check whether there is any http://localhost url and if any replace it/them with your current website url appropriately as well as changing the options in http://www.your-domain.com/wp-admin/options.php thanks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.