• I’m trying to figure out what’s wrong. Recently cleared out an old install of WordPress, started over with multisite. The Network Admin and main page dashboards load up fine, the work, the site displays. I had to fix a 403 error on several of the subsites, but they’re viewable now.

    My issue is that on all sites other than the main site, attempting to go to the admin panels ends up with a display error, so the dashboard that looks like a long single left hand column, like this. I’m not sure what’s causing this or where to start on fixing this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Replace .htaccess file with new WP lines given in Network Setup from wordpress admin.

    Thread Starter TheLeprechaun

    (@theleprechaun)

    I have – as part of the setup. .htaccess is as follows:

    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /irishpubsmain/
    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]
    </IfModule>
    
    # END WordPress

    Unless I’m supposed to get rid of the IfModule tags, I think that’s right.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Subsite dashboards not displaying’ is closed to new replies.