• Here’s what I’ve done:

    1. Installed WP into a subdomain http://www.mydomain.com/0000
    2. Trying to host multiple sites on /0000/v1 and 0000/v2.
    3. Installed multi site and have complete access to my Network Admin panel using these instructions: http://codex.ww.wp.xz.cn/Create_A_Network#.htaccess_and_Mod_Rewrite
    4. When I click on an individual sites dashboard, I get a “Internal Service Error” message. The only individual site whose dashboard works is the default one in /0000

    Here’s what is 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).*) 0000/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ 0000/$2 [L]
    RewriteRule . index.php [L]
    </IfModule>
    
    # END WordPress
    
    # BEGIN wtwp_cache
    # END wtwp_cache
    
    # BEGIN wtwp_security
    # END wtwp_security

    I think I’ve gone through every source to troubleshoot this.

    Something that stood out that may be an underlying issue is the reference to different directories of where WP thinks my htaccess and wp-config live in my Network Setup page.

    It says change the wp-config located in:
    /home/content/02/11016802/html/0000/

    And the htaccess it says is located in:
    /home/content/02/11016802/html/

    So I’m not sure why the htaccess is not references in /0000/ because that is indeed where it is.

    Please help! Thanks in advance.

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

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    http://www.mydomain.com/0000 is a subfolder

    You’re getting an error 500. I see you have two blank sections in your .htaccess:

    # BEGIN wtwp_cache
    # END wtwp_cache
    
    # BEGIN wtwp_security
    # END wtwp_security

    Are they really empty, or did you just hide the content for posting?

    Thread Starter Goonar

    (@goonar)

    Sorry, should’ve read over. I created a subdomain in GoDaddy and installed the WP into 0000.mydomain.com. The links I was provided by wordpress to access my wp-admin’s were as such:

    0000.mydomain/v1/wp-admin
    0000.mydomain/v2/wp-admin
    0000.mydomain/v3/wp-admin

    all of which give me an error 500.

    0000.mydomain.com/wp-admin does work.

    That’s actually what my htaccess looks like. It’s what was there after my initial WP installation.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    It says change the wp-config located in:
    /home/content/02/11016802/html/0000/

    Which … it?

    What does your Multisite section of the wp-config.php look like?

    Thread Starter Goonar

    (@goonar)

    Which … it?

    Not following what you’re asking here.

    Here is my wp-config multisite section:

    /* Multisite */
    define( 'WP_ALLOW_MULTISITE', true );
    
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', '0000.pharmacyne.com');
    define('PATH_CURRENT_SITE', '/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);

    Thanks

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    You said this:

    It says change the wp-config located in:

    What was “it”? 🙂

    Thread Starter Goonar

    (@goonar)

    Ah, makes sense!

    When I go to Network Setup, it gives configurations steps of what to put in my wp-config and htaccess. There is where it says that the two files are located in two different places.

    Here’s a screen shot for clarification: http://screencast.com/t/qzEdRb5bA

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    The URL in #2 is wrong, UNLESS you are giving WP it’s own directory. So … put it in /0000/

    Thread Starter Goonar

    (@goonar)

    That’s the issue and I’m not giving it it’s own directory. It doesn’t work whether I put it in /0000 or its parent directory. Is it possible something went wrong with WordPress during the installation? Seems like a rare oddity…

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Based on the information provided? It’s impossible to tell you if this went wrong with install, multisite activation, or something else :/

    Check your server’s error logs to see if there’s anything related to the other admin pages. If not, delete the multisite part of the site and start over.

    http://wpmututorials.com/how-to/how-to-disable-multisite/

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

The topic ‘Subdirectory dashboards not working’ is closed to new replies.