Quote:
Originally Posted by WiredGuy
What does a denied page look like? Does it have the same file size each time its requested or does it contain some dynamic information? If its static, the file size should be the same each time, not quite what the log is showing.
WG
|
If the IP restrictions have been set up in the admin, then the response page is always the same - members.php (if the user is logged in with a valid password). This means that the server response should not be 200, but 302 - a redirect (moved temporarily), followed by a a 200 response for /members.php
Here is an excerpt from a test I just ran on my IP where I had not included my IP in the admin IP restrictions section:
Code:
xx.xx.xx.xx - - [26/Dec/2007:23:42:29 -0800] "GET /admin_reports.php?report=surfer_stats&member=1776465 HTTP/1.1" 302 5 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-GB; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11"
xx.xx.xx.xx - - [26/Dec/2007:23:42:30 -0800] "GET /members.php HTTP/1.1" 200 32191 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-GB; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11"
So, maybe this program didn't have IP restrictions in place....