summaryrefslogtreecommitdiff
path: root/error.php
blob: 0433593d595bf7847af97a292876370e5f575332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
// $Id$

include_once "includes/common.inc";

$errors = array(
  500 => "500 error: internal server error",
  404 => "404 error: '". $_SERVER["REDIRECT_URL"] ."' not found",
  403 => "403 error: access denied - forbidden",
  401 => "401 error: authorization required",
  400 => "400 error: bad request"
);

if ($errors[$_SERVER["REDIRECT_STATUS"]]) {
  watchdog("httpd", $errors[$_SERVER["REDIRECT_STATUS"]]);
  header("HTTP/1.0 ". $errors[$_SERVER["REDIRECT_STATUS"]]);
}

include_once("$base_url/index.php");
?>