• So I installed the latest version of WP (3.8.1) set it up for Multisite and created 2 sub-sites. All sites are working, but only the network admin dashboard is usable. When I switch over to one of the sub-sites’ dashboard it appears to be un-styled (displaying all ul/li’s) and none of the list items even work.

    What the heck is wrong here?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Did you update your .htaccess properly?

    Thread Starter neumannslounge

    (@neumannslounge)

    I like to think so…

    RewriteEngine On
    RewriteBase /rootscoffeehouse/
    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]
    Thread Starter neumannslounge

    (@neumannslounge)

    I’m more of a UX/front-end/make things look pretty and function efficiently type of developer (at least I try to be)… with that being said, does it matter that this site is located in a sub-directory?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Nah, doesn’t matter.

    Is only ONE subsite having the unstyled dashboard issue?

    Thread Starter neumannslounge

    (@neumannslounge)

    Unfortunately, both of them are.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    This is good! It means this is likely a server issue. Check with your host and see if your httpd.conf is set to have AllowOverride set to ALL or Options All.

    Thread Starter neumannslounge

    (@neumannslounge)

    Sorry for the delay, I’m using Network Solutions and trying to get assistance without paying $60 just to ‘flip this switch’. I will provide an update if I get the problem resolved. Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Multisite Dashboard for Sub-sites appear to be un-styled and not working’ is closed to new replies.