MediaWiki REL1_28
DefaultSettings.php
Go to the documentation of this file.
1<?php
50if ( !defined( 'MEDIAWIKI' ) ) {
51 echo "This file is part of MediaWiki and is not a valid entry point\n";
52 die( 1 );
53}
54
63
71 'main' => 'GlobalVarConfig::newInstance'
72];
73
78$wgVersion = '1.28.3';
79
83$wgSitename = 'MediaWiki';
84
92
109$wgServer = WebRequest::detectServer();
110
119
126
127/************************************************************************/
142
160$wgUsePathInfo = ( strpos( PHP_SAPI, 'cgi' ) === false ) &&
161 ( strpos( PHP_SAPI, 'apache2filter' ) === false ) &&
162 ( strpos( PHP_SAPI, 'isapi' ) === false );
163
176
179/************************************************************************/
202$wgScript = false;
203
211
219
226
233
239$wgExtensionDirectory = "{$IP}/extensions";
240
246$wgStyleDirectory = "{$IP}/skins";
247
256
262
267
273
278$wgLogo = false;
279
295$wgLogoHD = false;
296
301$wgFavicon = '/favicon.ico';
302
309
319
335
342
351
367
370/************************************************************************/
379
383$wgUploadStashMaxAge = 6 * 3600; // 6 hours
384
389
399
408
414
419
435
519
524
531
542
553 // Fields to make available in the dialog. `true` means that this field is visible, `false` means
554 // that it is hidden. The "Name" field can't be hidden. Note that you also have to add the
555 // matching replacement to the 'filepage' format key below to make use of these.
556 'fields' => [
557 'description' => true,
558 'date' => false,
559 'categories' => false,
560 ],
561 // Suffix of localisation messages used to describe the license under which the uploaded file will
562 // be released. The same value may be set for both 'local' and 'foreign' uploads.
563 'licensemessages' => [
564 // The 'local' messages are used for local uploads on this wiki:
565 // * upload-form-label-own-work-message-generic-local
566 // * upload-form-label-not-own-work-message-generic-local
567 // * upload-form-label-not-own-work-local-generic-local
568 'local' => 'generic-local',
569 // The 'foreign' messages are used for cross-wiki uploads from other wikis to this wiki:
570 // * upload-form-label-own-work-message-generic-foreign
571 // * upload-form-label-not-own-work-message-generic-foreign
572 // * upload-form-label-not-own-work-local-generic-foreign
573 'foreign' => 'generic-foreign',
574 ],
575 // Upload comments to use for 'local' and 'foreign' uploads. This can also be set to a single
576 // string value, in which case it is used for both kinds of uploads. Available replacements:
577 // * $HOST - domain name from which a cross-wiki upload originates
578 // * $PAGENAME - wiki page name from which an upload originates
579 'comment' => [
580 'local' => '',
581 'foreign' => '',
582 ],
583 // Format of the file page wikitext to be generated from the fields input by the user.
584 'format' => [
585 // Wrapper for the whole page. Available replacements:
586 // * $DESCRIPTION - file description, as input by the user (only if the 'description' field is
587 // enabled), wrapped as defined below in the 'description' key
588 // * $DATE - file creation date, as input by the user (only if the 'date' field is enabled)
589 // * $SOURCE - as defined below in the 'ownwork' key, may be extended in the future
590 // * $AUTHOR - linked user name, may be extended in the future
591 // * $LICENSE - as defined below in the 'license' key, may be extended in the future
592 // * $CATEGORIES - file categories wikitext, as input by the user (only if the 'categories'
593 // field is enabled), or if no input, as defined below in the 'uncategorized' key
594 'filepage' => '$DESCRIPTION',
595 // Wrapped for file description. Available replacements:
596 // * $LANGUAGE - source wiki's content language
597 // * $TEXT - input by the user
598 'description' => '$TEXT',
599 'ownwork' => '',
600 'license' => '',
601 'uncategorized' => '',
602 ],
603];
604
642
658
670$wgShowEXIF = function_exists( 'exif_read_data' );
671
678
693
698
703
708
714
719
725
732
739
746
752
762
779$wgMaxUploadSize = 1024 * 1024 * 100; # 100MB
780
788
800
807
820
825
840
847
856$wgRepositoryBaseUrl = "https://commons.wikimedia.org/wiki/File:";
857
866$wgFileExtensions = [ 'png', 'gif', 'jpg', 'jpeg', 'webp' ];
867
874 # HTML may contain cookie-stealing JavaScript and web bugs
875 'html', 'htm', 'js', 'jsb', 'mhtml', 'mht', 'xhtml', 'xht',
876 # PHP scripts may execute arbitrary code on the server
877 'php', 'phtml', 'php3', 'php4', 'php5', 'phps',
878 # Other types that may be interpreted by some servers
879 'shtml', 'jhtml', 'pl', 'py', 'cgi',
880 # May contain harmful executables for Windows victims
881 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' ];
882
888 # HTML may contain cookie-stealing JavaScript and web bugs
889 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
890 # PHP scripts may execute arbitrary code on the server
891 'application/x-php', 'text/x-php',
892 # Other types that may be interpreted by some servers
893 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh',
894 # Client-side hazards on Internet Explorer
895 'text/scriptlet', 'application/x-msdownload',
896 # Windows metafile, client-side vulnerability on some systems
897 'application/x-msmetafile',
898];
899
906
913
921
929
934
946 MEDIATYPE_BITMAP, // all bitmap formats
947 MEDIATYPE_AUDIO, // all audio formats
948 MEDIATYPE_VIDEO, // all plain video formats
949 "image/svg+xml", // svg (only needed if inline rendering of svg is not supported)
950 "application/pdf", // PDF files
951 # "application/x-shockwave-flash", //flash/shockwave movie
952];
953
962
971 // the usual case
972 CONTENT_MODEL_WIKITEXT => 'WikitextContentHandler',
973 // dumb version, no syntax highlighting
974 CONTENT_MODEL_JAVASCRIPT => 'JavaScriptContentHandler',
975 // simple implementation, for use by extensions, etc.
976 CONTENT_MODEL_JSON => 'JsonContentHandler',
977 // dumb version, no syntax highlighting
978 CONTENT_MODEL_CSS => 'CssContentHandler',
979 // plain text, for use by extensions, etc.
980 CONTENT_MODEL_TEXT => 'TextContentHandler',
981];
982
989
999
1003$wgImageMagickConvertCommand = '/usr/bin/convert';
1004
1010
1015
1020
1026
1040
1046$wgJpegTran = '/usr/bin/jpegtran';
1047
1068
1073$wgExiv2Command = '/usr/bin/exiv2';
1074
1080$wgExiftool = '/usr/bin/exiftool';
1081
1092 'ImageMagick' =>
1093 '$path/convert -background "#ffffff00" -thumbnail $widthx$height\! $input PNG:$output',
1094 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1095 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1096 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d '
1097 . '$output $input',
1098 'rsvg' => '$path/rsvg-convert -w $width -h $height -o $output $input',
1099 'imgserv' => '$path/imgserv-wrapper -i svg -o png -w$width $input $output',
1100 'ImagickExt' => [ 'SvgHandler::rasterizeImagickExt' ],
1101];
1102
1106$wgSVGConverter = 'ImageMagick';
1107
1112
1117
1123
1136
1151
1159
1174
1181$wgThumbnailEpoch = '20030516000000';
1182
1190
1203
1212
1217
1224
1231
1267
1268 # setup for clamav
1269 'clamav' => [
1270 'command' => 'clamscan --no-summary ',
1271 'codemap' => [
1272 "0" => AV_NO_VIRUS, # no virus
1273 "1" => AV_VIRUS_FOUND, # virus found
1274 "52" => AV_SCAN_ABORTED, # unsupported file format (probably immune)
1275 "*" => AV_SCAN_FAILED, # else scan failed
1276 ],
1277 'messagepattern' => '/.*?:(.*)/sim',
1278 ],
1279];
1280
1285
1290
1296$wgMimeTypeFile = 'includes/mime.types';
1297
1302$wgMimeInfoFile = 'includes/mime.info';
1303
1316
1323
1329 'http://www.w3.org/2000/svg:svg' => 'image/svg+xml',
1330 'svg' => 'image/svg+xml',
1331 'http://www.lysator.liu.se/~alla/dia/:diagram' => 'application/x-dia-diagram',
1332 'http://www.w3.org/1999/xhtml:html' => 'text/html', // application/xhtml+xml?
1333 'html' => 'text/html', // application/xhtml+xml?
1334];
1335
1345 [ 320, 240 ],
1346 [ 640, 480 ],
1347 [ 800, 600 ],
1348 [ 1024, 768 ],
1349 [ 1280, 1024 ]
1350];
1351
1358 120,
1359 150,
1360 180,
1361 200,
1362 250,
1363 300
1364];
1365
1376
1393
1405
1418
1425
1433
1441
1446 'imagesPerRow' => 0, // Default number of images per-row in the gallery. 0 -> Adapt to screensize
1447 'imageWidth' => 120, // Width of the cells containing images in galleries (in "px")
1448 'imageHeight' => 120, // Height of the cells containing images in galleries (in "px")
1449 'captionLength' => true, // Deprecated @since 1.28
1450 // Length to truncate filename to in caption when using "showfilename".
1451 // A value of 'true' will truncate the filename to one line using CSS
1452 // and will be the behaviour after deprecation.
1453 'showBytes' => true, // Show the filesize in bytes in categories
1454 'mode' => 'traditional',
1455];
1456
1463
1468
1480
1492
1499
1506
1522
1529
1534
# end of DJvu }
1536
# end of file uploads }
1538
1539/************************************************************************/
1550
1559
1565$wgPasswordSenderName = 'MediaWiki Mail';
1566
1573
1580
1586
1596
1602
1606$wgNewPasswordExpiry = 3600 * 24 * 7;
1607
1612
1618
1623$wgPasswordExpireGrace = 3600 * 24 * 7; // 7 days
1624
1642$wgSMTP = false;
1643
1648
1654
1660
1661// TODO move UPO to preferences probably ?
1662# If set to true, users get a corresponding option in their preferences and can choose to
1663# enable or disable at their discretion
1664# If set to false, the corresponding input form on the user preference page is suppressed
1665# It call this to be a "user-preferences-option (UPO)"
1666
1673
1678
1687
1693
1708
1717
1723
1728
1734
# end of email settings
1736
1737/************************************************************************/
1745$wgDBserver = 'localhost';
1746
1751
1755$wgDBname = 'my_wiki';
1756
1760$wgDBuser = 'wikiuser';
1761
1766
1770$wgDBtype = 'mysql';
1771
1780$wgDBssl = false;
1781
1791
1796
1801
1809
1818
1823
1827$wgDBTableOptions = 'ENGINE=InnoDB';
1828
1836
1841
1846
1873
1878
1882$wgSharedTables = [ 'user', 'user_properties' ];
1883
1889
1945
1956$wgLBFactoryConf = [ 'class' => 'LBFactorySimple' ];
1957
1965
1970
1990
2008
2037
2044
2051
2056
2061
# End of DB settings }
2063
2064/************************************************************************/
2076
2089
2105
2121
2129
# end text storage }
2131
2132/************************************************************************/
2141
2146
2151
2156
2161
2166
2171
2177
2185
# end performance hacks }
2187
2188/************************************************************************/
2202
2221
2229
2237
2244
2254
2269 CACHE_NONE => [ 'class' => 'EmptyBagOStuff', 'reportDupes' => false ],
2270 CACHE_DB => [ 'class' => 'SqlBagOStuff', 'loggroup' => 'SQLBagOStuff' ],
2271
2272 CACHE_ANYTHING => [ 'factory' => 'ObjectCache::newAnything' ],
2273 CACHE_ACCEL => [ 'factory' => 'ObjectCache::getLocalServerInstance' ],
2274 CACHE_MEMCACHED => [ 'class' => 'MemcachedPhpBagOStuff', 'loggroup' => 'memcached' ],
2275
2276 'db-replicated' => [
2277 'class' => 'ReplicatedBagOStuff',
2278 'readFactory' => [
2279 'class' => 'SqlBagOStuff',
2280 'args' => [ [ 'slaveOnly' => true ] ]
2281 ],
2282 'writeFactory' => [
2283 'class' => 'SqlBagOStuff',
2284 'args' => [ [ 'slaveOnly' => false ] ]
2285 ],
2286 'loggroup' => 'SQLBagOStuff',
2287 'reportDupes' => false
2288 ],
2289
2290 'apc' => [ 'class' => 'APCBagOStuff', 'reportDupes' => false ],
2291 'apcu' => [ 'class' => 'APCUBagOStuff', 'reportDupes' => false ],
2292 'xcache' => [ 'class' => 'XCacheBagOStuff', 'reportDupes' => false ],
2293 'wincache' => [ 'class' => 'WinCacheBagOStuff', 'reportDupes' => false ],
2294 'memcached-php' => [ 'class' => 'MemcachedPhpBagOStuff', 'loggroup' => 'memcached' ],
2295 'memcached-pecl' => [ 'class' => 'MemcachedPeclBagOStuff', 'loggroup' => 'memcached' ],
2296 'hash' => [ 'class' => 'HashBagOStuff', 'reportDupes' => false ],
2297];
2298
2315
2332 CACHE_NONE => [
2333 'class' => 'WANObjectCache',
2334 'cacheId' => CACHE_NONE,
2335 'channels' => []
2336 ]
2337 /* Example of a simple single data-center cache:
2338 'memcached-php' => [
2339 'class' => 'WANObjectCache',
2340 'cacheId' => 'memcached-php',
2341 'channels' => [ 'purge' => 'wancache-main-memcached-purge' ]
2342 ]
2343 */
2344];
2345
2360$wgMainStash = 'db-replicated';
2361
2367
2374
2379
2384
2389
2407
2414
2419
2423$wgMemCachedServers = [ '127.0.0.1:11211' ];
2424
2430
2435
2448
2456
2480 'class' => 'LocalisationCache',
2481 'store' => 'detect',
2482 'storeClass' => false,
2483 'storeDirectory' => false,
2484 'manualRecache' => false,
2485];
2486
2491
2500$wgCacheEpoch = '20030516000000';
2501
2507
2516
2523
2531
2537
2543
2554
2559
2567
2575
2586
2603
# end of cache settings
2605
2606/************************************************************************/
2624
2629
2636
2646
2656
2665
2672
2688
2695
2702
2712
2720
2741
2794
2800
2805
# end of HTTP proxy settings
2807
2808/************************************************************************/
2829
2835
2846
2851
2856
2871
2876
2884 'als' => 'gsw',
2885 'bat-smg' => 'sgs',
2886 'be-x-old' => 'be-tarask',
2887 'bh' => 'bho',
2888 'fiu-vro' => 'vro',
2889 'no' => 'nb',
2890 'qqq' => 'qqq', # Used for message documentation.
2891 'qqx' => 'qqx', # Used for viewing message keys.
2892 'roa-rup' => 'rup',
2893 'simple' => 'en',
2894 'zh-classical' => 'lzh',
2895 'zh-min-nan' => 'nan',
2896 'zh-yue' => 'yue',
2897];
2898
2908
2919
2931
2943
2960 '/^Mozilla\/2\.[^ ]+ [^(]*?\‍((?!compatible).*; [UIN]/',
2961 '/^Mozilla\/3\.[^ ]+ [^(]*?\‍((?!compatible).*; [UIN]/',
2962 '/^Mozilla\/4\.[^ ]+ [^(]*?\‍((?!compatible).*; [UIN]/',
2963
2977 '/^Mozilla\/4\.0 \‍(compatible; MSIE \d+\.\d+; Mac_PowerPC\‍)/',
2978
2983 '/^Mozilla\/4\.0 \‍(compatible; MSIE 6.0; Windows NT 5.0; Google Wireless Transcoder;\‍)/'
2984];
2985
2999
3005
3011
3017
3022
3027
3032
3037
3042
3053
3072
3079
3100
3125
3136
# End of language/charset settings
3138
3139/*************************************************************************/
3147$wgMimeType = 'text/html';
3148
3157
3166
3175
3185
3194
3202
3211
3227
3236
3241
3247
3253
3259$wgFallbackSkin = 'fallback';
3260
3267
3272
3279
3286
3293
3298
3303
3309
3330
3342
3347
3358
3390 "copyright" => [
3391 "copyright" => [], // placeholder for the built in copyright icon
3392 ],
3393 "poweredby" => [
3394 "mediawiki" => [
3395 // Defaults to point at
3396 // "$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png"
3397 // plus srcset for 1.5x, 2x resolution variants.
3398 "src" => null,
3399 "url" => "//www.mediawiki.org/",
3400 "alt" => "Powered by MediaWiki",
3401 ]
3402 ],
3403];
3404
3412
3417
3430
3441
3449
3459
# End of output format settings }
3461
3462/*************************************************************************/
3485
3575
3587
3593
3611 'versioned' => [
3612 'server' => 30 * 24 * 60 * 60, // 30 days
3613 'client' => 30 * 24 * 60 * 60, // 30 days
3614 ],
3615 'unversioned' => [
3616 'server' => 5 * 60, // 5 minutes
3617 'client' => 5 * 60, // 5 minutes
3618 ],
3619];
3620
3627
3635
3644
3651
3678
3693
3702
3712
3743 'deviceWidthTablet' => '720px',
3744];
3745
3760 "$IP/resources/src/mediawiki.less/",
3761];
3762
3768
3776
3789
# End of ResourceLoader settings }
3791
3792/*************************************************************************/
3802
3811
3839
3847
3867
3895$wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+";
3896
3903
3913
3918
3943
3951
3956
# end of Interwiki caching settings.
3958
3967$wgSitesCacheFile = false;
3968
# end of SiteStore caching settings.
3970
3986$wgRedirectSources = false;
3987
3996
4012
4018 NS_TALK => true,
4019 NS_USER => true,
4020 NS_USER_TALK => true,
4021 NS_PROJECT => true,
4022 NS_PROJECT_TALK => true,
4023 NS_FILE_TALK => true,
4024 NS_MEDIAWIKI => true,
4025 NS_MEDIAWIKI_TALK => true,
4026 NS_TEMPLATE_TALK => true,
4027 NS_HELP => true,
4028 NS_HELP_TALK => true,
4030];
4031
4048
4056
4065
4072
4083$wgInvalidRedirectTargets = [ 'Filepath', 'Mypage', 'Mytalk', 'Redirect' ];
4084
# End of title and interwiki settings }
4086
4087/************************************************************************/
4115 'class' => 'Parser',
4116 # 'preprocessorClass' => 'Preprocessor_Hash',
4117];
4118
4123
4129
4140
4148
4153
4165 'bitcoin:', 'ftp://', 'ftps://', 'geo:', 'git://', 'gopher://', 'http://',
4166 'https://', 'irc://', 'ircs://', 'magnet:', 'mailto:', 'mms://', 'news:',
4167 'nntp://', 'redis://', 'sftp://', 'sip:', 'sips:', 'sms:', 'ssh://',
4168 'svn://', 'tel:', 'telnet://', 'urn:', 'worldwind://', 'xmpp:', '//'
4169];
4170
4175
4180
4194
4205
4215
4240
4246
4251$wgTidyBin = 'tidy';
4252
4257$wgTidyConf = $IP . '/includes/tidy/tidy.conf';
4258
4264
4269$wgTidyInternal = extension_loaded( 'tidy' );
4270
4276
4283
4294
4302
4308
4322$wgNoFollowDomainExceptions = [ 'mediawiki.org' ];
4323
4328
4335
4341
4347
4352
4358
4366 'ISBN' => false,
4367 'PMID' => false,
4368 'RFC' => false
4369];
4370
# end of parser settings }
4372
4373/************************************************************************/
4396
4405
# End of statistics }
4407
4408/************************************************************************/
4419 'local' => [ 'class' => 'LocalIdLookup' ],
4420];
4421
4427
4452 'policies' => [
4453 'bureaucrat' => [
4454 'MinimalPasswordLength' => 8,
4455 'MinimumPasswordLengthToLogin' => 1,
4456 'PasswordCannotMatchUsername' => true,
4457 'PasswordCannotBePopular' => 25,
4458 ],
4459 'sysop' => [
4460 'MinimalPasswordLength' => 8,
4461 'MinimumPasswordLengthToLogin' => 1,
4462 'PasswordCannotMatchUsername' => true,
4463 'PasswordCannotBePopular' => 25,
4464 ],
4465 'bot' => [
4466 'MinimalPasswordLength' => 8,
4467 'MinimumPasswordLengthToLogin' => 1,
4468 'PasswordCannotMatchUsername' => true,
4469 ],
4470 'default' => [
4471 'MinimalPasswordLength' => 1,
4472 'PasswordCannotMatchUsername' => true,
4473 'PasswordCannotMatchBlacklist' => true,
4474 'MaximalPasswordLength' => 4096,
4475 ],
4476 ],
4477 'checks' => [
4478 'MinimalPasswordLength' => 'PasswordPolicyChecks::checkMinimalPasswordLength',
4479 'MinimumPasswordLengthToLogin' => 'PasswordPolicyChecks::checkMinimumPasswordLengthToLogin',
4480 'PasswordCannotMatchUsername' => 'PasswordPolicyChecks::checkPasswordCannotMatchUsername',
4481 'PasswordCannotMatchBlacklist' => 'PasswordPolicyChecks::checkPasswordCannotMatchBlacklist',
4482 'MaximalPasswordLength' => 'PasswordPolicyChecks::checkMaximalPasswordLength',
4483 'PasswordCannotBePopular' => 'PasswordPolicyChecks::checkPopularPasswordBlacklist'
4484 ],
4485];
4486
4507
4513 'preauth' => [
4514 MediaWiki\Auth\LegacyHookPreAuthenticationProvider::class => [
4515 'class' => MediaWiki\Auth\LegacyHookPreAuthenticationProvider::class,
4516 'sort' => 0,
4517 ],
4518 MediaWiki\Auth\ThrottlePreAuthenticationProvider::class => [
4519 'class' => MediaWiki\Auth\ThrottlePreAuthenticationProvider::class,
4520 'sort' => 0,
4521 ],
4522 ],
4523 'primaryauth' => [
4524 // TemporaryPasswordPrimaryAuthenticationProvider should come before
4525 // any other PasswordAuthenticationRequest-based
4526 // PrimaryAuthenticationProvider (or at least any that might return
4527 // FAIL rather than ABSTAIN for a wrong password), or password reset
4528 // won't work right. Do not remove this (or change the key) or
4529 // auto-configuration of other such providers in extensions will
4530 // probably auto-insert themselves in the wrong place.
4531 MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::class => [
4532 'class' => MediaWiki\Auth\TemporaryPasswordPrimaryAuthenticationProvider::class,
4533 'args' => [ [
4534 // Fall through to LocalPasswordPrimaryAuthenticationProvider
4535 'authoritative' => false,
4536 ] ],
4537 'sort' => 0,
4538 ],
4539 MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProvider::class => [
4540 'class' => MediaWiki\Auth\LocalPasswordPrimaryAuthenticationProvider::class,
4541 'args' => [ [
4542 // Last one should be authoritative, or else the user will get
4543 // a less-than-helpful error message (something like "supplied
4544 // authentication info not supported" rather than "wrong
4545 // password") if it too fails.
4546 'authoritative' => true,
4547 ] ],
4548 'sort' => 100,
4549 ],
4550 ],
4551 'secondaryauth' => [
4552 MediaWiki\Auth\CheckBlocksSecondaryAuthenticationProvider::class => [
4553 'class' => MediaWiki\Auth\CheckBlocksSecondaryAuthenticationProvider::class,
4554 'sort' => 0,
4555 ],
4556 MediaWiki\Auth\ResetPasswordSecondaryAuthenticationProvider::class => [
4557 'class' => MediaWiki\Auth\ResetPasswordSecondaryAuthenticationProvider::class,
4558 'sort' => 100,
4559 ],
4560 // Linking during login is experimental, enable at your own risk - T134952
4561 // MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider::class => [
4562 // 'class' => MediaWiki\Auth\ConfirmLinkSecondaryAuthenticationProvider::class,
4563 // 'sort' => 100,
4564 // ],
4565 MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider::class => [
4566 'class' => MediaWiki\Auth\EmailNotificationSecondaryAuthenticationProvider::class,
4567 'sort' => 200,
4568 ],
4569 ],
4570];
4571
4611 'default' => 300,
4612];
4613
4630 'default' => true,
4631];
4632
4643 \MediaWiki\Auth\TemporaryPasswordAuthenticationRequest::class
4644];
4645
4656 \MediaWiki\Auth\PasswordAuthenticationRequest::class,
4657];
4658
4664
4671
4684
4691
4698
4719 'A' => [
4720 'class' => 'MWOldPassword',
4721 ],
4722 'B' => [
4723 'class' => 'MWSaltedPassword',
4724 ],
4725 'pbkdf2-legacyA' => [
4726 'class' => 'LayeredParameterizedPassword',
4727 'types' => [
4728 'A',
4729 'pbkdf2',
4730 ],
4731 ],
4732 'pbkdf2-legacyB' => [
4733 'class' => 'LayeredParameterizedPassword',
4734 'types' => [
4735 'B',
4736 'pbkdf2',
4737 ],
4738 ],
4739 'bcrypt' => [
4740 'class' => 'BcryptPassword',
4741 'cost' => 9,
4742 ],
4743 'pbkdf2' => [
4744 'class' => 'Pbkdf2Password',
4745 'algo' => 'sha512',
4746 'cost' => '30000',
4747 'length' => '64',
4748 ],
4749];
4750
4758 'username' => true,
4759 'email' => true,
4760];
4761
4766
4772
4778 'MediaWiki default', // Default 'Main Page' and MediaWiki: message pages
4779 'Conversion script', // Used for the old Wikipedia software upgrade
4780 'Maintenance script', // Maintenance scripts which perform editing, image import script
4781 'Template namespace initialisation script', // Used in 1.2->1.3 upgrade
4782 'ScriptImporter', // Default user name used by maintenance/importSiteScripts.php
4783 'msg:double-redirect-fixer', // Automatic double redirect fix
4784 'msg:usermessage-editor', // Default user for leaving user messages
4785 'msg:proxyblocker', // For $wgProxyList and Special:Blockme (removed in 1.22)
4786 'msg:spambot_username', // Used by cleanupSpam.php
4787 'msg:autochange-username', // Used by anon category RC entries (parser functions, Lua & purges)
4788];
4789
4797 'ccmeonemails' => 0,
4798 'cols' => 80,
4799 'date' => 'default',
4800 'diffonly' => 0,
4801 'disablemail' => 0,
4802 'editfont' => 'default',
4803 'editondblclick' => 0,
4804 'editsectiononrightclick' => 0,
4805 'enotifminoredits' => 0,
4806 'enotifrevealaddr' => 0,
4807 'enotifusertalkpages' => 1,
4808 'enotifwatchlistpages' => 1,
4809 'extendwatchlist' => 1,
4810 'fancysig' => 0,
4811 'forceeditsummary' => 0,
4812 'gender' => 'unknown',
4813 'hideminor' => 0,
4814 'hidepatrolled' => 0,
4815 'hidecategorization' => 1,
4816 'imagesize' => 2,
4817 'math' => 1,
4818 'minordefault' => 0,
4819 'newpageshidepatrolled' => 0,
4820 'nickname' => '',
4821 'norollbackdiff' => 0,
4822 'numberheadings' => 0,
4823 'previewonfirst' => 0,
4824 'previewontop' => 1,
4825 'rcdays' => 7,
4826 'rclimit' => 50,
4827 'rows' => 25,
4828 'showhiddencats' => 0,
4829 'shownumberswatching' => 1,
4830 'showtoolbar' => 1,
4831 'skin' => false,
4832 'stubthreshold' => 0,
4833 'thumbsize' => 5,
4834 'underline' => 2,
4835 'uselivepreview' => 0,
4836 'usenewrc' => 1,
4837 'watchcreations' => 1,
4838 'watchdefault' => 1,
4839 'watchdeletion' => 0,
4840 'watchuploads' => 1,
4841 'watchlistdays' => 3.0,
4842 'watchlisthideanons' => 0,
4843 'watchlisthidebots' => 0,
4844 'watchlisthideliu' => 0,
4845 'watchlisthideminor' => 0,
4846 'watchlisthideown' => 0,
4847 'watchlisthidepatrolled' => 0,
4848 'watchlisthidecategorization' => 1,
4849 'watchlistreloadautomatically' => 0,
4850 'watchmoves' => 0,
4851 'watchrollback' => 0,
4852 'wllimit' => 250,
4853 'useeditwarning' => 1,
4854 'prefershttps' => 1,
4855];
4856
4861
4868
4879
4887
4899
4909 MediaWiki\Session\CookieSessionProvider::class => [
4910 'class' => MediaWiki\Session\CookieSessionProvider::class,
4911 'args' => [ [
4912 'priority' => 30,
4913 'callUserSetCookiesHook' => true,
4914 ] ],
4915 ],
4916 MediaWiki\Session\BotPasswordSessionProvider::class => [
4917 'class' => MediaWiki\Session\BotPasswordSessionProvider::class,
4918 'args' => [ [
4919 'priority' => 75,
4920 ] ],
4921 ],
4922];
4923
# end user accounts }
4925
4926/************************************************************************/
4935
4940
4945
4961 'IPv4' => 16, # Blocks larger than a /16 (64k addresses) will not be allowed
4962 'IPv6' => 19,
4963];
4964
4973
4992
5020
5026
5032
5058
5060// Implicit group for all visitors
5061$wgGroupPermissions['*']['createaccount'] = true;
5062$wgGroupPermissions['*']['read'] = true;
5063$wgGroupPermissions['*']['edit'] = true;
5064$wgGroupPermissions['*']['createpage'] = true;
5065$wgGroupPermissions['*']['createtalk'] = true;
5066$wgGroupPermissions['*']['writeapi'] = true;
5067$wgGroupPermissions['*']['editmyusercss'] = true;
5068$wgGroupPermissions['*']['editmyuserjs'] = true;
5069$wgGroupPermissions['*']['viewmywatchlist'] = true;
5070$wgGroupPermissions['*']['editmywatchlist'] = true;
5071$wgGroupPermissions['*']['viewmyprivateinfo'] = true;
5072$wgGroupPermissions['*']['editmyprivateinfo'] = true;
5073$wgGroupPermissions['*']['editmyoptions'] = true;
5074# $wgGroupPermissions['*']['patrolmarks'] = false; // let anons see what was patrolled
5075
5076// Implicit group for all logged-in accounts
5077$wgGroupPermissions['user']['move'] = true;
5078$wgGroupPermissions['user']['move-subpages'] = true;
5079$wgGroupPermissions['user']['move-rootuserpages'] = true; // can move root userpages
5080$wgGroupPermissions['user']['move-categorypages'] = true;
5081$wgGroupPermissions['user']['movefile'] = true;
5082$wgGroupPermissions['user']['read'] = true;
5083$wgGroupPermissions['user']['edit'] = true;
5084$wgGroupPermissions['user']['createpage'] = true;
5085$wgGroupPermissions['user']['createtalk'] = true;
5086$wgGroupPermissions['user']['writeapi'] = true;
5087$wgGroupPermissions['user']['upload'] = true;
5088$wgGroupPermissions['user']['reupload'] = true;
5089$wgGroupPermissions['user']['reupload-shared'] = true;
5090$wgGroupPermissions['user']['minoredit'] = true;
5091$wgGroupPermissions['user']['purge'] = true;
5092$wgGroupPermissions['user']['sendemail'] = true;
5093$wgGroupPermissions['user']['applychangetags'] = true;
5094$wgGroupPermissions['user']['changetags'] = true;
5095$wgGroupPermissions['user']['editcontentmodel'] = true;
5096
5097// Implicit group for accounts that pass $wgAutoConfirmAge
5098$wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
5099$wgGroupPermissions['autoconfirmed']['editsemiprotected'] = true;
5100
5101// Users with bot privilege can have their edits hidden
5102// from various log pages by default
5103$wgGroupPermissions['bot']['bot'] = true;
5104$wgGroupPermissions['bot']['autoconfirmed'] = true;
5105$wgGroupPermissions['bot']['editsemiprotected'] = true;
5106$wgGroupPermissions['bot']['nominornewtalk'] = true;
5107$wgGroupPermissions['bot']['autopatrol'] = true;
5108$wgGroupPermissions['bot']['suppressredirect'] = true;
5109$wgGroupPermissions['bot']['apihighlimits'] = true;
5110$wgGroupPermissions['bot']['writeapi'] = true;
5111
5112// Most extra permission abilities go to this group
5113$wgGroupPermissions['sysop']['block'] = true;
5114$wgGroupPermissions['sysop']['createaccount'] = true;
5115$wgGroupPermissions['sysop']['delete'] = true;
5116// can be separately configured for pages with > $wgDeleteRevisionsLimit revs
5117$wgGroupPermissions['sysop']['bigdelete'] = true;
5118// can view deleted history entries, but not see or restore the text
5119$wgGroupPermissions['sysop']['deletedhistory'] = true;
5120// can view deleted revision text
5121$wgGroupPermissions['sysop']['deletedtext'] = true;
5122$wgGroupPermissions['sysop']['undelete'] = true;
5123$wgGroupPermissions['sysop']['editinterface'] = true;
5124$wgGroupPermissions['sysop']['editusercss'] = true;
5125$wgGroupPermissions['sysop']['edituserjs'] = true;
5126$wgGroupPermissions['sysop']['import'] = true;
5127$wgGroupPermissions['sysop']['importupload'] = true;
5128$wgGroupPermissions['sysop']['move'] = true;
5129$wgGroupPermissions['sysop']['move-subpages'] = true;
5130$wgGroupPermissions['sysop']['move-rootuserpages'] = true;
5131$wgGroupPermissions['sysop']['move-categorypages'] = true;
5132$wgGroupPermissions['sysop']['patrol'] = true;
5133$wgGroupPermissions['sysop']['autopatrol'] = true;
5134$wgGroupPermissions['sysop']['protect'] = true;
5135$wgGroupPermissions['sysop']['editprotected'] = true;
5136$wgGroupPermissions['sysop']['rollback'] = true;
5137$wgGroupPermissions['sysop']['upload'] = true;
5138$wgGroupPermissions['sysop']['reupload'] = true;
5139$wgGroupPermissions['sysop']['reupload-shared'] = true;
5140$wgGroupPermissions['sysop']['unwatchedpages'] = true;
5141$wgGroupPermissions['sysop']['autoconfirmed'] = true;
5142$wgGroupPermissions['sysop']['editsemiprotected'] = true;
5143$wgGroupPermissions['sysop']['ipblock-exempt'] = true;
5144$wgGroupPermissions['sysop']['blockemail'] = true;
5145$wgGroupPermissions['sysop']['markbotedits'] = true;
5146$wgGroupPermissions['sysop']['apihighlimits'] = true;
5147$wgGroupPermissions['sysop']['browsearchive'] = true;
5148$wgGroupPermissions['sysop']['noratelimit'] = true;
5149$wgGroupPermissions['sysop']['movefile'] = true;
5150$wgGroupPermissions['sysop']['unblockself'] = true;
5151$wgGroupPermissions['sysop']['suppressredirect'] = true;
5152# $wgGroupPermissions['sysop']['pagelang'] = true;
5153# $wgGroupPermissions['sysop']['upload_by_url'] = true;
5154$wgGroupPermissions['sysop']['mergehistory'] = true;
5155$wgGroupPermissions['sysop']['managechangetags'] = true;
5156$wgGroupPermissions['sysop']['deletechangetags'] = true;
5157
5158// Permission to change users' group assignments
5159$wgGroupPermissions['bureaucrat']['userrights'] = true;
5160$wgGroupPermissions['bureaucrat']['noratelimit'] = true;
5161// Permission to change users' groups assignments across wikis
5162# $wgGroupPermissions['bureaucrat']['userrights-interwiki'] = true;
5163// Permission to export pages including linked pages regardless of $wgExportMaxLinkDepth
5164# $wgGroupPermissions['bureaucrat']['override-export-depth'] = true;
5165
5166# $wgGroupPermissions['sysop']['deletelogentry'] = true;
5167# $wgGroupPermissions['sysop']['deleterevision'] = true;
5168// To hide usernames from users and Sysops
5169# $wgGroupPermissions['suppress']['hideuser'] = true;
5170// To hide revisions/log items from users and Sysops
5171# $wgGroupPermissions['suppress']['suppressrevision'] = true;
5172// To view revisions/log items hidden from users and Sysops
5173# $wgGroupPermissions['suppress']['viewsuppressed'] = true;
5174// For private suppression log access
5175# $wgGroupPermissions['suppress']['suppressionlog'] = true;
5176
5183# $wgGroupPermissions['developer']['siteadmin'] = true;
5184
5197
5201$wgImplicitGroups = [ '*', 'user', 'autoconfirmed' ];
5202
5225
5230
5238$wgRestrictionTypes = [ 'create', 'edit', 'move', 'upload' ];
5239
5251$wgRestrictionLevels = [ '', 'autoconfirmed', 'sysop' ];
5252
5263
5277
5286
5297
5319
5330
5355 'autoconfirmed' => [ '&',
5358 ],
5359];
5360
5380 'onEdit' => [],
5381];
5382
5388
5412
5417
5423
5429
5438
5461 'count' => 0,
5462 'seconds' => 86400,
5463] ];
5464
5477
5482
5489
5513$wgDnsBlacklistUrls = [ 'http.dnsbl.sorbs.net.' ];
5514
5520
5527
5564 // Page edits
5565 'edit' => [
5566 'ip' => [ 8, 60 ],
5567 'newbie' => [ 8, 60 ],
5568 ],
5569 // Page moves
5570 'move' => [
5571 'newbie' => [ 2, 120 ],
5572 'user' => [ 8, 60 ],
5573 ],
5574 // File uploads
5575 'upload' => [
5576 'ip' => [ 8, 60 ],
5577 'newbie' => [ 8, 60 ],
5578 ],
5579 // Page rollbacks
5580 'rollback' => [
5581 'user' => [ 10, 60 ],
5582 'newbie' => [ 5, 120 ]
5583 ],
5584 // Triggering password resets emails
5585 'mailpassword' => [
5586 'ip' => [ 5, 3600 ],
5587 ],
5588 // Emailing other users using MediaWiki
5589 'emailuser' => [
5590 'ip' => [ 5, 86400 ],
5591 'newbie' => [ 5, 86400 ],
5592 'user' => [ 20, 86400 ],
5593 ],
5594 // Purging pages
5595 'purge' => [
5596 'ip' => [ 30, 60 ],
5597 'user' => [ 30, 60 ],
5598 ],
5599 // Purges of link tables
5600 'linkpurge' => [
5601 'ip' => [ 30, 60 ],
5602 'user' => [ 30, 60 ],
5603 ],
5604 // Files rendered via thumb.php or thumb_handler.php
5605 'renderfile' => [
5606 'ip' => [ 700, 30 ],
5607 'user' => [ 700, 30 ],
5608 ],
5609 // Same as above but for non-standard thumbnails
5610 'renderfile-nonstandard' => [
5611 'ip' => [ 70, 30 ],
5612 'user' => [ 70, 30 ],
5613 ],
5614 // Stashing edits into cache before save
5615 'stashedit' => [
5616 'ip' => [ 30, 60 ],
5617 'newbie' => [ 30, 60 ],
5618 ],
5619 // Adding or removing change tags
5620 'changetag' => [
5621 'ip' => [ 8, 60 ],
5622 'newbie' => [ 8, 60 ],
5623 ],
5624 // Changing the content model of a page
5625 'editcontentmodel' => [
5626 'newbie' => [ 2, 120 ],
5627 'user' => [ 8, 60 ],
5628 ],
5629];
5630
5636
5643
5649
5663 // Short term limit
5664 [ 'count' => 5, 'seconds' => 300 ],
5665 // Long term limit. We need to balance the risk
5666 // of somebody using this as a DoS attack to lock someone
5667 // out of their account, and someone doing a brute force attack.
5668 [ 'count' => 150, 'seconds' => 60*60*48 ],
5669];
5670
5682
5683// @TODO: clean up grants
5684// @TODO: auto-include read/editsemiprotected rights?
5685
5686$wgGrantPermissions['basic']['autoconfirmed'] = true;
5687$wgGrantPermissions['basic']['autopatrol'] = true;
5688$wgGrantPermissions['basic']['editsemiprotected'] = true;
5689$wgGrantPermissions['basic']['ipblock-exempt'] = true;
5690$wgGrantPermissions['basic']['nominornewtalk'] = true;
5691$wgGrantPermissions['basic']['patrolmarks'] = true;
5692$wgGrantPermissions['basic']['purge'] = true;
5693$wgGrantPermissions['basic']['read'] = true;
5694$wgGrantPermissions['basic']['skipcaptcha'] = true;
5695$wgGrantPermissions['basic']['writeapi'] = true;
5696
5697$wgGrantPermissions['highvolume']['bot'] = true;
5698$wgGrantPermissions['highvolume']['apihighlimits'] = true;
5699$wgGrantPermissions['highvolume']['noratelimit'] = true;
5700$wgGrantPermissions['highvolume']['markbotedits'] = true;
5701
5702$wgGrantPermissions['editpage']['edit'] = true;
5703$wgGrantPermissions['editpage']['minoredit'] = true;
5704$wgGrantPermissions['editpage']['applychangetags'] = true;
5705$wgGrantPermissions['editpage']['changetags'] = true;
5706
5707$wgGrantPermissions['editprotected'] = $wgGrantPermissions['editpage'];
5708$wgGrantPermissions['editprotected']['editprotected'] = true;
5709
5710$wgGrantPermissions['editmycssjs'] = $wgGrantPermissions['editpage'];
5711$wgGrantPermissions['editmycssjs']['editmyusercss'] = true;
5712$wgGrantPermissions['editmycssjs']['editmyuserjs'] = true;
5713
5714$wgGrantPermissions['editmyoptions']['editmyoptions'] = true;
5715
5716$wgGrantPermissions['editinterface'] = $wgGrantPermissions['editpage'];
5717$wgGrantPermissions['editinterface']['editinterface'] = true;
5718$wgGrantPermissions['editinterface']['editusercss'] = true;
5719$wgGrantPermissions['editinterface']['edituserjs'] = true;
5720
5721$wgGrantPermissions['createeditmovepage'] = $wgGrantPermissions['editpage'];
5722$wgGrantPermissions['createeditmovepage']['createpage'] = true;
5723$wgGrantPermissions['createeditmovepage']['createtalk'] = true;
5724$wgGrantPermissions['createeditmovepage']['move'] = true;
5725$wgGrantPermissions['createeditmovepage']['move-rootuserpages'] = true;
5726$wgGrantPermissions['createeditmovepage']['move-subpages'] = true;
5727$wgGrantPermissions['createeditmovepage']['move-categorypages'] = true;
5728
5729$wgGrantPermissions['uploadfile']['upload'] = true;
5730$wgGrantPermissions['uploadfile']['reupload-own'] = true;
5731
5732$wgGrantPermissions['uploadeditmovefile'] = $wgGrantPermissions['uploadfile'];
5733$wgGrantPermissions['uploadeditmovefile']['reupload'] = true;
5734$wgGrantPermissions['uploadeditmovefile']['reupload-shared'] = true;
5735$wgGrantPermissions['uploadeditmovefile']['upload_by_url'] = true;
5736$wgGrantPermissions['uploadeditmovefile']['movefile'] = true;
5737$wgGrantPermissions['uploadeditmovefile']['suppressredirect'] = true;
5738
5739$wgGrantPermissions['patrol']['patrol'] = true;
5740
5741$wgGrantPermissions['rollback']['rollback'] = true;
5742
5743$wgGrantPermissions['blockusers']['block'] = true;
5744$wgGrantPermissions['blockusers']['blockemail'] = true;
5745
5746$wgGrantPermissions['viewdeleted']['browsearchive'] = true;
5747$wgGrantPermissions['viewdeleted']['deletedhistory'] = true;
5748$wgGrantPermissions['viewdeleted']['deletedtext'] = true;
5749
5751 $wgGrantPermissions['viewdeleted'];
5752$wgGrantPermissions['delete']['delete'] = true;
5753$wgGrantPermissions['delete']['bigdelete'] = true;
5754$wgGrantPermissions['delete']['deletelogentry'] = true;
5755$wgGrantPermissions['delete']['deleterevision'] = true;
5756$wgGrantPermissions['delete']['undelete'] = true;
5757
5758$wgGrantPermissions['protect'] = $wgGrantPermissions['editprotected'];
5759$wgGrantPermissions['protect']['protect'] = true;
5760
5761$wgGrantPermissions['viewmywatchlist']['viewmywatchlist'] = true;
5762
5763$wgGrantPermissions['editmywatchlist']['editmywatchlist'] = true;
5764
5765$wgGrantPermissions['sendemail']['sendemail'] = true;
5766
5767$wgGrantPermissions['createaccount']['createaccount'] = true;
5768
5769$wgGrantPermissions['privateinfo']['viewmyprivateinfo'] = true;
5770
5776 // Hidden grants are implicitly present
5777 'basic' => 'hidden',
5778
5779 'editpage' => 'page-interaction',
5780 'createeditmovepage' => 'page-interaction',
5781 'editprotected' => 'page-interaction',
5782 'patrol' => 'page-interaction',
5783
5784 'uploadfile' => 'file-interaction',
5785 'uploadeditmovefile' => 'file-interaction',
5786
5787 'sendemail' => 'email',
5788
5789 'viewmywatchlist' => 'watchlist-interaction',
5790 'editviewmywatchlist' => 'watchlist-interaction',
5791
5792 'editmycssjs' => 'customization',
5793 'editmyoptions' => 'customization',
5794
5795 'editinterface' => 'administration',
5796 'rollback' => 'administration',
5797 'blockusers' => 'administration',
5798 'delete' => 'administration',
5799 'viewdeleted' => 'administration',
5800 'protect' => 'administration',
5801 'createaccount' => 'administration',
5802
5803 'highvolume' => 'high-volume',
5804
5805 'privateinfo' => 'private-information',
5806];
5807
5813
5820
5830
# end of user rights settings
5832
5833/************************************************************************/
5842
5853
# end of proxy scanner settings
5855
5856/************************************************************************/
5865
5873
5879
5885
5893
5901
5908
5915
5920
5925
# end of cookie settings }
5927
5928/************************************************************************/
5940
# end LaTeX }
5942
5943/************************************************************************/
5957
5962
5969
5976
5986
5996
6003 // HTTP GET/HEAD requests.
6004 // Master queries should not happen on GET requests
6005 'GET' => [
6006 'masterConns' => 0,
6007 'writes' => 0,
6008 'readQueryTime' => 5
6009 ],
6010 // HTTP POST requests.
6011 // Master reads and writes will happen for a subset of these.
6012 'POST' => [
6013 'readQueryTime' => 5,
6014 'writeQueryTime' => 1,
6015 'maxAffected' => 1000
6016 ],
6017 'POST-nonwrite' => [
6018 'masterConns' => 0,
6019 'writes' => 0,
6020 'readQueryTime' => 5
6021 ],
6022 // Deferred updates that run after HTTP response is sent
6023 'PostSend' => [
6024 'readQueryTime' => 5,
6025 'writeQueryTime' => 1,
6026 'maxAffected' => 1000
6027 ],
6028 // Background job runner
6029 'JobRunner' => [
6030 'readQueryTime' => 30,
6031 'writeQueryTime' => 5,
6032 'maxAffected' => 500 // ballpark of $wgUpdateRowsPerQuery
6033 ],
6034 // Command-line scripts
6035 'Maintenance' => [
6036 'writeQueryTime' => 5,
6037 'maxAffected' => 1000
6038 ]
6039];
6040
6072
6095 'class' => '\\MediaWiki\\Logger\\LegacySpi',
6096];
6097
6104
6110
6115
6120
6127
6135
6145
6150
6155
6162
6168
6175
6181
6189
6201
6210
6218
6225
6233
6244 "$IP/tests/parser/parserTests.txt",
6245 "$IP/tests/parser/extraParserTests.txt"
6246];
6247
6252
6258
6267
# end of profiling, testing and debugging }
6269
6270/************************************************************************/
6279
6285
6290$wgSearchHighlightBoundaries = '[\p{Z}\p{P}\p{C}]';
6291
6303
6313 'application/x-suggestions+json' => false,
6314 'application/x-suggestions+xml' => false,
6315];
6316
6324
6330
6335
6340
6346
6357 NS_MAIN => true,
6358];
6359
6365
6382
6389
6396
6412
6419
# end of search settings
6421
6422/************************************************************************/
6431$wgDiff3 = '/usr/bin/diff3';
6432
6436$wgDiff = '/usr/bin/diff';
6437
6444 NS_CATEGORY => true
6445];
6446
6453
6460
# end edit UI }
6462
6463/************************************************************************/
6473if ( !isset( $wgCommandLineMode ) ) {
6474 $wgCommandLineMode = false;
6475}
6482
6492
6501
6512
6516$wgGitBin = '/usr/bin/git';
6517
6532 'https://(?:[a-z0-9_]+@)?gerrit.wikimedia.org/r/(?:p/)?(.*)' =>
6533 'https://phabricator.wikimedia.org/r/revision/%R;%H',
6534 'ssh://(?:[a-z0-9_]+@)?gerrit.wikimedia.org:29418/(.*)' =>
6535 'https://phabricator.wikimedia.org/r/revision/%R;%H',
6536];
6537
# End of maintenance }
6539
6540/************************************************************************/
6550$wgRCMaxAge = 90 * 24 * 3600;
6551
6557$wgWatchersMaxAge = 180 * 24 * 3600;
6558
6566
6575
6580$wgRCLinkLimits = [ 50, 100, 250, 500 ];
6581
6586$wgRCLinkDays = [ 1, 3, 7, 14, 30 ];
6587
6630
6636 'redis' => 'RedisPubSubFeedEngine',
6637 'udp' => 'UDPRCFeedEngine',
6638];
6639
6652
6658
6663
6670
6675
6679$wgFeed = true;
6680
6686
6696
6702
6716
6723 'rss' => 'RSSFeed',
6724 'atom' => 'AtomFeed',
6725];
6726
6732
6737
6742
6749
6755
6761
6766
6772
6781
6807 'newpage' => [
6808 'letter' => 'newpageletter',
6809 'title' => 'recentchanges-label-newpage',
6810 'legend' => 'recentchanges-legend-newpage',
6811 'grouping' => 'any',
6812 ],
6813 'minor' => [
6814 'letter' => 'minoreditletter',
6815 'title' => 'recentchanges-label-minor',
6816 'legend' => 'recentchanges-legend-minor',
6817 'class' => 'minoredit',
6818 'grouping' => 'all',
6819 ],
6820 'bot' => [
6821 'letter' => 'boteditletter',
6822 'title' => 'recentchanges-label-bot',
6823 'legend' => 'recentchanges-legend-bot',
6824 'class' => 'botedit',
6825 'grouping' => 'all',
6826 ],
6827 'unpatrolled' => [
6828 'letter' => 'unpatrolledletter',
6829 'title' => 'recentchanges-label-unpatrolled',
6830 'legend' => 'recentchanges-legend-unpatrolled',
6831 'grouping' => 'any',
6832 ],
6833];
6834
# end RC/watchlist }
6836
6837/************************************************************************/
6850
6857
6865
6870
6875
6884
6890
# end of copyright and credits settings }
6892
6893/************************************************************************/
6921
6930
6937
6944
6949
6962
6967
6972
6980
# end of import/export }
6982
6983/*************************************************************************/
6993
7021
7048
7055
7071
7076
7086
7094
7099
7106
7160
7166$wgAuth = null;
7167
7203
7216 __DIR__ . '/ServiceWiring.php'
7217];
7218
7224 'refreshLinks' => 'RefreshLinksJob',
7225 'deleteLinks' => 'DeleteLinksJob',
7226 'htmlCacheUpdate' => 'HTMLCacheUpdateJob',
7227 'sendMail' => 'EmaillingJob',
7228 'enotifNotify' => 'EnotifNotifyJob',
7229 'fixDoubleRedirect' => 'DoubleRedirectJob',
7230 'AssembleUploadChunks' => 'AssembleUploadChunksJob',
7231 'PublishStashedFile' => 'PublishStashedFileJob',
7232 'ThumbnailRender' => 'ThumbnailRenderJob',
7233 'recentChangesUpdate' => 'RecentChangesUpdateJob',
7234 'refreshLinksPrioritized' => 'RefreshLinksJob',
7235 'refreshLinksDynamic' => 'RefreshLinksJob',
7236 'activityUpdateJob' => 'ActivityUpdateJob',
7237 'categoryMembershipChange' => 'CategoryMembershipChangeJob',
7238 'cdnPurge' => 'CdnPurgeJob',
7239 'enqueue' => 'EnqueueJob', // local queue for multi-DC setups
7240 'null' => 'NullJob'
7241];
7242
7254$wgJobTypesExcludedFromDefaultQueue = [ 'AssembleUploadChunks', 'PublishStashedFile' ];
7255
7266
7281
7289 'default' => [ 'class' => 'JobQueueDB', 'order' => 'random', 'claimTTL' => 3600 ],
7290];
7291
7297 'class' => 'JobQueueAggregatorNull'
7298];
7299
7305 'Statistics' => [ 'SiteStatsUpdate', 'cacheUpdate' ]
7306];
7307
7316
7325 'hiddencat' => 'categorylinks',
7326];
7327
# End extensions }
7329
7330/*************************************************************************/
7339
7345
7350
7377
# End categories }
7379
7380/*************************************************************************/
7392 '',
7393 'block',
7394 'protect',
7395 'rights',
7396 'delete',
7397 'upload',
7398 'move',
7399 'import',
7400 'patrol',
7401 'merge',
7402 'suppress',
7403 'tag',
7404 'managetags',
7405 'contentmodel',
7406];
7407
7416 'suppress' => 'suppressionlog'
7417];
7418
7439 'patrol' => true,
7440 'tag' => true,
7441];
7442
7453 '' => 'all-logs-page',
7454 'block' => 'blocklogpage',
7455 'protect' => 'protectlogpage',
7456 'rights' => 'rightslog',
7457 'delete' => 'dellogpage',
7458 'upload' => 'uploadlogpage',
7459 'move' => 'movelogpage',
7460 'import' => 'importlogpage',
7461 'patrol' => 'patrol-log-page',
7462 'merge' => 'mergelog',
7463 'suppress' => 'suppressionlog',
7464];
7465
7476 '' => 'alllogstext',
7477 'block' => 'blocklogtext',
7478 'delete' => 'dellogpagetext',
7479 'import' => 'importlogpagetext',
7480 'merge' => 'mergelogpagetext',
7481 'move' => 'movelogpagetext',
7482 'patrol' => 'patrol-log-header',
7483 'protect' => 'protectlogtext',
7484 'rights' => 'rightslogtext',
7485 'suppress' => 'suppressionlogtext',
7486 'upload' => 'uploadlogpagetext',
7487];
7488
7496
7504 'block/block' => 'BlockLogFormatter',
7505 'block/reblock' => 'BlockLogFormatter',
7506 'block/unblock' => 'BlockLogFormatter',
7507 'contentmodel/change' => 'ContentModelLogFormatter',
7508 'contentmodel/new' => 'ContentModelLogFormatter',
7509 'delete/delete' => 'DeleteLogFormatter',
7510 'delete/delete_redir' => 'DeleteLogFormatter',
7511 'delete/event' => 'DeleteLogFormatter',
7512 'delete/restore' => 'DeleteLogFormatter',
7513 'delete/revision' => 'DeleteLogFormatter',
7514 'import/interwiki' => 'ImportLogFormatter',
7515 'import/upload' => 'ImportLogFormatter',
7516 'managetags/activate' => 'LogFormatter',
7517 'managetags/create' => 'LogFormatter',
7518 'managetags/deactivate' => 'LogFormatter',
7519 'managetags/delete' => 'LogFormatter',
7520 'merge/merge' => 'MergeLogFormatter',
7521 'move/move' => 'MoveLogFormatter',
7522 'move/move_redir' => 'MoveLogFormatter',
7523 'patrol/patrol' => 'PatrolLogFormatter',
7524 'patrol/autopatrol' => 'PatrolLogFormatter',
7525 'protect/modify' => 'ProtectLogFormatter',
7526 'protect/move_prot' => 'ProtectLogFormatter',
7527 'protect/protect' => 'ProtectLogFormatter',
7528 'protect/unprotect' => 'ProtectLogFormatter',
7529 'rights/autopromote' => 'RightsLogFormatter',
7530 'rights/rights' => 'RightsLogFormatter',
7531 'suppress/block' => 'BlockLogFormatter',
7532 'suppress/delete' => 'DeleteLogFormatter',
7533 'suppress/event' => 'DeleteLogFormatter',
7534 'suppress/reblock' => 'BlockLogFormatter',
7535 'suppress/revision' => 'DeleteLogFormatter',
7536 'tag/update' => 'TagLogFormatter',
7537 'upload/overwrite' => 'UploadLogFormatter',
7538 'upload/revert' => 'UploadLogFormatter',
7539 'upload/upload' => 'UploadLogFormatter',
7540];
7541
7551 'block' => [
7552 'block' => [ 'block' ],
7553 'reblock' => [ 'reblock' ],
7554 'unblock' => [ 'unblock' ],
7555 ],
7556 'contentmodel' => [
7557 'change' => [ 'change' ],
7558 'new' => [ 'new' ],
7559 ],
7560 'delete' => [
7561 'delete' => [ 'delete' ],
7562 'delete_redir' => [ 'delete_redir' ],
7563 'restore' => [ 'restore' ],
7564 'event' => [ 'event' ],
7565 'revision' => [ 'revision' ],
7566 ],
7567 'import' => [
7568 'interwiki' => [ 'interwiki' ],
7569 'upload' => [ 'upload' ],
7570 ],
7571 'managetags' => [
7572 'create' => [ 'create' ],
7573 'delete' => [ 'delete' ],
7574 'activate' => [ 'activate' ],
7575 'deactivate' => [ 'deactivate' ],
7576 ],
7577 'move' => [
7578 'move' => [ 'move' ],
7579 'move_redir' => [ 'move_redir' ],
7580 ],
7581 'newusers' => [
7582 'create' => [ 'create', 'newusers' ],
7583 'create2' => [ 'create2' ],
7584 'autocreate' => [ 'autocreate' ],
7585 'byemail' => [ 'byemail' ],
7586 ],
7587 'patrol' => [
7588 'patrol' => [ 'patrol' ],
7589 'autopatrol' => [ 'autopatrol' ],
7590 ],
7591 'protect' => [
7592 'protect' => [ 'protect' ],
7593 'modify' => [ 'modify' ],
7594 'unprotect' => [ 'unprotect' ],
7595 'move_prot' => [ 'move_prot' ],
7596 ],
7597 'rights' => [
7598 'rights' => [ 'rights' ],
7599 'autopromote' => [ 'autopromote' ],
7600 ],
7601 'suppress' => [
7602 'event' => [ 'event' ],
7603 'revision' => [ 'revision' ],
7604 'delete' => [ 'delete' ],
7605 'block' => [ 'block' ],
7606 'reblock' => [ 'reblock' ],
7607 ],
7608 'upload' => [
7609 'upload' => [ 'upload' ],
7610 'overwrite' => [ 'overwrite' ],
7611 ],
7612];
7613
7618
# end logging }
7620
7621/*************************************************************************/
7630
7636
7642
7648
# end special pages }
7650
7651/*************************************************************************/
7667 'credits' => true,
7668 'delete' => true,
7669 'edit' => true,
7670 'editchangetags' => 'SpecialPageAction',
7671 'history' => true,
7672 'info' => true,
7673 'markpatrolled' => true,
7674 'protect' => true,
7675 'purge' => true,
7676 'raw' => true,
7677 'render' => true,
7678 'revert' => true,
7679 'revisiondelete' => 'SpecialPageAction',
7680 'rollback' => true,
7681 'submit' => true,
7682 'unprotect' => true,
7683 'unwatch' => true,
7684 'view' => true,
7685 'watch' => true,
7686];
7687
# end actions }
7689
7690/*************************************************************************/
7701$wgDefaultRobotPolicy = 'index,follow';
7702
7718
7746
7758
# End robot policy }
7760
7761/************************************************************************/
7776
7783
7799
7837
7846
7855
7864
7873
7879
7885
7891
7898
7904
7909
7915 'MIMEsearch', // aiprop=mime
7916 'LinkSearch', // list=exturlusage
7917 'FileDuplicateSearch', // prop=duplicatefiles
7918];
7919
7924
7931
7936
7941
7947
7969
7976
# End AJAX and API }
7978
7979/************************************************************************/
7988
7994
7999
8005
8030
8034$wgPhpCli = '/usr/bin/php';
8035
8041$wgShellLocale = 'en_US.utf8';
8042
# End shell }
8044
8045/************************************************************************/
8054
8059
8064
8076
8082
# End HTTP client }
8084
8085/************************************************************************/
8097
8106
8111
8116
# End job queue }
8118
8119/************************************************************************/
8131
8141
8147
8153
8158
8164
8170
8192
8197
8207
8219
8234
8246 CONTENT_MODEL_WIKITEXT, // Just for completeness, wikitext will always be parsed.
8247 CONTENT_MODEL_JAVASCRIPT, // Make categories etc work, people put them into comments.
8248 CONTENT_MODEL_CSS, // Make categories etc work, people put them into comments.
8249];
8250
8257 'mediawiki' => 'MediaWikiSite',
8258];
8259
8266
8274
8282
8291
8301
8309
8317
8356 'paths' => [],
8357 'modules' => [],
8358 'global' => [
8359 # Timeout in seconds
8360 'timeout' => 360,
8361 # 'domain' is set to $wgCanonicalServer in Setup.php
8362 'forwardCookies' => false,
8363 'HTTPProxy' => null
8364 ]
8365];
8366
8375
8387$wgPopularPasswordFile = __DIR__ . '/../serialized/commonpasswords.cdb';
8388
8389/*
8390 * Max time (in seconds) a user-generated transaction can spend in writes.
8391 * If exceeded, the transaction is rolled back with an error instead of being committed.
8392 *
8393 * @var int|bool Disabled if false
8394 * @since 1.27
8395 */
8397
8418 'default' => [
8419 'class' => 'EventRelayerNull',
8420 ]
8421];
8422
8437
8447 'https://3hub.co' => true,
8448 'https://morepro.info' => true,
8449 'https://p.ato.mx' => true,
8450 'https://s.ato.mx' => true,
8451 'https://adserver.adtech.de' => true,
8452 'https://ums.adtechus.com' => true,
8453 'https://cas.criteo.com' => true,
8454 'https://cat.nl.eu.criteo.com' => true,
8455 'https://atpixel.alephd.com' => true,
8456 'https://rtb.metrigo.com' => true,
8457 'https://d5p.de17a.com' => true,
8458];
8459
and(b) You must cause any modified files to carry prominent notices stating that You changed the files
in the Source form of any Derivative Works that You all copyright
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated documentation
$wgGalleryOptions
Default parameters for the "<gallery>" tag.
$wgObjectCaches
Advanced object cache configuration.
$wgMaxShellWallClockTime
Maximum wall clock time (i.e.
$wgJobTypeConf
Map of job types to configuration arrays.
$wgAntivirus
Internal name of virus scanner.
$wgRestrictionLevels
Rights which can be required for each protection level (via action=protect)
$wgDisableHardRedirects
Disable redirects to special pages and interwiki redirects, which use a 302 and have no "redirected f...
$wgExemptFromUserRobotsControl
An array of namespace keys in which the INDEX/__NOINDEX__ magic words will not function,...
$wgCustomConvertCommand
Use another resizing converter, e.g.
$wgRightsIcon
Override for copyright metadata.
$wgCacheEpoch
Set this to current time to invalidate all prior cached pages.
$wgCdnMaxageLagged
Cache timeout for the CDN when DB replica DB lag is high.
$wgLegalTitleChars
Allowed title characters – regex character class Don't change this unless you know what you're doing.
$wgUploadThumbnailRenderHttpCustomHost
When using the "http" wgUploadThumbnailRenderMethod, lets one specify a custom Host HTTP header.
$wgBreakFrames
Break out of framesets.
bool $wgPageLanguageUseDB
Enable page language feature Allows setting page language in database.
$wgMaxInterlacingAreas
Array of max pixel areas for interlacing per MIME type.
$wgAdvancedSearchHighlighting
Set to true to have nicer highlighted text in search results, by default off due to execution overhea...
$wgUsePathInfo
Whether to support URLs like index.php/Page_title These often break when PHP is set up in CGI mode.
$wgUseSiteCss
Use the site's Cascading Style Sheets (CSS)?
$wgInterwikiExpiry
Expiry time for cache of interwiki table.
$wgAPIUselessQueryPages
The ApiQueryQueryPages module should skip pages that are redundant to true API queries.
$wgResourceLoaderMinifierMaxLineLength
Maximum line length when minifying JavaScript.
$wgGitRepositoryViewers
Map GIT repository URLs to viewer URLs to provide links in Special:Version.
$wgFileBackends
File backend structure configuration.
string $wgCentralIdLookupProvider
Central ID lookup provider to use by default.
$wgUseTinyRGBForJPGThumbnails
When this variable is true and JPGs use the sRGB ICC profile, swaps it for the more lightweight (and ...
$wgExtensionEntryPointListFiles
Array of files with list(s) of extension entry points to be used in maintenance/mergeMessageFileList....
$wgSemiprotectedRestrictionLevels
Restriction levels that should be considered "semiprotected".
Array $wgGrantPermissions
Map of (grant => right => boolean) Users authorize consumers (like Apps) to act on their behalf but o...
$wgLanguageCode
Site language code.
$wgFileExtensions
This is the list of preferred extensions for uploading files.
$wgAllowImageMoving
Allows to move images and other media files.
$wgMaximumMovedPages
Maximum number of pages to move at once when moving subpages with a page.
$wgConfigRegistry
Registry of factory functions to create config objects: The 'main' key must be set,...
$wgParserCacheType
The cache type for storing article HTML.
$wgRateLimitsExcludedIPs
Array of IPs which should be excluded from rate limits.
$wgSessionHandler
$wgMemoryLimit
The minimum amount of memory that MediaWiki "needs"; MediaWiki will try to raise PHP's memory limit i...
$wgMaxTemplateDepth
Maximum recursion depth for templates within templates.
$wgAPIMetaModules
API Query meta module extensions.
$wgGroupsRemoveFromSelf
$wgSharedThumbnailScriptPath
$wgEmergencyContact
Site admin email address.
$wgRCShowWatchingUsers
Show watching users in recent changes, watchlist and page history views.
$wgDBprefix
Table name prefix.
$wgAPIMaxResultSize
The maximum size (in bytes) of an API result.
$wgNewPasswordExpiry
The time, in seconds, when an emailed temporary password expires.
$wgMaxPPNodeCount
A complexity limit on template expansion: the maximum number of nodes visited by PPFrame::expand()
$wgPreviewOnOpenNamespaces
Which namespaces have special treatment where they should be preview-on-open Internally only Category...
$wgAllowUserJs
Allow user Javascript page? This enables a lot of neat customizations, but may increase security risk...
$wgEnotifWatchlist
Allow users to enable email notification ("enotif") on watchlist changes.
$wgCdnReboundPurgeDelay
If set, any SquidPurge call on a URL or URLs will send a second purge no less than this many seconds ...
$wgArticleRobotPolicies
Robot policies per article.
$wgApplyIpBlocksToXff
Whether to look at the X-Forwarded-For header's list of (potentially spoofed) IPs and apply IP blocks...
$wgLegacySchemaConversion
If set to true, the MediaWiki 1.4 to 1.5 schema conversion will create stub reference rows in the tex...
$wgDBuser
Database username.
$wgCategoryPagingLimit
Paging limit for categories.
$wgFeedCacheTimeout
Minimum timeout for cached Recentchanges feed, in seconds.
$wgUserEmailConfirmationTokenExpiry
The time, in seconds, when an email confirmation email expires.
$wgRemoveGroups
$wgSessionProviders
MediaWiki\Session\SessionProvider configuration.
$wgUpdateCompatibleMetadata
If to automatically update the img_metadata field if the metadata field is outdated but compatible wi...
$wgUploadMaintenance
To disable file delete/restore temporarily.
$wgUniversalEditButton
Enable the UniversalEditButton for browsers that support it (currently only Firefox with an extension...
$wgMaxArticleSize
Maximum article size in kilobytes.
$wgMaxGeneratedPPNodeCount
A complexity limit on template expansion: the maximum number of elements generated by Preprocessor::p...
string $wgPHPSessionHandling
Whether to use PHP session handling ($_SESSION and session_*() functions)
$wgCrossSiteAJAXdomainExceptions
Domains that should not be allowed to make AJAX requests, even if they match one of the domains allow...
$wgEnableParserLimitReporting
Whether to include the NewPP limit report as a HTML comment.
$wgDisableCookieCheck
By default, MediaWiki checks if the client supports cookies during the login process,...
$wgEnotifMaxRecips
Maximum number of users to mail at once when using impersonal mail.
$wgEnotifUserTalk
Allow users to enable email notification ("enotif") when someone edits their user talk page.
$wgUploadStashMaxAge
The maximum age of temporary (incomplete) uploaded files.
$wgExportFromNamespaces
Whether to allow the "export all pages in namespace" option.
$wgDefaultRobotPolicy
Default robot policy.
$wgCascadingRestrictionLevels
Restriction levels that can be used with cascading protection.
$wgExtraSignatureNamespaces
Array of namespaces, in addition to the talk namespaces, where signatures (~~~~) are likely to be use...
$wgStatsdMetricPrefix
Prefix for metric names sent to $wgStatsdServer.
$wgAutoblockExpiry
Number of seconds before autoblock entries expire.
$wgLocalDatabases
Other wikis on this site, can be administered from a single developer account.
$wgDefaultLanguageVariant
Default variant code, if false, the default will be the language code.
$wgBrowserBlackList
Browser Blacklist for unicode non compliant browsers.
$wgMessagesDirs
Extension messages directories.
$wgDisableQueryPageUpdate
Set this to an array of special page names to prevent maintenance/updateSpecialPages....
$wgParserTestFiles
Parser test suite files to be run by parserTests.php when no specific filename is passed to it.
$wgProxyList
Big list of banned IP addresses.
$wgScript
The URL path to index.php.
$wgLegacyEncoding
Set this to eg 'ISO-8859-1' to perform character set conversion when loading old revisions not marked...
$wgUseInstantCommons
Use Commons as a remote file repository.
$wgSQLiteDataDir
To override default SQLite data directory ($docroot/../data)
$wgThumbUpright
Adjust width of upright images when parameter 'upright' is used This allows a nicer look for upright ...
$wgEnableImageWhitelist
If $wgAllowExternalImages is false, you can allow an on-wiki whitelist of regular expression fragment...
$wgValidateAllHtml
Validate the overall output using tidy and refuse to display the page if it's not valid.
$wgPasswordExpireGrace
If a user's password is expired, the number of seconds when they can still login, and cancel their pa...
$wgFeedLimit
Set maximum number of results to return in syndication feeds (RSS, Atom) for eg Recentchanges,...
$wgActiveUserDays
How many days user must be idle before he is considered inactive.
$wgLockManagers
Array of configuration arrays for each lock manager.
$wgNamespacesWithSubpages
Which namespaces should support subpages? See Language.php for a list of namespaces.
$wgSiteTypes
Register handlers for specific types of sites.
$wgEditSubmitButtonLabelPublish
Whether to label the store-to-database-and-show-to-others button in the editor as "Save page"/"Save c...
$wgRawHtml
Allow raw, unchecked HTML in "<html>...</html>" sections.
$wgHiddenPrefs
An array of preferences to not show for the user.
$wgMaxRedirectLinksRetrieved
Maximum number of links to a redirect page listed on Special:Whatlinkshere/RedirectDestination.
$wgForeignUploadTargets
Array of foreign file repo names (set in $wgForeignFileRepos above) that are allowable upload targets...
$wgCheckFileExtensions
This is a flag to determine whether or not to check file extensions on upload.
$wgUserrightsInterwikiDelimiter
Character used as a delimiter when testing for interwiki userrights (In Special:UserRights,...
$wgUseCopyrightUpload
Set this to true if you want detailed copyright information forms on Upload.
$wgRCFeeds
Recentchanges items are periodically purged; entries older than this many seconds will go.
$wgNoFollowNsExceptions
Namespaces in which $wgNoFollowLinks doesn't apply.
$wgEnableOpenSearchSuggest
Enable OpenSearch suggestions requested by MediaWiki.
$wgCleanSignatures
If true, removes (by substituting) templates in signatures.
$wgDBadminuser
Separate username for maintenance tasks.
$wgUseLocalMessageCache
Set this to true to maintain a copy of the message cache on the local server.
$wgCountCategorizedImagesAsUsed
On Special:Unusedimages, consider images "used", if they are put into a category.
$wgInternalServer
Internal server name as known to CDN, if different.
$wgHTCPRouting
Routing configuration for HTCP multicast purging.
$wgCacheDirectory
Directory for caching data in the local filesystem.
$wgAutoloadAttemptLowercase
Switch controlling legacy case-insensitive classloading.
$wgHashedSharedUploadDirectory
Set the following to false especially if you have a set of files that need to be accessible by all wi...
$wgServerName
Server name.
$wgTidyConf
The path to the tidy config file.
$wgPageInfoTransclusionLimit
InfoAction retrieves a list of transclusion links (both to and from).
bool $wgEnableBotPasswords
Whether to enable bot passwords.
$wgAmericanDates
Enable dates like 'May 12' instead of '12 May', if the default date format is 'dmy or mdy'.
$wgGenerateThumbnailOnParse
Allow thumbnail rendering on page view.
$wgRightsUrl
Set this to specify an external URL containing details about the content license used on your wiki.
$wgRenderHashAppend
Append a configured value to the parser cache and the sitenotice key so that they can be kept separat...
$wgSharedTables
$wgSend404Code
Some web hosts attempt to rewrite all responses with a 404 (not found) status code,...
$wgStyleVersion
Bump this number when changing the global style sheets and JavaScript.
$wgMaxShellMemory
Maximum amount of virtual memory available to shell processes under linux, in KB.
$wgThumbLimits
Adjust thumbnails on image pages according to a user setting.
$wgSessionName
Override to customise the session name.
$wgHideIdentifiableRedirects
Should MediaWiki attempt to protect user's privacy when doing redirects? Keep this true if access cou...
$wgUseAjax
Enable AJAX framework.
$wgDefaultUserOptions
Settings added to this array will override the default globals for the user preferences used by anony...
$wgUploadStashScalerBaseUrl
To enable remote on-demand scaling, set this to the thumbnail base URL.
$wgBlockCIDRLimit
Limits on the possible sizes of range blocks.
$wgLogActions
Lists the message key string for formatting individual events of each type and action when listed in ...
$wgAdaptiveMessageCache
Instead of caching everything, only cache those messages which have been customised in the site conte...
$wgUseTagFilter
Allow filtering by change tag in recentchanges, history, etc Has no effect if no tags are defined in ...
$wgTrackingCategories
Array holding default tracking category names.
$wgUseImageResize
Whether to enable server-side image thumbnailing.
$wgSessionsInObjectCache
$wgDisableSearchUpdate
If you've disabled search semi-permanently, this also disables updates to the table.
$wgUseTeX
To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of the MediaWiki package a...
$wgExtraInterlanguageLinkPrefixes
List of additional interwiki prefixes that should be treated as interlanguage links (i....
$wgDisableOutputCompression
Disable output compression (enabled by default if zlib is available)
$wgResourceLoaderLESSVars
Global LESS variables.
$wgTrxProfilerLimits
Performance expectations for DB usage.
$wgDebugLogPrefix
Prefix for debug log lines.
$wgLocalInterwiki
The interwiki prefix of the current wiki, or false if it doesn't have one.
$wgActionPaths
To set 'pretty' URL paths for actions other than plain page views, add to this array.
$wgSitemapNamespaces
Array of namespaces to generate a Google sitemap for when the maintenance/generateSitemap....
$wgLoginLanguageSelector
Show a bar of language selection links in the user login and user registration forms; edit the "login...
$wgDisableAnonTalk
Disable links to talk pages of anonymous users (IPs) in listings on special pages like page history,...
$wgAdvertisedFeedTypes
Which feed types should we provide by default? This can include 'rss', 'atom', neither,...
$wgAuthManagerConfig
Configure AuthManager.
$wgPhpCli
Executable path of the PHP cli binary (php/php5).
$wgAutopromoteOnceLogInRC
Put user rights log entries for autopromotion in recent changes?
$wgResourceLoaderMinifierStatementsOnOwnLine
Put each statement on its own line when minifying JavaScript.
$wgSecretKey
This should always be customised in LocalSettings.php.
$wgIgnoreImageErrors
If set, inline scaled images will still produce "<img>" tags ready for output instead of showing an e...
$wgMimeType
The default Content-Type header.
$wgEnableAutoRotation
If set to true, images that contain certain the exif orientation tag will be rotated accordingly.
$wgExtraGenderNamespaces
Same as above, but for namespaces with gender distinction.
$wgEnableUserEmail
Set to true to enable user-to-user e-mail.
$wgCookieExpiration
Default cookie lifetime, in seconds.
$wgPagePropLinkInvalidations
Page property link table invalidation lists.
$wgPasswordPolicy
Password policy for local wiki users.
$wgAllowUserCss
Allow user Cascading Style Sheets (CSS)? This enables a lot of neat customizations,...
$wgAutopromote
Automatically add a usergroup to any user who matches certain conditions.
$wgSVGConverter
Pick a converter defined in $wgSVGConverters.
$wgOverrideHostname
Override server hostname detection with a hardcoded value.
$wgSummarySpamRegex
Same as the above except for edit summaries.
$wgFallbackSkin
Fallback skin used when the skin defined by $wgDefaultSkin can't be found.
$wgQueryPageDefaultLimit
Integer defining default number of entries to show on special pages which are query-pages such as Spe...
$wgRevisionCacheExpiry
Revision text may be cached in $wgMemc to reduce load on external storage servers and object extracti...
$wgTranslateNumerals
For Hindi and Arabic use local numerals instead of Western style (0-9) numerals in interface.
$wgForcedRawSMaxage
Default maximum age for raw CSS/JS accesses.
$wgDjvuRenderer
Path of the ddjvu DJVU renderer Enable this and $wgDjvuDump to enable djvu rendering example: $wgDjvu...
$wgImageMagickTempDir
Temporary directory used for ImageMagick.
$wgAllowDisplayTitle
Allow DISPLAYTITLE to change title display.
$wgTidyInternal
Set this to true to use the tidy extension.
$wgSitemapNamespacesPriorities
Custom namespace priorities for sitemaps.
$wgLogNames
Lists the message key string for each log type.
$wgSharedUploadPath
Full path on the web server where shared uploads can be found.
$wgCapitalLinks
Set this to false to avoid forcing the first letter of links to capitals.
$wgCdnMaxageSubstitute
Cache timeout for the CDN when a response is known to be wrong or incomplete (due to load)
$wgResourceLoaderSources
Extensions should register foreign module sources here.
$wgLogExceptionBacktrace
If true, send the exception backtrace to the error log.
$wgSQLMode
SQL Mode - default is turning off all modes, including strict, if set.
$wgEnableJavaScriptTest
Allow running of javascript test suites via [[Special:JavaScriptTest]] (such as QUnit).
$wgHashedUploadDirectory
Set this to false if you do not want MediaWiki to divide your images directory into many subdirectori...
$wgPutIPinRC
Log IP addresses in the recentchanges table; can be accessed only by extensions (e....
$wgJobQueueAggregator
Which aggregator to use for tracking which queues have jobs.
$wgInvalidateCacheOnLocalSettingsChange
Invalidate various caches when LocalSettings.php changes.
$wgLocalStylePath
The URL path of the skins directory.
$wgAPIMaxLagThreshold
Maximum amount of DB lag on a majority of DB replica DBs to tolerate before forcing bots to retry any...
$wgResourceLoaderValidateStaticJS
If set to true, statically-sourced (file-backed) JavaScript resources will be parsed for validity bef...
$wgDBservers
Database load balancer This is a two-dimensional array, an array of server info structures Fields are...
$wgMaxPPExpandDepth
$wgThumbnailScriptPath
Give a path here to use thumb.php for thumbnail generation on client request, instead of generating t...
$wgNonincludableNamespaces
Pages in namespaces in this array can not be used as templates.
$wgExportPagelistLimit
Maximum number of pages returned by the GetPagesFromCategory and GetPagesFromNamespace functions.
array $wgDefaultExternalStore
The place to put new revisions, false to put them in the local text table.
$wgUseTidy
Set this to true to use the deprecated tidy configuration parameters.
$wgPasswordResetRoutes
Whether to allow password resets ("enter some identifying data, and we'll send an email with a tempor...
$wgHKDFSecret
Secret for hmac-based key derivation function (fast, cryptographically secure random numbers).
$wgRegisterInternalExternals
By default MediaWiki does not register links pointing to same server in externallinks dataset,...
$wgNoFollowLinks
If true, external URL links in wiki text will be given the rel="nofollow" attribute as a hint to sear...
$wgDisableLangConversion
Whether to enable language variant conversion.
$wgRestrictDisplayTitle
For consistency, restrict DISPLAYTITLE to text that normalizes to the same canonical DB key.
$wgSlaveLagWarning
If lag is higher than $wgSlaveLagWarning, show a warning in some special pages (like watchlist).
$wgMaxRedirects
Max number of redirects to follow when resolving redirects.
$wgFileCacheDepth
Depth of the subdirectory hierarchy to be created under $wgFileCacheDirectory.
$wgReadOnly
Set this to a string to put the wiki into read-only mode.
$wgResourceLoaderDebug
The default debug mode (on/off) for of ResourceLoader requests.
$wgAntivirusRequired
Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected.
$wgHTTPTimeout
Timeout for HTTP requests done internally, in seconds.
$wgUseFilePatrol
Use file patrolling to check new files on Special:Newfiles.
$wgMediaHandlers
Plugins for media file type handling.
$wgImageLimits
Limit images on image description pages to a user-selectable limit.
$wgShowHostnames
Expose backend server host names through the API and various HTML comments.
$wgJobRunRate
Number of jobs to perform per request.
$wgAllowSpecialInclusion
Allow special page inclusions such as {{Special:Allpages}}.
$wgUseAutomaticEditSummaries
If user doesn't specify any edit summary when making a an edit, MediaWiki will try to automatically c...
$wgAllowUserCssPrefs
Allow user-preferences implemented in CSS? This allows users to customise the site appearance to a gr...
$wgCentralIdLookupProviders
Central ID lookup providers Key is the provider ID, value is a specification for ObjectFactory.
$wgUploadSizeWarning
Warn if uploaded files are larger than this (in bytes), or false to disable.
$wgAPIMaxUncachedDiffs
The maximum number of uncached diffs that can be retrieved in one API request.
$wgHTTPConnectTimeout
Timeout for connections done internally (in seconds) Only works for curl.
array $wgVirtualRestConfig
Global configuration variable for Virtual REST Services.
$wgProfileLimit
Only record profiling info for pages that took longer than this.
$wgGrammarForms
Some languages need different word forms, usually for different cases.
$wgDebugTidy
Put tidy warnings in HTML comments Only works for internal tidy.
$wgHTTPProxy
Proxy to use for CURL requests.
string null $wgAuthenticationTokenVersion
Versioning for authentication tokens.
$wgExportAllowListContributors
Return distinct author list (when not returning full history)
$wgPasswordAttemptThrottle
Limit password attempts to X attempts per Y seconds per IP per account.
$wgContentNamespaces
Array of namespaces which can be deemed to contain valid "content", as far as the site statistics are...
$wgExtraNamespaces
Additional namespaces.
$wgSVGMaxSize
Don't scale a SVG larger than this.
$wgMaxShellFileSize
Maximum file size created by shell processes under linux, in KB ImageMagick convert for example can b...
$wgThumbnailBuckets
When defined, is an array of image widths used as buckets for thumbnail generation.
$wgDisableUploadScriptChecks
Setting this to true will disable the upload system's checks for HTML/JavaScript.
$wgAllowCategorizedRecentChanges
Enable filtering of categories in Recentchanges.
$wgDisabledVariants
Disabled variants array of language variant conversion.
$wgTmpDirectory
The local filesystem path to a temporary directory.
$wgStyleDirectory
Filesystem stylesheets directory.
$wgAutoloadClasses
Array mapping class names to filenames, for autoloading.
$wgShellCgroup
Under Linux: a cgroup directory used to constrain memory usage of shell commands.
$wgDBtype
Database type.
$wgTransactionalTimeLimit
The minimum amount of time that MediaWiki needs for "slow" write request, particularly ones with mult...
$wgDBmwschema
Mediawiki schema.
$wgMinUploadChunkSize
Minimum upload chunk size, in bytes.
$wgProxyWhitelist
Proxy whitelist, list of addresses that are assumed to be non-proxy despite what the other methods mi...
$wgNoReplyAddress
Reply-To address for e-mail notifications.
$wgShowRollbackEditCount
The $wgShowRollbackEditCount variable is used to show how many edits can be rolled back.
$wgUpgradeKey
When you run the web-based upgrade utility, it will tell you what to set this to in order to authoriz...
$wgDBname
Name of the database.
$wgUseDatabaseMessages
Translation using MediaWiki: namespace.
string $wgPopularPasswordFile
Where popular password file is located.
$wgSiteNotice
Site notice shown at the top of each page.
$wgXMLMimeTypes
Additional XML types we can allow via MIME-detection.
$wgJobTypesExcludedFromDefaultQueue
Jobs that must be explicitly requested, i.e.
$wgReferrerPolicy
Value for the referrer policy meta tag.
$wgImgAuthDetails
Set this to true if you use img_auth and want the user to see details on why access failed.
$wgValidSkinNames
List of valid skin names.
$wgMaxMsgCacheEntrySize
Maximum entry size in the message cache, in bytes.
$wgUseGzip
When using the file cache, we can store the cached HTML gzipped to save disk space.
$wgCachePages
Allow client-side caching of pages.
$wgDBerrorLogTZ
Timezone to use in the error log.
$wgResourceModules
Client-side resource modules.
$wgResourceLoaderStorageEnabled
Whether ResourceLoader should attempt to persist modules in localStorage on browsers that support the...
$wgEnableSearchContributorsByIP
If true, searches for IP addresses will be redirected to that IP's contributions page.
$wgAutoConfirmCount
Number of edits an account requires before it is autoconfirmed.
$wgUploadDirectory
The filesystem path of the images directory.
$wgCookieHttpOnly
Set authentication cookies to HttpOnly to prevent access by JavaScript, in browsers that support this...
$wgMangleFlashPolicy
When OutputHandler is used, mangle any output that contains <cross-domain-policy>.
$wgLogTypes
The logging system has two levels: an event type, which describes the general category and can be vie...
$wgClockSkewFudge
Clock skew or the one-second resolution of time() can occasionally cause cache problems when the user...
$wgCapitalLinkOverrides
$wgAPIPropModules
API Query prop module extensions.
$wgMaximalPasswordLength
Specifies the maximal length of a user password (T64685).
$wgSitename
Name of the site.
$wgUseCombinedLoginLink
Login / create account link behavior when it's possible for anonymous users to create an account.
$wgGroupsAddToSelf
A map of group names that the user is in, to group names that those users are allowed to add or revok...
$wgExternalServers
An array of external MySQL servers.
$wgAPIListModules
API Query list module extensions.
$wgResourceLoaderLESSImportPaths
Default import paths for LESS modules.
$wgThumbnailMinimumBucketDistance
When using thumbnail buckets as defined above, this sets the minimum distance to the bucket above the...
$wgHKDFAlgorithm
Algorithm for hmac-based key derivation function (fast, cryptographically secure random numbers).
$wgLocalVirtualHosts
Local virtual hosts.
$wgAdditionalMailParams
Additional email parameters, will be passed as the last argument to mail() call.
$wgHideInterlanguageLinks
Hide interlanguage links from the sidebar.
$wgScriptExtension
The extension to append to script names by default.
$wgPasswordSalt
For compatibility with old installations set to false.
$wgAvailableRights
A list of available rights, in addition to the ones defined by the core.
$wgDBadminpassword
Separate password for maintenance tasks.
$wgCompressRevisions
We can also compress text stored in the 'text' table.
$wgSharedUploadDirectory
Path on the file system where shared uploads can be found.
$wgShowCreditsIfMax
If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
$wgDBerrorLog
File to log database errors to.
$wgReadOnlyFile
If this lock file exists (size > 0), the wiki will be forced into read-only mode.
$wgImportSources
List of interwiki prefixes for wikis we'll accept as sources for Special:Import and API action=import...
$wgInvalidRedirectTargets
Array of invalid page redirect targets.
$wgCachePrefix
Overwrite the caching key prefix with custom value.
$wgLogRestrictions
This restricts log access to those who have a certain right Users without this will not see it in the...
$wgResourceLoaderMaxQueryLength
If set to a positive number, ResourceLoader will not generate URLs whose query string is more than th...
$wgFileCacheDirectory
Directory where the cached page will be saved.
$wgRightsText
If either $wgRightsUrl or $wgRightsPage is specified then this variable gives the text for the link.
$wgGitInfoCacheDirectory
Directory where GitInfo will look for pre-computed cache files.
$wgParserCacheExpireTime
The expiry time for the parser cache, in seconds.
$wgInterwikiFallbackSite
Fallback site, if unable to resolve from cache.
$wgUploadMissingFileUrl
Point the upload link for missing files to an external URL, as with $wgUploadNavigationUrl.
$wgMaxUserDBWriteDuration
Name of the external diff engine to use.
int bool $wgExtensionInfoMTime
When loading extensions through the extension registration system, this can be used to invalidate the...
$wgLogAutopatrol
Log autopatrol actions to the log table.
$wgEnotifFromEditor
True: from page editor if s/he opted-in.
$wgUnwatchedPageThreshold
If set to an integer, pages that are watched by this many users or more will not require the unwatche...
$wgExportAllowAll
Whether to allow exporting the entire wiki into a single file.
$wgIllegalFileChars
Additional characters that are not allowed in filenames.
$wgSquidServersNoPurge
As above, except these servers aren't purged on page changes; use to set a list of trusted proxies,...
$wgVerifyMimeType
Determines if the MIME type of uploaded files should be checked.
$wgShowUpdatedMarker
Show "Updated (since my last visit)" marker in RC view, watchlist and history view for watched pages ...
$wgExtensionMessagesFiles
Extension messages files.
$wgJsMimeType
Previously used as content type in HTML script tags.
$wgAntivirusSetup
Configuration for different virus scanners.
$wgUseRCPatrol
Use RC Patrolling to check for vandalism (from recent changes and watchlists) New pages and new files...
$wgCategoryCollation
Specify how category names should be sorted, when listed on a category page.
$wgEnableWriteAPI
Allow the API to be used to perform write operations (page edits, rollback, etc.) when an authorised ...
$wgResourceBasePath
The default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
$wgNamespaceProtection
Set the minimum permissions required to edit pages in each namespace.
$wgSidebarCacheExpiry
Expiry time for the sidebar cache, in seconds.
$wgProfileOnly
Don't put non-profiling info into log file.
$wgCommandLineDarkBg
For colorized maintenance script output, is your terminal background dark ?
$wgEnotifRevealEditorAddress
Set the Reply-to address in notifications to the editor's address, if user allowed this in the prefer...
$wgDjvuOutputExtension
File extension for the DJVU post processor output.
$wgUseKeyHeader
Send the Key HTTP header for better caching.
$wgNamespaceRobotPolicies
Robot policies per namespaces.
$wgAppleTouchIcon
The URL path of the icon for iPhone and iPod Touch web app bookmarks.
$wgOpenSearchTemplate
Template for OpenSearch suggestions, defaults to API action=opensearch.
$wgExportMaxHistory
If set nonzero, Special:Export requests for history of pages with more revisions than this will be re...
$wgPasswordSenderName
Sender name for e-mail notifications.
$wgFooterIcons
Abstract list of footer icons for skins in place of old copyrightico and poweredbyico code You can ad...
$wgRestrictionTypes
Set of available actions that can be restricted via action=protect You probably shouldn't change this...
$wgDirectoryMode
Default value for chmoding of new directories.
$wgUseNPPatrol
Use new page patrolling to check new pages on Special:Newpages.
$wgFixDoubleRedirects
Fix double redirects after a page move.
$wgTidyBin
The path to the tidy binary.
$wgDisableTextSearch
Set this to true to disable the full text search feature.
$wgLegacyJavaScriptGlobals
Whether or not to assign configuration variables to the global window object.
$wgImgAuthUrlPathMap
Map of relative URL directories to match to internal mwstore:// base storage paths.
$wgRCChangedSizeThreshold
If the difference between the character counts of the text before and after the edit is below that va...
$wgObjectCacheSessionExpiry
The expiry time to use for session storage, in seconds.
$wgAjaxUploadDestCheck
Enable AJAX check for file overwrite, pre-upload.
$wgWhitelistRead
Pages anonymous user may see, set as an array of pages titles.
$wgInvalidUsernameCharacters
Characters to prevent during new account creations.
$wgAllowExternalImagesFrom
If the above is false, you can specify an exception here.
$wgUploadNavigationUrl
Point the upload navigation link to an external URL Useful if you want to use a shared repository by ...
$wgArticlePath
The URL path for primary article page views.
$wgDeprecationReleaseLimit
Release limitation to wfDeprecated warnings, if set to a release number development warnings will not...
$wgDBmysql5
Set to true to engage MySQL 4.1/5.0 charset-related features; for now will just cause sending of 'SET...
$wgSharpenReductionThreshold
Reduction in linear dimensions below which sharpening will be enabled.
$wgEnableSidebarCache
If on, the sidebar navigation links are cached for users with the current language set.
$wgUploadPath
The URL path for the images directory.
$wgCacheSharedUploads
Cache shared metadata in memcached.
$wgHooks
Global list of hooks.
$wgDBport
Database port number (for PostgreSQL and Microsoft SQL Server).
$wgEnableParserCache
Kept for extension compatibility; see $wgParserCacheType.
$wgMemCachedTimeout
Read/write timeout for MemCached server communication, in microseconds.
$wgCategoryMagicGallery
On category pages, show thumbnail gallery for images belonging to that category instead of listing th...
$wgFileBlacklist
Files with these extensions will never be allowed as uploads.
$wgExtendedLoginCookieExpiration
Default login cookie lifetime, in seconds.
$wgEnableEmail
Set to true to enable the e-mail basic features: Password reminders, etc.
$wgMaxNameChars
Maximum number of bytes in username.
$wgMemCachedDebug
If enabled, will send MemCached debugging information to $wgDebugLogFile.
$wgExtensionFunctions
A list of callback functions which are called once MediaWiki is fully initialised.
$wgServiceWiringFiles
List of service wiring files to be loaded by the default instance of MediaWikiServices.
$wgEnotifImpersonal
Send a generic mail instead of a personalised mail for each user.
$wgCopyUploadsDomains
A list of domains copy uploads can come from.
$wgSearchForwardUrl
Set this to a URL to forward search requests to some external location.
$wgUpdateRowsPerJob
Number of rows to update per job.
$wgUseSquid
Enable/disable CDN.
$wgMessageCacheType
The cache type for storing the contents of the MediaWiki namespace.
$wgInterwikiMagic
Treat language links as magic connectors, not inline links.
$wgSiteStatsAsyncFactor
Set this to an integer to only do synchronous site_stats updates one every this many updates.
$wgAllowSiteCSSOnRestrictedPages
Whether to allow site-wide CSS (MediaWiki:Common.css and friends) on restricted pages like Special:Us...
$wgDisableInternalSearch
Disable the internal MySQL-based search, to allow it to be implemented by an extension instead.
$wgCrossSiteAJAXdomains
Settings for incoming cross-site AJAX requests: Newer browsers support cross-site AJAX when the targe...
$wgNoFollowDomainExceptions
If this is set to an array of domains, external links to these domain names (or any subdomains) will ...
$wgShellLocale
Locale for LC_CTYPE, to work around http://bugs.php.net/bug.php?id=45132 For Unix-like operating syst...
$wgDiff3
Path to the GNU diff3 utility.
$wgAjaxLicensePreview
Enable previewing licences via AJAX.
$wgAllUnicodeFixes
Set this to always convert certain Unicode sequences to modern ones regardless of the content languag...
$wgCookiePath
Set this variable if you want to restrict cookies to a certain path within the domain specified by $w...
$wgSecureLogin
This is to let user authenticate using https when they come from http.
$wgInterwikiScopes
Specify number of domains to check for messages.
$wgDjvuToXML
Path of the djvutoxml executable This works like djvudump except much, much slower as of version 3....
$wgUsersNotifiedOnAllChanges
Array of usernames who will be sent a notification email for every change which occurs on a wiki.
$wgCookieDomain
Set to set an explicit domain on the login cookies eg, "justthis.domain.org" or "....
$wgRCMaxAge
Recentchanges items are periodically purged; entries older than this many seconds will go.
$wgImplicitGroups
Implicit groups, aren't shown on Special:Listusers or somewhere else.
$wgTidyOpts
The command line options to the tidy binary.
$wgFeedDiffCutoff
When generating Recentchanges RSS/Atom feed, diffs will not be generated for pages larger than this s...
$wgWhitelistReadRegexp
Pages anonymous user may see, set as an array of regular expressions.
$wgAddGroups
$wgAddGroups and $wgRemoveGroups can be used to give finer control over who can assign which groups a...
$wgActions
Array of allowed values for the "title=foo&action=<action>" parameter.
$wgDebugComments
Send debug data to an HTML comment in the output.
$wgLocaltimezone
Fake out the timezone that the server thinks it's in.
$wgSkipSkins
Specify the names of skins that should not be presented in the list of available skins in user prefer...
$wgActionFilteredLogs
List of log types that can be filtered by action types.
$wgRedirectOnLogin
Allow redirection to another page when a user logs in.
$wgAuthManagerAutoConfig
$wgUserEmailUseReplyTo
Set to true to put the sending user's email in a Reply-To header instead of From.
$wgUploadBaseUrl
If set, this URL is added to the start of $wgUploadPath to form a complete upload URL.
$wgUrlProtocols
URL schemes that should be recognized as valid by wfParseUrl().
$wgEnableAsyncUploads
Enable deferred upload tasks that use the job queue.
$wgIncludeLegacyJavaScript
Whether to ensure the mediawiki.legacy library is loaded before other modules.
$wgJpegPixelFormat
At default setting of 'yuv420', JPEG thumbnails will use 4:2:0 chroma subsampling to reduce file size...
$wgDeleteRevisionsLimit
Optional to restrict deletion of pages with higher revision counts to users with the 'bigdelete' perm...
bool $wgPingback
Share data about this installation with MediaWiki developers.
$wgSpamRegex
Edits matching these regular expressions in body text will be recognised as spam and rejected automat...
$wgRCEngines
Used by RecentChange::getEngine to find the correct engine to use for a given URI scheme.
$wgPasswordExpirationDays
The number of days that a user's password is good for.
$wgSquidServers
List of proxy servers to purge on changes; default port is 80.
$wgDjvuTxt
Path of the djvutxt DJVU text extraction utility Enable this and $wgDjvuDump to enable text layer ext...
string bool $wgBotPasswordsDatabase
Database name for the bot_passwords table.
$wgAllowSchemaUpdates
Allow schema updates.
$wgBlockAllowsUTEdit
Set this to true to allow blocked users to edit their own user talk page.
$wgGroupPermissions
Permission keys given to users in each group.
string[] $wgChangeCredentialsBlacklist
List of AuthenticationRequest class names which are not changeable through Special:ChangeCredentials ...
$wgFixMalayalamUnicode
Set this to true to replace ZWJ-based chillu sequences in Malayalam text with their Unicode 5....
$wgShowExceptionDetails
If set to true, uncaught exceptions will print a complete stack trace to output.
$wgMimeTypeFile
Sets the MIME type definition file to use by MimeMagic.php.
$wgContentHandlerTextFallback
How to react if a plain text version of a non-text Content object is requested using ContentHandler::...
$wgAllowExternalImages
Whether to allow inline image pointing to other websites.
$wgMaxImageArea
The maximum number of pixels a source image can have if it is to be scaled down by a scaler that requ...
int[] $wgReauthenticateTime
Time frame for re-authentication.
$wgDBcompress
Whether to use compression in DB connection.
$wgResponsiveImages
Generate and use thumbnails suitable for screens with 1.5 and 2.0 pixel densities.
$wgReservedUsernames
Array of usernames which may not be registered or logged in from Maintenance scripts can still use th...
$wgDBWindowsAuthentication
Use Windows Authentication instead of $wgDBuser / $wgDBpassword for MS SQL Server.
$wgArticleCountMethod
Method used to determine if a page in a content namespace should be counted as a valid article.
$wgPreprocessorCacheThreshold
Preprocessor caching threshold Setting it to 'false' will disable the preprocessor cache.
$wgLocalInterwikis
Array for multiple $wgLocalInterwiki values, in case there are several interwiki prefixes that point ...
$wgVersion
MediaWiki version number.
$wgEnableUploads
Uploads have to be specially set up to be secure.
$wgDebugRawPage
If true, log debugging data from action=raw and load.php.
$wgAllowJavaUploads
Allow Java archive uploads.
$wgResourceLoaderMaxage
Maximum time in seconds to cache resources served by ResourceLoader.
$wgUploadDialog
Configuration for file uploads using the embeddable upload dialog (https://www.mediawiki....
$wgMemCachedServers
The list of MemCached servers and port numbers.
$wgShowDebug
Display debug data at the bottom of the main content area.
$wgExperimentalHtmlIds
Should we allow a broader set of characters in id attributes, per HTML5? If not, use only HTML 4-comp...
$wgInvalidPasswordReset
Specifies if users should be sent to a password-reset form on login, if their password doesn't meet t...
$wgLocalFileRepo
File repository structures.
$wgWantedPagesThreshold
Number of links to a page required before it is deemed "wanted".
$wgEnableMagicLinks
Enable the magic links feature of automatically turning ISBN xxx, PMID xxx, RFC xxx into links.
$wgExportMaxLinkDepth
If non-zero, Special:Export accepts a "pagelink-depth" parameter up to this specified level,...
$wgBlockDisablesLogin
If true, blocked users will not be allowed to login.
$wgParserOutputHooks
Parser output hooks.
$wgRCLinkLimits
List of Limits options to list in the Special:Recentchanges and Special:Recentchangeslinked pages.
$wgMWLoggerDefaultSpi
Default service provider for creating Psr\Log\LoggerInterface instances.
$wgQueryCacheLimit
Number of rows to cache in 'querycache' table when miser mode is on.
$wgResourceLoaderStorageVersion
Cache version for client-side ResourceLoader module storage.
$wgDefaultSkin
Default skin, for new users and anonymous visitors.
$wgStatsdServer
Destination of statsd metrics.
$wgDeletedDirectory
What directory to place deleted uploads in.
$wgSharpenParameter
Sharpening parameter to ImageMagick.
$wgScriptPath
The path we should point to.
$wgAllowImageTag
A different approach to the above: simply allow the "<img>" tag to be used.
$wgSquidMaxage
Cache TTL for the CDN sent as s-maxage (without ESI) or Surrogate-Control (with ESI).
$wgDataCenterUpdateStickTTL
After a state-changing request is done by a client, this determines how many seconds that client shou...
$wgWANObjectCaches
Advanced WAN object cache configuration.
$wgMaxAnimatedGifArea
Force thumbnailing of animated GIFs above this size to a single frame instead of an animated thumbnai...
$wgAjaxEditStash
Have clients send edits to be prepared when filling in edit summaries.
$wgDjvuPostProcessor
Shell command for the DJVU post processor Default: pnmtojpeg, since ddjvu generates ppm output Set th...
$wgEmailConfirmToEdit
Should editors be required to have a validated e-mail address before being allowed to edit?
$wgFeedClasses
Available feeds objects.
$wgSearchType
Search type.
$wgUnwatchedPageSecret
If active watchers (per above) are this number or less, do not disclose it.
$wgAPIRequestLog
Log file or URL (TCP or UDP) to log API requests to, or false to disable API request logging.
$wgShowArchiveThumbnails
Show thumbnails for old images on the image description page.
$wgSpecialVersionShowHooks
Show the contents of $wgHooks in Special:Version.
$wgSearchHighlightBoundaries
Regexp to match word boundaries, defaults for non-CJK languages should be empty for CJK since the wor...
$wgAuth $wgAuth
Authentication plugin.
$wgAllowHTMLEmail
For parts of the system that have been updated to provide HTML email content, send both text and HTML...
$wgConf
wgConf hold the site configuration.
$wgPoolCounterConf
Configuration for processing pool control, for use in high-traffic wikis.
$wgRevokePermissions
Permission keys revoked from users in each group.
bool $wgAssumeProxiesUseDefaultProtocolPorts
When the wiki is running behind a proxy and this is set to true, assumes that the proxy exposes the w...
$wgAPIFormatModules
API format module extensions.
string[] $wgRemoveCredentialsBlacklist
List of AuthenticationRequest class names which are not removable through Special:RemoveCredentials a...
$wgSharedUploadDBname
DB name with metadata about shared directory.
$wgMainStash
Main object stash type.
$wgSlaveLagCritical
$wgApiFrameOptions
Disallow framing of API pages directly, by setting the X-Frame-Options header.
$wgTranscludeCacheExpiry
Expiry time for transcluded templates cached in transcache database table.
$wgParserConf
Parser configuration.
$wgRCShowChangedSize
Show the amount of changed characters in recent changes.
$wgExternalStores
External stores allow including content from non database sources following URL links.
$wgExportAllowHistory
If set to false, disables the full-history option on Special:Export.
$wgCSPFalsePositiveUrls
List of urls which appear often to be triggering CSP reports but do not appear to be caused by actual...
$wgThumbnailEpoch
If rendered thumbnail files are older than this timestamp, they will be rerendered on demand as if th...
$wgDebugTimestamps
Prefix debug messages with relative timestamp.
$wgMimeInfoFile
Sets the MIME type info file to use by MimeMagic.php.
$wgExtensionAssetsPath
The URL path of the extensions directory.
$wgEnableDnsBlacklist
Whether to use DNS blacklists in $wgDnsBlacklistUrls to check for open proxies.
$wgDebugToolbar
Display the new debugging toolbar.
$wgUseImageMagick
Resizing can be done using PHP's internal image libraries or using ImageMagick or another third-party...
$wgAsyncHTTPTimeout
Timeout for Asynchronous (background) HTTP requests, in seconds.
$wgUseMediaWikiUIEverywhere
Temporary variable that applies MediaWiki UI wherever it can be supported.
$wgHideUserContribLimit
The maximum number of edits a user can have and can still be hidden by users with the hideuser permis...
$wgJpegTran
used for lossless jpeg rotation
$wgMaxSigChars
Maximum number of Unicode characters in signature.
$wgPasswordDefault
Default password type to use when hashing user passwords.
$wgStrictFileExtensions
If this is turned off, users may override the warning for files not covered by $wgFileExtensions.
$wgDBTableOptions
MySQL table options to use during installation or update.
$wgVariantArticlePath
Like $wgArticlePath, but on multi-variant wikis, this provides a path format that describes which par...
$wgForeignFileRepos
$wgUseCategoryBrowser
Use experimental, DMOZ-like category browser.
$wgRepositoryBaseUrl
Base URL for a repository wiki.
$wgMemCachedPersistent
Use persistent connections to MemCached, which are shared across multiple requests.
$wgFilterLogTypes
Show/hide links on Special:Log will be shown for these log types.
$wgShowDBErrorBacktrace
If true, show a backtrace for database errors.
$wgLogHeaders
Lists the message key string for descriptive text to be shown at the top of each log type.
$wgUseESI
If you run Squid3 with ESI support, enable this (default:false):
$wgVaryOnXFP
Add X-Forwarded-Proto to the Vary and Key headers for API requests and RSS/Atom feeds.
$wgDebugLogGroups
Map of string log group names to log destinations.
$wgSVGConverterPath
If not in the executable PATH, specify the SVG converter path.
$wgSharedDB
Shared database for multiple wikis.
$wgPasswordConfig
Configuration for built-in password types.
$wgSessionCacheType
The cache type for storing session data.
$wgSharedUploadDBprefix
Optional table prefix used in database.
$wgExtensionDirectory
Filesystem extensions directory.
$wgEnotifMinorEdits
Potentially send notification mails on minor edits to pages.
$wgStatsdSamplingRates
Sampling rate for statsd metrics as an associative array of patterns and rates.
$wgEnableScaryTranscluding
Enable interwiki transcluding.
$wgDebugDumpSql
Write SQL queries to the debug log.
$wgExternalLinkTarget
Set a default target for external links, e.g.
$wgDummyLanguageCodes
List of language codes that don't correspond to an actual language.
$wgMimeTypeBlacklist
Files with these MIME types will never be allowed as uploads if $wgVerifyMimeType is enabled.
$wgSearchTypeAlternatives
Alternative search types Sometimes you want to support multiple search engines for testing.
$wgExiv2Command
Some tests and extensions use exiv2 to manipulate the Exif metadata in some image formats.
$wgAllowSlowParserFunctions
Enable slow parser functions.
bool[] $wgAllowSecuritySensitiveOperationIfCannotReauthenticate
Whether to allow security-sensitive operations when re-authentication is not possible.
$wgAttemptFailureEpoch
Certain operations are avoided if there were too many recent failures, for example,...
float[] $wgJobBackoffThrottling
Map of job types to how many job "work items" should be run per second on each job runner process.
$wgFetchCommonsDescriptions
Fetch commons image description pages and display them on the local wiki?
$wgDBserver
Database host name or IP address.
$wgRecentChangesFlags
Flags (letter symbols) shown in recent changes and watchlist to indicate certain types of edits.
$wgSquidPurgeUseHostHeader
Whether to use a Host header in purge requests sent to the proxy servers configured in $wgSquidServer...
$wgLoadScript
The URL path to load.php.
$wgDnsBlacklistUrls
List of DNS blacklists to use, if $wgEnableDnsBlacklist is true.
$wgCookieSecure
Whether the "secure" flag should be set on the cookie.
$wgUseTwoButtonsSearchForm
Search form behavior.
$wgDebugRedirects
If true, instead of redirecting, show a page with a link to the redirect destination.
$wgEnableAPI
Enable the MediaWiki API for convenient access to machine-readable data via api.php.
$wgAPIModules
API module extensions.
$wgSpecialPageCacheUpdates
Additional functions to be performed with updateSpecialPages.
$wgOpenSearchDescriptionLength
Minimum length of extract in .
$wgResourceLoaderValidateJS
If set to true, JavaScript modules loaded from wiki pages will be parsed prior to minification to val...
$wgSMTP
SMTP Mode.
$wgLanguageConverterCacheType
The cache type for storing language conversion tables, which are used when parsing certain text and i...
$wgCanonicalServer
Canonical URL of the server, to use in IRC feeds and notification e-mails.
$wgMiserMode
Disable database-intensive features.
$wgOverrideSiteFeed
Override the site's default RSS/ATOM feed for recentchanges that appears on every page.
$wgAutoConfirmAge
Number of seconds an account is required to age before it's given the implicit 'autoconfirm' group me...
$wgCacheVaryCookies
A list of cookies that vary the cache (for use by extensions)
$wgNamespaceAliases
Namespace aliases.
bool array string $wgInterwikiCache
Interwiki cache, either as an associative array or a path to a constant database (....
$wgTrivialMimeDetection
Switch for trivial MIME detection.
$wgStylePath
The URL path of the skins directory.
$wgDjvuDump
Path of the djvudump executable Enable this and $wgDjvuRenderer to enable djvu rendering example: $wg...
$wgServer
URL of the server.
$wgDBssl
Whether to use SSL in DB connection.
$wgRCFilterByAge
Filter $wgRCLinkDays by $wgRCMaxAge to avoid showing links for numbers higher than what will be store...
$wgUploadThumbnailRenderMethod
The method through which the thumbnails will be prerendered for the entries in $wgUploadThumbnailRend...
$wgMinimalPasswordLength
Specifies the minimal length of a user password.
$wgUploadThumbnailRenderHttpCustomDomain
When using the "http" wgUploadThumbnailRenderMethod, lets one specify a custom domain to send the HTT...
$wgRCWatchCategoryMembership
Treat category membership changes as a RecentChange.
$wgFeed
Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages.
$wgXhtmlDefaultNamespace
The default xmlns attribute.
$wgWatchersMaxAge
Page watchers inactive for more than this many seconds are considered inactive.
$wgSessionPbkdf2Iterations
Number of internal PBKDF2 iterations to use when deriving session secrets.
$wgRunJobsAsync
When $wgJobRunRate > 0, try to run jobs asynchronously, spawning a new process to handle the job exec...
$wgMetaNamespace
Name of the project namespace.
$wgExtensionCredits
An array of information about installed extensions keyed by their type.
$wgEmailAuthentication
Require email authentication before sending mail to an email address.
$wgLogo
The URL path of the wiki logo.
$wgDevelopmentWarnings
If set to true MediaWiki will throw notices for some possible error conditions and for deprecated fun...
$wgEdititis
Display user edit counts in various prominent places.
bool $wgSearchRunSuggestedQuery
Controls whether zero-result search queries with suggestions should display results for these suggest...
$wgStyleSheetPath
The URL path to index.php.
$wgJobClasses
Maps jobs to their handling classes; extensions can add to this to provide custom jobs.
$wgHtml5
Previously used to determine if we should output an HTML5 doctype.
$wgTrustedMediaFormats
list of trusted media-types and MIME types.
$wgNamespaceContentModels
Associative array mapping namespace IDs to the name of the content model pages in that namespace shou...
$wgSVGConverters
Scalable Vector Graphics (SVG) may be uploaded as images.
$wgUseFileCache
This will cache static pages for non-logged-in users to reduce database traffic on public sites.
$wgMaxUploadSize
Max size for uploads, in bytes.
$wgHtml5Version
Defines the value of the version attribute in the <html> tag, if any.
$wgExceptionHooks
Hooks that are used for outputting exceptions.
$wgSessionSecret
Secret for session storage.
$wgOpenSearchDefaultLimit
Integer defining default number of entries to show on OpenSearch call.
$wgMaxCredits
Set this to the number of authors that you want to be credited below an article text.
$wgSharedSchema
$wgSysopEmailBans
Allow sysops to ban users from accessing Emailuser.
$wgEditPageFrameOptions
The X-Frame-Options header to send on pages sensitive to clickjacking attacks, such as edit pages.
$wgDebugLogFile
Filename for debug logging.
$wgAccountCreationThrottle
Number of accounts each IP address may create per specified period(s).
$wgSessionInsecureSecrets
If for some reason you can't install the PHP OpenSSL or mcrypt extensions, you can set this to true t...
$wgForceUIMsgAsContentMsg
When translating messages with wfMessage(), it is not always clear what should be considered UI messa...
$wgPasswordSender
Sender email address for e-mail notifications.
$wgLogActionsHandlers
The same as above, but here values are names of classes, not messages.
$wgDBOracleDRCP
Set true to enable Oracle DCRP (supported from 11gR1 onward)
$wgRateLimits
Simple rate limiter options to brake edit floods.
$wgNamespacesToBeSearchedDefault
List of namespaces which are searched by default.
$wgEnableCanonicalServerLink
Output a <link rel="canonical"> tag on every page indicating the canonical server which should be use...
$wgPasswordReminderResendTime
Minimum time, in hours, which must elapse between password reminder emails for a given account.
$wgUpdateRowsPerQuery
Number of rows to update per query.
$wgUploadThumbnailRenderMap
When defined, is an array of thumbnail widths to be rendered at upload time.
$wgTiffThumbnailType
Browsers don't support TIFF inline generally... For inline display, we need to convert to PNG or JPEG...
$wgCopyUploadProxy
Proxy to use for copy upload requests.
$wgSVGMetadataCutoff
Don't read SVG metadata beyond this point.
$wgXhtmlNamespaces
Permit other namespaces in addition to the w3.org default.
$wgMetaNamespaceTalk
Name of the project talk namespace.
$wgExpensiveParserFunctionLimit
Maximum number of calls per parse to expensive parser functions such as PAGESINCATEGORY.
$wgLocalTZoffset
Set an offset from UTC in minutes to use for the default timezone setting for anonymous users and new...
$wgAllowTitlesInSVG
Disallow <title> element in SVG files.
$wgHTMLFormAllowTableFormat
Temporary variable that allows HTMLForms to be rendered as tables.
$wgDisableQueryPages
Disable all query pages if miser mode is on, not just some.
$wgExiftool
Path to exiftool binary.
$wgCookiePrefix
Cookies generated by MediaWiki have names starting with this prefix.
$wgContentHandlerUseDB
Set to false to disable use of the database fields introduced by the ContentHandler facility.
$wgResourceModuleSkinStyles
Skin-specific styles for resource modules.
$wgAPIMaxDBRows
Maximum amount of rows to scan in a DB query in the API The default value is generally fine.
$wgExtraLanguageNames
List of language names or overrides for default names in Names.php.
$wgSharedPrefix
$wgHTCPMulticastTTL
HTCP multicast TTL.
$wgLBFactoryConf
Load balancer factory configuration To set up a multi-master wiki farm, set the class here to somethi...
$wgSessionsInMemcached
Deprecated alias for $wgSessionsInObjectCache.
$wgMsgCacheExpiry
Expiry time for the message cache key.
string bool $wgBotPasswordsCluster
Cluster for the bot_passwords table If false, the normal cluster will be used.
$wgEventRelayerConfig
Mapping of event channels (or channel categories) to EventRelayer configuration.
$wgImportTargetNamespace
Optional default target namespace for interwiki imports.
Array $wgGrantPermissionGroups
Map of grants to their UI grouping.
$wgRightsPage
Override for copyright metadata.
$wgAPICacheHelpTimeout
Set the timeout for the API help text cache.
$wgMainWANCache
Main Wide-Area-Network cache type.
$wgMaxShellTime
Maximum CPU time in seconds for shell processes under Linux.
$wgPagePropsHaveSortkey
Whether the page_props table has a pp_sortkey column.
$wgDebugPrintHttpHeaders
Print HTTP headers for every request in the debug information.
$wgLocalisationCacheConf
Localisation cache configuration.
$wgMaxTocLevel
Maximum indent level of toc.
$wgUseSharedUploads
If you operate multiple wikis, you can define a shared upload path here.
$wgCopyUploadTimeout
Different timeout for upload by url This could be useful since when fetching large files,...
$wgOpenSearchTemplates
Templates for OpenSearch suggestions, defaults to API action=opensearch.
$wgLinkHolderBatchSize
LinkHolderArray batch size For debugging.
$wgSearchSuggestCacheExpiry
Expiry time for search suggestion responses.
$wgAutopromoteOnce
Automatically add a usergroup to any user who matches certain conditions.
$wgMimeDetectorCommand
Sets an external MIME detector program.
$wgContentHandlers
Plugins for page content model handling.
$wgHttpsPort
Port where you have HTTPS running Supports HTTPS on non-standard ports.
$wgCopyUploadsFromSpecialUpload
Enable copy uploads from Special:Upload.
$wgImageMagickConvertCommand
The convert command shipped with ImageMagick.
$wgUsePrivateIPs
Should forwarded Private IPs be accepted?
$wgSiteSupportPage
If this is set, a "donate" link will appear in the sidebar.
$wgGitBin
Fully specified path to git binary.
$wgExternalDiffEngine
Name of the external diff engine to use.
$wgFixArabicUnicode
Set this to true to replace Arabic presentation forms with their standard forms in the U+0600-U+06FF ...
$wgAjaxExportList
List of Ajax-callable functions.
$wgLangObjCacheSize
Language cache size, or really how many languages can we handle simultaneously without degrading to c...
$wgDiff
Path to the GNU diff utility.
$wgDBpassword
Database user's password.
$wgFavicon
The URL path of the shortcut icon.
$wgShowEXIF
Show Exif data, on by default if available.
$wgTidyConfig
Configuration for HTML postprocessing tool.
float bool $wgJobSerialCommitThreshold
Make job runners commit changes for replica DB-lag prone jobs one job at a time.
$wgAllowCopyUploads
Allow for upload to be copied from an URL.
$wgUseSiteJs
Use the site's Javascript page?
$wgRCLinkDays
List of Days options to list in the Special:Recentchanges and Special:Recentchangeslinked pages.
$wgShowSQLErrors
Whether to show "we're sorry, but there has been a database error" pages.
$wgEnotifUseRealName
Use real name instead of username in e-mail "from" field.
$wgLogoHD
Array with URL paths to HD versions of the wiki logo.
$wgNewUserLog
Maintain a log of newusers at Log/newusers?
$wgTextModelsToParse
Determines which types of text are parsed as wikitext.
$wgDisableTitleConversion
Whether to enable language variant conversion for links.
$wgSpecialPages
Special page list.
global $wgCommandLineMode
Definition Setup.php:495
$IP
Definition WebStart.php:58
Value object for representing interwiki records.
Definition Interwiki.php:27
Dynamic JavaScript and CSS resource loading system.
This is a class for holding configuration settings, particularly for multi-wiki sites.
The ContentHandler facility adds support for arbitrary content types on wiki pages
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types as usual *javascript user provided javascript code *json simple implementation for use by extensions
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition design.txt:18
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Wikitext formatted, in the key only.
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
Definition globals.txt:10
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration settings
Definition globals.txt:37
const AV_SCAN_FAILED
Definition Defines.php:108
const AV_VIRUS_FOUND
Definition Defines.php:106
const APCOND_AGE
Definition Defines.php:210
const NS_HELP
Definition Defines.php:68
const NS_USER
Definition Defines.php:58
const CONTENT_MODEL_CSS
Definition Defines.php:241
const CACHE_NONE
Definition Defines.php:94
const CACHE_ANYTHING
Definition Defines.php:93
const NS_MEDIAWIKI_TALK
Definition Defines.php:65
const NS_MAIN
Definition Defines.php:56
const NS_PROJECT_TALK
Definition Defines.php:61
const NS_MEDIAWIKI
Definition Defines.php:64
const CACHE_ACCEL
Definition Defines.php:97
const NS_FILE_TALK
Definition Defines.php:63
const CONTENT_MODEL_WIKITEXT
Definition Defines.php:239
const CONTENT_MODEL_JSON
Definition Defines.php:243
const NS_HELP_TALK
Definition Defines.php:69
const NS_CATEGORY_TALK
Definition Defines.php:71
const CACHE_MEMCACHED
Definition Defines.php:96
const CONTENT_MODEL_TEXT
Definition Defines.php:242
const CACHE_DB
Definition Defines.php:95
const AV_SCAN_ABORTED
Definition Defines.php:107
const APCOND_EDITCOUNT
Definition Defines.php:209
const NS_TALK
Definition Defines.php:57
const AV_NO_VIRUS
Definition Defines.php:105
const NS_USER_TALK
Definition Defines.php:59
const NS_PROJECT
Definition Defines.php:60
const NS_CATEGORY
Definition Defines.php:70
const CONTENT_MODEL_JAVASCRIPT
Definition Defines.php:240
const NS_TEMPLATE_TALK
Definition Defines.php:67
the array() calling protocol came about after MediaWiki 1.4rc1.
For QUnit the mediawiki tests qunit testrunner dependency will be added to any module it s the URL of the revision text in external storage
Definition hooks.txt:2706
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a message
Definition hooks.txt:2097
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return true
Definition hooks.txt:1950
if the prop value should be in the metadata multi language array format
Definition hooks.txt:1620
We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
Definition hooks.txt:108
processing should stop and the error should be shown to the user * false
Definition hooks.txt:189
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
you have access to all of the normal MediaWiki so you can get a DB use the cache
MediaWiki has optional support for a high performance
Definition memcached.txt:1
CACHE_MEMCACHED $wgMainCacheType
Definition memcached.txt:63
storage can be distributed across multiple and multiple web servers can use the same cache cluster *********************W A R N I N G ***********************Memcached has no security or authentication Please ensure that your server is appropriately and that the anyone on the internet can put data into and read data from your cache An attacker familiar with MediaWiki internals could use this to steal passwords and email addresses
Definition memcached.txt:43
const MEDIATYPE_VIDEO
Definition defines.php:35
const MEDIATYPE_AUDIO
Definition defines.php:32
const MEDIATYPE_BITMAP
Definition defines.php:28
title