ERR_TOO_MANY_REDIRECTS (nur) unter /wp-admin/network/
-
Hi!
We have a WordPress Multisite running at betterplace.org and get this error, when we open https://www.betterplace.org/c/wp-admin/network/ :
Fehler 310 (net::ERR_TOO_MANY_REDIRECTS): Zu viele Umleitungen.
The Setup:
– betterplace.org is running rails application servers
– There is a rewrite-rule on server-level that maps everything that goes to /c/ to be pulled from/redirected to the PHP-Server in the Cluster
– WordPress MU installed on this php-server in the sub-folder /c/
– phpinfo() tells us
–– Hostname:Port static.betterplace.org:0
–– HTTP_HOST static.betterplace.org
This is the URL that the server use internally to talk to each others so we cannot change this.That part is working:
– https://www.betterplace.org/c/help runs like it is supposed to
– https://www.betterplace.org/c/help/wp-admin as well
– https://www.betterplace.org/c/wp-admin/ as wellBUT that part is not working:
– All links that go to /wp-admin/network/ result in the given error-message
– When I open https://www.betterplace.org/c/hilfe/wp-admin/edit.php the paginations shows link that go like this https://static.betterplace.org/c/hilf…it.php?paged=2 –?So for some reasons wordpress (core) uses another URL hereOur wp-config.php (In parts):
define('MULTISITE', true); define('SUBDOMAIN_INSTALL', false); $base = '/c/'; define('DOMAIN_CURRENT_SITE', 'www.betterplace.org'); define('PATH_CURRENT_SITE', '/c/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);
Our .htaccess:
RewriteEngine On RewriteBase /c/ 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]
What we made sure of:
We checked the complete database if there are some “wrong” URLs somewhere.
It is all clean … except for the *_blogs table.
Inside the *_blogs there are three blogs wich have a domain name with “”static.betterplace.org”
So that is the URL that the servers use to recognize eachothers (see introduction).
Once I change this in www.*, the site goes down! (It redirects to https://www.betterplace.org).So there are 2 questions:
–?Why can we access all pages in our backend except for the everything in the “network”-“folder”?
–?Why is there a wrong URL in the pagination?Thanks for your help
Tobias
- The topic ‘ERR_TOO_MANY_REDIRECTS (nur) unter /wp-admin/network/’ is closed to new replies.