• Resolved phrederick

    (@phrederick)


    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)

    (@ipstenu)

    ?????? Advisor and Activist

    Have you checked to see if Multisite is permitted on your hosting plan?

    Thread Starter phrederick

    (@phrederick)

    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

    (@phrederick)

    This might help too… The error is as follows.

    This webpage has a redirect loop

    ReloadHide details
    The webpage at https://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)

    (@ipstenu)

    ?????? Advisor and Activist

    https://www.pusdonline.com/lincoln/ is a white screen of death.

    https://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

    (@phrederick)

    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

    (@phrederick)

    I believe it is 2015 because we’re running Academica Pro theme.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    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

    (@phrederick)

    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)

    (@ipstenu)

    ?????? Advisor and Activist

    No. Delete your .htaccess. Replace it with what I gave you.

    Yours is wrong.

    Thread Starter phrederick

    (@phrederick)

    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.