Error 310 and Network Admin (before installing mu)
-
I am going through the steps of installing a subdomain multi-site. I have just finished installing the *.mysite.com in cpanel. I install. My next step is to go to the upper right corner of my wp-admin. I click network admin, and I get:
Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
I have yet to install mapping. I have searched the forum to find solutions, and none of them seem to be working for me. I have since closed the links. Allow me to write out changes in my wordpress wp-config.php and .htaccess .
wp-config.php
define('WP_ALLOW_MULTISITE', true);
define('MULTISITE', true);
define( 'SUBDOMAIN_INSTALL', true );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'www.iwishiwasbeautiful.com' );
define( 'PATH_CURRENT_SITE', '/' );
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
.htaccess
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]
# END WordPress
I have no plugins running. Its a new site, just installed. The subdomains are working. It still doesn’t work if I remove my htaccess. I assume its something silly. Thank you for your time.
- The topic ‘Error 310 and Network Admin (before installing mu)’ is closed to new replies.