Hi guys, I have installed domain mapping plugin in my network some time ago. Sometimes happens that mysql database stop to work, wordpress said that there is no connection available to the db, and to fix the problem I have to restart mysql.
Watching my apache log I found multiple times this error:
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.
Here my .htaccess file:
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)$ $1 [L]
RewriteRule . index.php
For example this error is showed when a client try to load
/wp-content/plugins/wysija-newsletters/readme.txt
path.
I don’t have any plugin “wysija-newsletters” so I think that wordpress shoud return a error without a internal error server.
Do you have some tips for me?
Thanks so much for your support.
Davide