aboutsummaryrefslogtreecommitdiffstats
path: root/include/config_default.inc.php
diff options
context:
space:
mode:
authorgrum <grum@piwigo.org>2008-11-10 10:15:04 +0000
committergrum <grum@piwigo.org>2008-11-10 10:15:04 +0000
commit7b0669167ff9e0da5a32a6aabdfe9d143201a20e (patch)
treeac5db3a1dfaf934ed7725906ae0df75dec8dac35 /include/config_default.inc.php
parent2a804c8b21820470fa334a9782878768a1095345 (diff)
Add a new config value 'show_php_error' to allow debugging of RC to be easier.
See topic #99192 on the forum. git-svn-id: http://piwigo.org/svn/trunk@2859 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/config_default.inc.php')
-rw-r--r--include/config_default.inc.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php
index 394e6d117..cacade935 100644
--- a/include/config_default.inc.php
+++ b/include/config_default.inc.php
@@ -441,6 +441,11 @@ $conf['compiled_template_cache_language'] = false;
// better performance.
$conf['template_compile_check'] = true;
+// this permit to show the php errors reporting (see INI 'error_reporting'
+// for possible values)
+// gives an empty value '' to deactivate
+$conf['show_php_errors'] = E_ALL;
+
// +-----------------------------------------------------------------------+
// | authentication |
// +-----------------------------------------------------------------------+