• I am trying to install WP Multisite on my blog https://www.gameplayinside.com. The aim is to create a working subdirectory install of /civilization/

    I was able to get Multisite working, however the additional website I added is not working properly.

    On my test server I have followed official tutorial and enabled WP multisite:

    Step1: Disable all plugins

    Then update config:

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

    I also updated htaccess

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [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)$ wp/$1 [L]
    RewriteRule . index.php [L]
    
    # END WordPress

    After that I was able to add another website as ‘superadmin’. So I added ‘civilization’. Meaning I now have 2 entries:

    https://www.gameplayinside.com
    https://www.gameplayinside.com/civilization

    The primary website is functioning like it should. However the new website is not:

    ERR_TOO_MANY_REDIRECTS on WP-Admin
    500 Internal Server Error on new post

    [Wed Sep 21 23:17:19.064445 2016] [core:error] [pid 1933:tid 140019429566208] [client x:50579] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.gameplayinside.com/wp-admin/network/themes.php
    [Wed Sep 21 23:17:19.064518 2016] [core:error] [pid 1933:tid 140019429566208] [client x:50579] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.gameplayinside.com/wp-admin/network/themes.php
    [Wed Sep 21 23:18:49.322262 2016] [core:error] [pid 1937:tid 140019440056064] [client x:50630] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.gameplayinside.com/
    [Wed Sep 21 23:18:49.322405 2016] [core:error] [pid 1937:tid 140019440056064] [client x:50630] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.gameplayinside.com/
    [Wed Sep 21 23:27:04.308406 2016] [core:error] [pid 1937:tid 140019744261888] [client x:50797] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.gameplayinside.com/civilization/
    [Wed Sep 21 23:27:04.308472 2016] [core:error] [pid 1937:tid 140019744261888] [client x:50797] AH00124: Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: https://www.gameplayinside.com/civilization/
    

    What I already tried:
    Adding

    /* https://tommcfarlin.com/resolving-the-wordpress-multisite-redirect-loop/ */
    define('ADMIN_COOKIE_PATH', '/');
    define('COOKIEPATH', '');
    define('SITECOOKIEPATH', '');

    And installing the twentysixteen on the network because the new page displayed a message that it was unable to find the theme folder. This did resolve that message but it did not fix wp-admin.

    • This topic was modified 8 years, 6 months ago by Magistar.
Viewing 1 replies (of 1 total)
  • Moderator Bet Hannon

    (@bethannon1)

    did you put the Tom McFarlin code RIGHT ABOVE
    /* That's all, stop editing! Happy blogging. */ ?

    Have you tried clearing your browser cache?

    Are you sure mod_rewrite is working on the server?

    Is the main site set to use pretty permalinks?

    While you said you followed the wp.org documentation for creating the Network, you might find some clues about server requirements that are creating issues here: https://codex.www.ads-software.com/Before_You_Create_A_Network

Viewing 1 replies (of 1 total)
  • The topic ‘Too many redirects on wp-admin’ is closed to new replies.