Title: Multisite dashboard is blank.
Last modified: August 22, 2016

---

# Multisite dashboard is blank.

 *  Resolved [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/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.

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

 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668810)
 * Have you checked to see if Multisite is permitted on your hosting plan?
 *  Thread Starter [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668825)
 * 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.
 *  Thread Starter [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668826)
 * 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/](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_REDIRECTS
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668861)
 * [http://www.pusdonline.com/lincoln/](http://www.pusdonline.com/lincoln/) is a
   white screen of death.
 * [http://www.pusdonline.com/lincoln/readme.html](http://www.pusdonline.com/lincoln/readme.html)
   is too.
 * What’s in your .htaccess? Is the theme Twenty Fifteen still installed on your
   server?
 *  Thread Starter [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668872)
 * I’m not sure if 2015 is on our server.
 * We’re running
    Free Mode Version 3.7.1
 * Our 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 WordPress
       ```
   
 *  Thread Starter [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668873)
 * I believe it is 2015 because we’re running Academica Pro theme.
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668892)
 * 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.
 *  Thread Starter [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668895)
 * Like this?
 *     ```
       # replace a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
       ```
   
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668897)
 * No. Delete your .htaccess. Replace it with what I gave you.
 * Yours is wrong.
 *  Thread Starter [phrederick](https://wordpress.org/support/users/phrederick/)
 * (@phrederick)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668898)
 * You sir are amazing!!!
 * Thank you!!!

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

The topic ‘Multisite dashboard is blank.’ is closed to new replies.

 * In: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
 * 10 replies
 * 2 participants
 * Last reply from: [phrederick](https://wordpress.org/support/users/phrederick/)
 * Last activity: [11 years, 7 months ago](https://wordpress.org/support/topic/multisite-dashboard-is-blank/#post-5668898)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
