Quote:
03-05-03 at 08:52 PM 006 said this in Post #37
I tried this and it still brings up the Sorry the administrator has banned your IP address... I was looking around in the files for the place that actually calls the template error_banip but I couldn't find it. Would there be anything I could do there to have IP banned users also get the 404 ban?
|
Open /admin/functions.php, find:
PHP Code:
eval("standarderror(\"".gettemplate("error_banip")."\");");
Replace with:
Code:
header("HTTP/1.0 404 Not Found");
header("Status: 404 Not Found");
exit;