Quote:
Originally Posted by Slapyo
hmmm, can someone help me out here? here is my .htaccess and my error.php file. error.php is in the root directory along with the .htaccess file. however if you goto some random page the only thing i get to load up is a blank page. nothing is inserted. even if i goto just error.php it is still blank. but according to the code it should atleast give the very last error on the list. it also never actually goes to error.php ... if you want to goto asfdasdf.php that is still in the URL bar ... shouldn't it redirect to the error.php file?
|
no. The URL will stay the same.
Quote:
Originally Posted by Slapyo
.htaccess:
Code:
ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 401 /error.php
ErrorDocument 500 /error.php
ErrorDocument 503 /error.php
|
That looks fine
Quote:
Originally Posted by Slapyo
error.php:
PHP Code:
<?php
if(isset($_SERVER['REDIRECT_STATUS'])) {
if ($_SERVER['REDIRECT_STATUS']=="404") {
$error['title'] = "404 File Not Found";
$error['description'] = "The web server cannot find the file you asked for. Check the URL to ensure that the path is correct.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us if you believe that the mistake is on our part.";
} elseif ($_SERVER['REDIRECT_STATUS']=="403") {
$error['title'] = "403 Forbidden";
$error['description'] = "You don't have permission to access this document on this server.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us if you think that there is a mistake.";
} elseif ($_SERVER['REDIRECT_STATUS']=="401") {
$error['title'] = "401 Unauthorized";
$error['description'] = "The URL you are requesting requires proper authentication.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us if you think that there is a mistake.";
} elseif ($_SERVER['REDIRECT_STATUS']=="500") {
$error['title'] = "500 Internal Server Error";
$error['description'] = "We encountered an unexpected condition.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us to report this problem.";
} elseif ($_SERVER['REDIRECT_STATUS']=="503") {
$error['title'] = "503 Service Unavailable";
$error['description'] = "We are currently unable to handle your request due to a temporary overloading or maintenance of the server.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us if this problem persists.";
} else {
$error['title'] = "Unknown Error: " . $_SERVER['REDIRECT_STATUS'];
$error['description'] = "We are currently unable to handle this error.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us if this problem persists.";
}
} else {
$error['title'] = "Unknown Error";
$error['description'] = "We are currently unable to handle this error.";
$error['contact'] = "Please <a href=\"http://www.veteransresources.org/forums/sendmessage.php\">contact</a> us if this problem persists.";
}
require_once("header.inc.php");
?>
<p><b><?=$error['title']?></b>
<br /><?=$error['description']?>
<br /><?=$error['contact']?></p>
<?
require_once("footer.inc.php");
?>
|
Well, I can't see what header.inc.php or footer.inc.php include. So I can't really troubleshoot. Did you try just using the originally supplied code?