error reporting test

This commit is contained in:
Clemens Schwaighofer
2018-03-14 15:36:42 +09:00
parent 87b9af9786
commit 5226fbcfc3

18
www/admin/error_test.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
$DEBUG_ALL_OVERRIDE = 0; // set to 1 to debug on live/remote server locations
$DEBUG_ALL = 1;
$PRINT_ALL = 1;
$DB_DEBUG = 1;
if ($DEBUG_ALL)
error_reporting(E_ALL);
// sample config
require("config.inc");
require(LIBS."Error.Handling.inc");
if ($var) {
echo "OUT<br>";
}
?>