summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xetc/global_config.php.sample13
1 files changed, 13 insertions, 0 deletions
diff --git a/etc/global_config.php.sample b/etc/global_config.php.sample
index 54d9841d..71c9eeb1 100755
--- a/etc/global_config.php.sample
+++ b/etc/global_config.php.sample
@@ -26,4 +26,17 @@ $wgAuthenticationTokenVersion = "1";
$wgUpgradeKey = "";
$wgPageFormsGoogleMapsKey = "";
+
+####### DEBUG
+if( strpos( $REEVO_URL, 'test' ) !== false) {
+ $wgShowExceptionDetails = true;
+ $wgDebugComments = true;
+ $wgDebugLogFile = "../../log/wiki/mediawiki.log";
+ $wgShowSQLErrors = true;
+ $wgDebugDumpSql = true;
+ $wgShowExceptionDetails= true;
+ $wgShowDBErrorBacktrace = true;
+}
+
+
?>