• I have a multisite running WP 4.6.1 on PHP 7 via php-fpm and Apache. I have the latest version of quintus available on the multisite. On sites that are using the quintus theme, I’m getting an error in my apache log every time someone navigates to the site.

    [core:error] [pid 86363] [client x.y.26.63:46166] 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://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3752): [client x.y.26.63:46166] AH00121: r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/
    [core:debug] [pid 86363] core.c(3759): [client x.y.26.63:46166] AH00122: redirected from r->uri = /site1_test/wp-content/plugins/var/www/sites_htdocs/wp/wp-content/themes/quintus/quintus.css, referer: https://sites.example.com/site1_test/

    This is only on sites using the quintus theme, so it seems to be an issue with the theme itself. Could anyone advise? Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @srg-1,

    From the face of it, I believe this is an issue with your multisite setup rather than an issue with the Quintus theme.

    I dug up the following documentation, the offers some lines of code for you to add to your wp-config.php file:

    https://tommcfarlin.com/resolving-the-wordpress-multisite-redirect-loop/

    Could you give the above a try?

    If the above doesn’t help then you’ll like need to edit the .htaccess file. I found the following related resources that may help:

    Hope those resources help out! Let me know how you get on.

    • This reply was modified 8 years, 3 months ago by Siobhan.
    Thread Starter Steve

    (@srg-1)

    Hi @siobhyb,

    I looked at your first link (tommcfarlin.com), and it seemed to be specific to domain-based multisite. We are using a folder-based multisite. Logging in on the sites work fine, the errors appear when a user is browsing to the site.

    I believe it is specific to Quintus because it only happens on sites using the Quintus theme. I tested this by creating a new site and using the Twenty Twelve theme. No errors in the php or apache logs. Then I switched to the Quintus theme and the errors started appearing. I switched back and the errors were gone. I did not modify the content on the site during the test and I was browsing in an Incognito window without being logged in.

    My current .htaccess contains the following, which is exactly as the Network Admin Dashboard -> Network Setup page tells me to have:

    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).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    Thanks!

    Hi @srg-1,

    Apologies for the delay in my reply here! I’ve been away and am in catch up mode.

    I attempted to replicate the error on my own multisite setup of Quintus but haven’t been able to replicate the error you’re seeing.

    Could you possibly share a link to your site and double check that the theme as well as all plugins are up-to-date?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Redirect Loop with Quintus Theme’ is closed to new replies.