Multisite dashboard is blank.
-
I am working on a site through 1and1 hosting and I have turned on multi site in my wp-config.php. However, when I crate a site and try to go to it’s dashboard it’s blank.
-
Have you checked to see if Multisite is permitted on your hosting plan?
I just called them and they said they do permit it. They also suggested uninstalling and re-installing multisite. I’m not sure how to do that.
This might help too… The error is as follows.
This webpage has a redirect loop
ReloadHide details
The webpage at http://www.pusdonline.com/lincoln/wp-admin/ has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
Learn more about this problem.
Error code: ERR_TOO_MANY_REDIRECTShttp://www.pusdonline.com/lincoln/ is a white screen of death.
http://www.pusdonline.com/lincoln/readme.html is too.
What’s in your .htaccess? Is the theme Twenty Fifteen still installed on your server?
I’m not sure if 2015 is on our server.
We’re running
Free Mode
Version 3.7.1Our htaccess is:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> AddHandler x-mapp-php5 .php # 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] 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] </IfModule> # END WordPressI believe it is 2015 because we’re running Academica Pro theme.
1) Fix your .htaccess. It said replace not add to π
AddHandler x-mapp-php5 .php <IfModule mod_rewrite.c> 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] </IfModule>2) Install the theme TwentyFifteen to your network.
Like this?
# replace a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]No. Delete your .htaccess. Replace it with what I gave you.
Yours is wrong.
You sir are amazing!!!
Thank you!!!
The topic ‘Multisite dashboard is blank.’ is closed to new replies.