Hello,
I've just installed multisite on my home blog http://jessicaklein.ca/ and successfully activated it and added the site http://jessicaklein.ca/portfolio/ which shows up under 'my sites' and 'sites', however I cant access the dashboard for it, and its not rendering the theme. Here is how I've configured htaccess:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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).*) $1 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
# END WordPress
its hosted on justhost...I've checked db permissions and the blogs.dir permissions, they are set to "all" and "755"
Not sure what's gone wrong. I wasn't certain on how to create the directory blogs.dir using cpanel. I added a new folder and named it blogs.dir. The extra network tables are present in the db.
Thanks for the help.