Error Handler Progress

This commit is contained in:
JonatanRek 2020-04-25 10:20:47 +02:00
parent 79016fed87
commit abff057943
2 changed files with 2 additions and 12 deletions

View File

@ -32,6 +32,7 @@ class Autoloader {
spl_autoload_register("Autoloader::ClassLoader");
Autoloader::setRoot('/var/www/dev.steelants.cz/vasek/home-update/');
set_exception_handler("ErrorHandler::exception");
//Debug
error_reporting(E_ALL);

View File

@ -3,19 +3,8 @@ class ErrorHandler {
static function exception($exception){
error_log($exception);
header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
echo '<html>
<head>
<title>Error!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
</head>
<body>
<h1>Oops!</h1>
<p>Something went wrong!</p>
</body>
</html>';
echo '<h1>Oops!</h1><p>Something went wrong!</p>';
exit;
}
}
set_exception_handler('ErrorHandler::exception');