Gazelle/sections/error/index.php

66 lines
1.9 KiB
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
function notify ($Channel, $Message) {
global $LoggedUser;
2012-08-23 08:00:17 +00:00
send_irc("PRIVMSG ".$Channel." :".$Message." error by ".(!empty($LoggedUser['ID']) ? "https://".SSL_SITE_URL."/user.php?id=".$LoggedUser['ID'] ." (".$LoggedUser['Username'].")" : $_SERVER['REMOTE_ADDR']." (".geoip($_SERVER['REMOTE_ADDR']).")")." accessing https://".SSL_SITE_URL."".$_SERVER['REQUEST_URI'].(!empty($_SERVER['HTTP_REFERER'])? " from ".$_SERVER['HTTP_REFERER'] : ''));
2011-03-28 14:21:28 +00:00
}
$Errors = array('403','404','413','504');
if(!empty($_GET['e']) && in_array($_GET['e'],$Errors)) {
//Webserver error i.e. http://sitename/madeupdocument.php
include($_GET['e'].'.php');
} else {
//Gazelle error (Come from the error() function)
switch ($Error) {
case '403':
$Title = "Error 403";
$Description = "You just tried to go to a page that you don't have enough permission to view.";
notify(STATUS_CHAN,'403');
break;
case '404':
$Title = "Error 404";
2012-08-16 08:00:18 +00:00
$Description = "You just tried to go to a page that doesn't really exist.";
2011-03-28 14:21:28 +00:00
break;
case '0':
$Title = "Invalid Input";
$Description = "Something was wrong with the input provided with your request and the server is refusing to fulfill it.";
notify(STATUS_CHAN,'PHP-0');
break;
case '-1':
$Title = "Invalid request";
$Description = "Something was wrong with your request and the server is refusing to fulfill it.";
break;
default:
if(!empty($Error)) {
$Title = 'Error';
$Description = $Error;
} else {
$Title = "Unexpected Error";
$Description = "You have encountered an unexpected error.";
}
}
2012-08-16 08:00:18 +00:00
if($Log) {
$Description .= ' <a href="log.php?search='.$Log.'">Search Log</a>';
}
2012-08-24 08:00:15 +00:00
if(empty($Ajax) && $Error != -1) {
2011-03-28 14:21:28 +00:00
show_header($Title);
?>
<div class="thin">
2012-08-19 08:00:19 +00:00
<div class="header">
<h2><?=$Title?></h2>
</div>
2011-03-28 14:21:28 +00:00
<div class="box pad">
<p><?=$Description?></p>
</div>
</div>
<?
show_footer();
} else {
echo $Description;
}
}