Help with multisite

I don’t know if this fits in here or not, but I’ve got a multisite setup that we just moved from a .biz URL to .com and now I can’t get into the network admin dashboard. Everything else works perfectly. When I try to get to the network admin side, I get a “too many redirects” error. This is preventing me from updating Pro and any plugins that need updating on the sites in the network.

Any ideas? Thanks in advance - and help is greatly appreciated - I’ve been beating my head against the keyboard for days now.

Hi!

This is probably related to the Wordpress Address URL and/or Site Address URL not being correctly updated.

If you can’t access the general settings page or you have a Multisite network, you can still change these URLs to make sure they are correct. Add the code below to your wp-config.php file to hardcode these values into your site or network:

define('WP_HOME','http://your-site.com');
define('WP_SITEURL','http://your-site.com');

These two lines should also be placed above the /* That's all, stop editing! Happy blogging. */ line.

If this works for you, and you can access the Admin panel, update the URLs under Settings to the correct ones and then remove the added lines from the wp-config.php

Another way would be to update them in the Database using PHPMyAdmin for example.

Regards,
Kevin.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.