Support » Networking WordPress » subsites admins cant log in

  • Rebecca

    (@clrvirtualconnection)


    Hi! I am a community manager for a Virtual Org and we are creating subsites, and when I create the subsites (using subfolders) it does send the amdins the email but when they click the link, it wont let them log in. HELP!

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

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    What error do they get?

    Thread Starter Rebecca

    (@clrvirtualconnection)

    It is a 404 error. I noticed too that the Dir folder is not creating the sub folders it should be creating.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Bumps deleted. If you’re in a huge rush, you should hire someone. Otherwise you have to be patient with the free help you get from volunteerrs.

    WordPress doesn’t make actual subfolders, they’re virtual, just like your posts aren’t actual files in /2012/postname 🙂

    A 404 means that your .htaccess is probably wrong. What’s in it?

    Thread Starter Rebecca

    (@clrvirtualconnection)

    I apologize. Here is my htaccess file:

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    That’s the .htaccess for Subdomains.

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [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).*) $1 [L]
    RewriteRule  ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    # END WordPress
    Thread Starter Rebecca

    (@clrvirtualconnection)

    So I put that one in its place?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Yes.

    Thread Starter Rebecca

    (@clrvirtualconnection)

    Still didnt work. 🙁

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Same error?

    Thread Starter Rebecca

    (@clrvirtualconnection)

    Yes…I don’t get it. The other sites work fine.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘subsites admins cant log in’ is closed to new replies.