14

My error.log file for my site says

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: http://URL/TO/REFERER

My question is, what is LogLevel? I've googled it but it seems like I'm just getting things about java. Our site is in PHP.

Update

I added LogLevel debug to the apache2.conf and restarted apache but am getting nothing different in the error logs.

Ben
  • 60,438
  • 111
  • 314
  • 488

1 Answers1

5

On debian, edit /etc/apache2/apache2.conf and add :

RewriteLogLevel 3
RewriteLog "/var/log/apache2/rewrite.log"

then reload apache :

/etc/init.d/apache2 reload

Access your http webpage from a browser, if the bug is still there, you will see some info about your error in the file :

/var/log/apache2/rewrite.log
Laurent Debricon
  • 4,307
  • 2
  • 24
  • 26