From 1e8ca84deec9e335c1701e7cc2fa43231ebd24f3 Mon Sep 17 00:00:00 2001 From: jeroen Date: Sun, 21 Aug 2022 12:27:20 +0200 Subject: [PATCH] Add the debug toggle in config.inc.php.sample --- config.inc.php.sample | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config.inc.php.sample b/config.inc.php.sample index c9c8397..3adf8c9 100644 --- a/config.inc.php.sample +++ b/config.inc.php.sample @@ -12,6 +12,11 @@ if (preg_match("/config.inc.php/", $_SERVER['SCRIPT_NAME'])) { exit; } + +// Debug mode +// Enables PHP error output +$CONF['debug'] = 'false'; + // Language config // Language files are located in './languages'. $CONF['default_language'] = 'en';