MediaWiki REL1_35
DevelopmentSettings.php
Go to the documentation of this file.
1<?php
20// Enable showing of errors
21error_reporting( -1 );
22ini_set( 'display_errors', 1 );
23
31
32// Use of wfWarn() should cause tests to fail
34
35// Enable showing of errors
37$wgShowHostnames = true;
38$wgDebugRawPage = true; // T49960
39
40// Enable log files
41$logDir = getenv( 'MW_LOG_DIR' );
42if ( $logDir ) {
43 if ( $wgCommandLineMode ) {
44 $wgDebugLogFile = "$logDir/mw-debug-cli.log";
45 } else {
46 $wgDebugLogFile = "$logDir/mw-debug-www.log";
47 }
48 $wgDBerrorLog = "$logDir/mw-dberror.log";
49 $wgDebugLogGroups['ratelimit'] = "$logDir/mw-ratelimit.log";
50 $wgDebugLogGroups['error'] = "$logDir/mw-error.log";
51 $wgDebugLogGroups['exception'] = "$logDir/mw-error.log";
52}
53unset( $logDir );
54
60
61// Disable rate-limiting to allow integration tests to run unthrottled
62// in CI and for devs locally (T225796)
63$wgRateLimits = [];
64
65// Enable Special:JavaScriptTest and allow `npm run qunit` to work
66// https://www.mediawiki.org/wiki/Manual:JavaScript_unit_testing
68
69// Enable development/experimental endpoints
70$wgRestAPIAdditionalRouteFiles = [ 'includes/Rest/coreDevelopmentRoutes.json' ];
71
78
79// Enable MariaDB/MySQL strict mode (T108255)
80$wgSQLMode = 'TRADITIONAL';
81
82// Disable legacy javascript globals in CI and for devs (T72470)
84
85// Localisation Cache to StaticArray (T218207)
86$wgLocalisationCacheConf['store'] = 'array';
87
88// Experimental Book Referencing feature (T236255)
91
92// The default value is false, but for development it is useful to set this to the system temp
93// directory by default (T218207)
94$wgCacheDirectory = TempFSFile::getUsableTempDirectory() .
95 DIRECTORY_SEPARATOR .
96 rawurlencode( WikiMap::getCurrentWikiId() );
global $wgSQLMode
Experimental changes that may later become the default.
$wgEnableJavaScriptTest
global $wgDebugLogGroups
global $wgShowHostnames
global $wgDebugLogFile
global $wgCommandLineMode
$wgRestAPIAdditionalRouteFiles
global $wgLegacyJavaScriptGlobals
global $wgDBerrorLog
global $wgCiteBookReferencing
global $wgLocalisationCacheConf
global $wgShowExceptionDetails
global $wgDebugRawPage
global $wgDevelopmentWarnings
Debugging for MediaWiki.
global $wgRateLimits
Make testing possible (or easier)