• Resolved ladonnascheiber

    (@ladonnascheiber)


    So I have installed multisite on my wordpress blog. I get the network admin, I can add a site. The site has no theme and no dashboard, click here is what it looks like:

    http://tazzabe.us/bettyboop/

    When I click on the sites dashboard from the network admin section I get:

    This page can’t be displayed

    •Make sure the web address http://tazzabe.us is correct.
    •Look for the page with your search engine.
    •Refresh the page in a few minutes.

    I followed the instructions in the codex section and I feel like I did everything right, but obviously something went wrong! Please help!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    What’s in your .htaccess?

    Thread Starter ladonnascheiber

    (@ladonnascheiber)

    Here is what I have in my .htaccess

    # BEGIN WordPress
    <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).*) tazzabe.us/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ tazzabe.us/$2 [L]
    RewriteRule . index.php [L]
    </IfModule>
    # END WordPress
    
    # BEGIN wtwp_cache
    # END wtwp_cache
    
    # BEGIN wtwp_security
    # END wtwp_security
    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) tazzabe.us/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ tazzabe.us/$2 [L]

    That is … odd. Why is tazzabe.us in there? It should be this:

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    Thread Starter ladonnascheiber

    (@ladonnascheiber)

    Thank You, That did the trick!!!

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

The topic ‘Multisite site dashboard not working’ is closed to new replies.