WordPress MultiSite Network Admin Not Working
-
Hello all,
I have recently created a WordPress Multinetwork using the sub folders.
I have 2 websites in network.
I have migrated the sites from the old server to the new server.
After Migration the Posts, links and network admin were’nt working.
Some how i have managed to make the post and pages link to work.
I can log into the admin and also access the child sites admin dashboard.
But when I select the Network Admin Dashboard from the top left drop dowm menu the page keeps on loading and after some time the following error occurs.
“The page isn’t redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
This problem can sometimes be caused by disabling or refusing to accept cookies.”
I have cleared cookies, caches and checked the whole database twice for reference of the old site url.
Below is the code for multinetwork in the wp-config file.
define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); define('DOMAIN_CURRENT_SITE', 'www.yourdomain.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
Below is my Htaccess file code
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L]
Any guess where am I going wrong…!
Cheers..!
- The topic ‘WordPress MultiSite Network Admin Not Working’ is closed to new replies.