Subsite Dashboard bullet list
-
I have setup a multisite on netsol at https://www.lakecountyschools.net and when I login in to the main site the dashboard is working properly, as well as the network dashboard. But when I try to access the subsite, the front end works, but the dashboard shows up as a bullet list with no formatting and none of the links work.
subsite https://www.lakecountyschools.net/testsite/
image of dashboard https://postimg.org/image/ivxdpzlob/I have fresh and clean installed several times as well as started new databases. I have also cleared all of the themes and plugins and it still brings up a bullet list.
the wordpress directory is in root/htdocs/ since that is how netsol sets up. I am not sure what to check to make this work. any help would be great.
If I remove the mod_write the formatting comes back briefly then goes back to the list.
.htaccess
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).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L] RewriteRule . index.php [L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
- The topic ‘Subsite Dashboard bullet list’ is closed to new replies.