From 5b4f686444e06652769e82ba4c943efb1bd70dff Mon Sep 17 00:00:00 2001 From: patrick Date: Sun, 16 Feb 2025 05:55:51 +0000 Subject: [PATCH] Add debugging support --- common.inc.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common.inc.php b/common.inc.php index 3b07d5b5..0a309b8d 100644 --- a/common.inc.php +++ b/common.inc.php @@ -31,7 +31,6 @@ include_once ('helper.inc.php'); // so we will set it in the code instead just to make sure error_reporting(E_ALL); ini_set('log_errors', 'On'); -//ini_set('display_errors', 'Off'); // error_reporting( E_ALL ^ E_WARNING ); //error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED); @@ -85,6 +84,11 @@ if (file_exists($prependdir . 'data/config.inc.php')) { exit; } +if (get_value_or_default(isset($DEBUG), false)) + ini_set('display_errors', 'On'); +else + ini_set('display_errors', 'Off'); + $dsn = "mysql:host=db;dbname=$DBNAME;charset=utf8mb4"; $pdo = new PDO($dsn, $DBUSER, $DBPASS);