From: Brion Vibber Date: Tue, 25 Nov 2003 06:04:38 +0000 (+0000) Subject: Disable debug log by default; the previous default was insecure X-Git-Tag: 1.1.0~87 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=08f24b00cb7dd2646ca410c7bb1f150253a85aad;p=lhc%2Fweb%2Fwiklou.git Disable debug log by default; the previous default was insecure --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 037a513119..14dc1d5315 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -75,7 +75,11 @@ $wgSiteSupportPage = ""; # Miscellaneous configuration settings # $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR"; -$wgDebugLogFile = "{$wgUploadDirectory}/log_dlJbnMZb"; + +# The debug log file should be not be publically accessible if it is +# used, as it may contain private data. +$wgDebugLogFile = ""; + $wgDebugComments = false; $wgReadOnly = false; $wgSqlLogFile = "{$wgUploadDirectory}/sqllog_mFhyRe6";