I have done a fresh install of WordPress 3.5
I am not using any plugins & using the provided 2012 theme only.
After setting up multisite I noticed I can not access the subsite dashboards. And the subsites themselves are unstyled.
This is my wp-config file provided by my network setup.
define('MULTISITE', true);
define('SUBDOMAIN_INSTALL', false);
define('DOMAIN_CURRENT_SITE', 'gloconj.com');
define('PATH_CURRENT_SITE', '/');
define('SITE_ID_CURRENT_SITE', 1);
define('BLOG_ID_CURRENT_SITE', 1);
This is my .htaccess file provided by my network setup.
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).*) home/content/64/9220864/html/$2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ home/content/64/9220864/html/$2 [L]
RewriteRule . index.php [L]
I have followed every step and not added a theme or plugin to allow for basic testing first - I have also called godaddy regarding the .htaccess file - they assure me it must be a problem within my file.
I have looked at all the boards and help files to no avail. I have been at this for days and at a loss. Can anyone provide some info on this?