Made ReplicatedBagOStuff wrapping the SQL class the default stash
[lhc/web/wiklou.git] / includes / DefaultSettings.php
1 <?php
2 /**
3 * Default values for MediaWiki configuration settings.
4 *
5 *
6 * NEVER EDIT THIS FILE
7 *
8 *
9 * To customize your installation, edit "LocalSettings.php". If you make
10 * changes here, they will be lost on next upgrade of MediaWiki!
11 *
12 * In this file, variables whose default values depend on other
13 * variables are set to false. The actual default value of these variables
14 * will only be set in Setup.php, taking into account any custom settings
15 * performed in LocalSettings.php.
16 *
17 * Documentation is in the source and on:
18 * https://www.mediawiki.org/wiki/Manual:Configuration_settings
19 *
20 * @warning Note: this (and other things) will break if the autoloader is not
21 * enabled. Please include includes/AutoLoader.php before including this file.
22 *
23 * This program is free software; you can redistribute it and/or modify
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation; either version 2 of the License, or
26 * (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public License along
34 * with this program; if not, write to the Free Software Foundation, Inc.,
35 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
36 * http://www.gnu.org/copyleft/gpl.html
37 *
38 * @file
39 */
40
41 /**
42 * @defgroup Globalsettings Global settings
43 */
44
45 /**
46 * @cond file_level_code
47 * This is not a valid entry point, perform no further processing unless
48 * MEDIAWIKI is defined
49 */
50 if ( !defined( 'MEDIAWIKI' ) ) {
51 echo "This file is part of MediaWiki and is not a valid entry point\n";
52 die( 1 );
53 }
54
55 /** @endcond */
56
57 /**
58 * wgConf hold the site configuration.
59 * Not used for much in a default install.
60 * @since 1.5
61 */
62 $wgConf = new SiteConfiguration;
63
64 /**
65 * Registry of factory functions to create config objects:
66 * The 'main' key must be set, and the value should be a valid
67 * callable.
68 * @since 1.23
69 */
70 $wgConfigRegistry = array(
71 'main' => 'GlobalVarConfig::newInstance'
72 );
73
74 /**
75 * MediaWiki version number
76 * @since 1.2
77 */
78 $wgVersion = '1.26alpha';
79
80 /**
81 * Name of the site. It must be changed in LocalSettings.php
82 */
83 $wgSitename = 'MediaWiki';
84
85 /**
86 * URL of the server.
87 *
88 * @par Example:
89 * @code
90 * $wgServer = 'http://example.com';
91 * @endcode
92 *
93 * This is usually detected correctly by MediaWiki. If MediaWiki detects the
94 * wrong server, it will redirect incorrectly after you save a page. In that
95 * case, set this variable to fix it.
96 *
97 * If you want to use protocol-relative URLs on your wiki, set this to a
98 * protocol-relative URL like '//example.com' and set $wgCanonicalServer
99 * to a fully qualified URL.
100 */
101 $wgServer = WebRequest::detectServer();
102
103 /**
104 * Canonical URL of the server, to use in IRC feeds and notification e-mails.
105 * Must be fully qualified, even if $wgServer is protocol-relative.
106 *
107 * Defaults to $wgServer, expanded to a fully qualified http:// URL if needed.
108 * @since 1.18
109 */
110 $wgCanonicalServer = false;
111
112 /**
113 * Server name. This is automatically computed by parsing the bare
114 * hostname out of $wgCanonicalServer. It should not be customized.
115 * @since 1.24
116 */
117 $wgServerName = false;
118
119 /************************************************************************//**
120 * @name Script path settings
121 * @{
122 */
123
124 /**
125 * The path we should point to.
126 * It might be a virtual path in case with use apache mod_rewrite for example.
127 *
128 * This *needs* to be set correctly.
129 *
130 * Other paths will be set to defaults based on it unless they are directly
131 * set in LocalSettings.php
132 */
133 $wgScriptPath = '/wiki';
134
135 /**
136 * Whether to support URLs like index.php/Page_title These often break when PHP
137 * is set up in CGI mode. PATH_INFO *may* be correct if cgi.fix_pathinfo is set,
138 * but then again it may not; lighttpd converts incoming path data to lowercase
139 * on systems with case-insensitive filesystems, and there have been reports of
140 * problems on Apache as well.
141 *
142 * To be safe we'll continue to keep it off by default.
143 *
144 * Override this to false if $_SERVER['PATH_INFO'] contains unexpectedly
145 * incorrect garbage, or to true if it is really correct.
146 *
147 * The default $wgArticlePath will be set based on this value at runtime, but if
148 * you have customized it, having this incorrectly set to true can cause
149 * redirect loops when "pretty URLs" are used.
150 * @since 1.2.1
151 */
152 $wgUsePathInfo = ( strpos( PHP_SAPI, 'cgi' ) === false ) &&
153 ( strpos( PHP_SAPI, 'apache2filter' ) === false ) &&
154 ( strpos( PHP_SAPI, 'isapi' ) === false );
155
156 /**
157 * The extension to append to script names by default.
158 *
159 * Some hosting providers used PHP 4 for *.php files, and PHP 5 for *.php5.
160 * This variable was provided to support those providers.
161 *
162 * @since 1.11
163 * @deprecated since 1.25; support for '.php5' is being phased out of MediaWiki
164 * proper. Backward-compatibility can be maintained by configuring your web
165 * server to rewrite URLs. See RELEASE-NOTES for details.
166 */
167 $wgScriptExtension = '.php';
168
169 /**@}*/
170
171 /************************************************************************//**
172 * @name URLs and file paths
173 *
174 * These various web and file path variables are set to their defaults
175 * in Setup.php if they are not explicitly set from LocalSettings.php.
176 *
177 * These will relatively rarely need to be set manually, unless you are
178 * splitting style sheets or images outside the main document root.
179 *
180 * In this section, a "path" is usually a host-relative URL, i.e. a URL without
181 * the host part, that starts with a slash. In most cases a full URL is also
182 * acceptable. A "directory" is a local file path.
183 *
184 * In both paths and directories, trailing slashes should not be included.
185 *
186 * @{
187 */
188
189 /**
190 * The URL path to index.php.
191 *
192 * Defaults to "{$wgScriptPath}/index{$wgScriptExtension}".
193 */
194 $wgScript = false;
195
196 /**
197 * The URL path to load.php.
198 *
199 * Defaults to "{$wgScriptPath}/load{$wgScriptExtension}".
200 * @since 1.17
201 */
202 $wgLoadScript = false;
203
204 /**
205 * The URL path of the skins directory.
206 * Defaults to "{$wgScriptPath}/skins".
207 * @since 1.3
208 */
209 $wgStylePath = false;
210 $wgStyleSheetPath = &$wgStylePath;
211
212 /**
213 * The URL path of the skins directory. Should not point to an external domain.
214 * Defaults to "{$wgScriptPath}/skins".
215 * @since 1.17
216 */
217 $wgLocalStylePath = false;
218
219 /**
220 * The URL path of the extensions directory.
221 * Defaults to "{$wgScriptPath}/extensions".
222 * @since 1.16
223 */
224 $wgExtensionAssetsPath = false;
225
226 /**
227 * Filesystem extensions directory.
228 * Defaults to "{$IP}/extensions".
229 * @since 1.25
230 */
231 $wgExtensionDirectory = "{$IP}/extensions";
232
233 /**
234 * Filesystem stylesheets directory.
235 * Defaults to "{$IP}/skins".
236 * @since 1.3
237 */
238 $wgStyleDirectory = "{$IP}/skins";
239
240 /**
241 * The URL path for primary article page views. This path should contain $1,
242 * which is replaced by the article title.
243 *
244 * Defaults to "{$wgScript}/$1" or "{$wgScript}?title=$1",
245 * depending on $wgUsePathInfo.
246 */
247 $wgArticlePath = false;
248
249 /**
250 * The URL path for the images directory.
251 * Defaults to "{$wgScriptPath}/images".
252 */
253 $wgUploadPath = false;
254
255 /**
256 * The filesystem path of the images directory. Defaults to "{$IP}/images".
257 */
258 $wgUploadDirectory = false;
259
260 /**
261 * Directory where the cached page will be saved.
262 * Defaults to "{$wgUploadDirectory}/cache".
263 */
264 $wgFileCacheDirectory = false;
265
266 /**
267 * The URL path of the wiki logo. The logo size should be 135x135 pixels.
268 * Defaults to "$wgResourceBasePath/resources/assets/wiki.png".
269 */
270 $wgLogo = false;
271
272 /**
273 * Array with URL paths to HD versions of the wiki logo. The scaled logo size
274 * should be under 135x155 pixels.
275 * Only 1.5x and 2x versions are supported.
276 *
277 * @par Example:
278 * @code
279 * $wgLogoHD = array(
280 * "1.5x" => "path/to/1.5x_version.png",
281 * "2x" => "path/to/2x_version.png"
282 * );
283 * @endcode
284 *
285 * @since 1.25
286 */
287 $wgLogoHD = false;
288
289 /**
290 * The URL path of the shortcut icon.
291 * @since 1.6
292 */
293 $wgFavicon = '/favicon.ico';
294
295 /**
296 * The URL path of the icon for iPhone and iPod Touch web app bookmarks.
297 * Defaults to no icon.
298 * @since 1.12
299 */
300 $wgAppleTouchIcon = false;
301
302 /**
303 * Value for the referrer policy meta tag.
304 * One of 'never', 'default', 'origin', 'always'. Setting it to false just
305 * prevents the meta tag from being output.
306 * See http://www.w3.org/TR/referrer-policy/ for details.
307 *
308 * @since 1.25
309 */
310 $wgReferrerPolicy = false;
311
312 /**
313 * The local filesystem path to a temporary directory. This is not required to
314 * be web accessible.
315 *
316 * When this setting is set to false, its value will be set through a call
317 * to wfTempDir(). See that methods implementation for the actual detection
318 * logic.
319 *
320 * Developers should use the global function wfTempDir() instead of this
321 * variable.
322 *
323 * @see wfTempDir()
324 * @note Default changed to false in MediaWiki 1.20.
325 */
326 $wgTmpDirectory = false;
327
328 /**
329 * If set, this URL is added to the start of $wgUploadPath to form a complete
330 * upload URL.
331 * @since 1.4
332 */
333 $wgUploadBaseUrl = '';
334
335 /**
336 * To enable remote on-demand scaling, set this to the thumbnail base URL.
337 * Full thumbnail URL will be like $wgUploadStashScalerBaseUrl/e/e6/Foo.jpg/123px-Foo.jpg
338 * where 'e6' are the first two characters of the MD5 hash of the file name.
339 * If $wgUploadStashScalerBaseUrl is set to false, thumbs are rendered locally as needed.
340 * @since 1.17
341 */
342 $wgUploadStashScalerBaseUrl = false;
343
344 /**
345 * To set 'pretty' URL paths for actions other than
346 * plain page views, add to this array.
347 *
348 * @par Example:
349 * Set pretty URL for the edit action:
350 * @code
351 * 'edit' => "$wgScriptPath/edit/$1"
352 * @endcode
353 *
354 * There must be an appropriate script or rewrite rule in place to handle these
355 * URLs.
356 * @since 1.5
357 */
358 $wgActionPaths = array();
359
360 /**@}*/
361
362 /************************************************************************//**
363 * @name Files and file uploads
364 * @{
365 */
366
367 /**
368 * Uploads have to be specially set up to be secure
369 */
370 $wgEnableUploads = false;
371
372 /**
373 * The maximum age of temporary (incomplete) uploaded files
374 */
375 $wgUploadStashMaxAge = 6 * 3600; // 6 hours
376
377 /**
378 * Allows to move images and other media files
379 */
380 $wgAllowImageMoving = true;
381
382 /**
383 * Enable deferred upload tasks that use the job queue.
384 * Only enable this if job runners are set up for both the
385 * 'AssembleUploadChunks' and 'PublishStashedFile' job types.
386 *
387 * @note If you use suhosin, this setting is incompatible with
388 * suhosin.session.encrypt.
389 */
390 $wgEnableAsyncUploads = false;
391
392 /**
393 * These are additional characters that should be replaced with '-' in filenames
394 */
395 $wgIllegalFileChars = ":";
396
397 /**
398 * What directory to place deleted uploads in.
399 * Defaults to "{$wgUploadDirectory}/deleted".
400 */
401 $wgDeletedDirectory = false;
402
403 /**
404 * Set this to true if you use img_auth and want the user to see details on why access failed.
405 */
406 $wgImgAuthDetails = false;
407
408 /**
409 * Map of relative URL directories to match to internal mwstore:// base storage paths.
410 * For img_auth.php requests, everything after "img_auth.php/" is checked to see
411 * if starts with any of the prefixes defined here. The prefixes should not overlap.
412 * The prefix that matches has a corresponding storage path, which the rest of the URL
413 * is assumed to be relative to. The file at that path (or a 404) is send to the client.
414 *
415 * Example:
416 * $wgImgAuthUrlPathMap['/timeline/'] = 'mwstore://local-fs/timeline-render/';
417 * The above maps ".../img_auth.php/timeline/X" to "mwstore://local-fs/timeline-render/".
418 * The name "local-fs" should correspond by name to an entry in $wgFileBackends.
419 *
420 * @see $wgFileBackends
421 */
422 $wgImgAuthUrlPathMap = array();
423
424 /**
425 * File repository structures
426 *
427 * $wgLocalFileRepo is a single repository structure, and $wgForeignFileRepos is
428 * an array of such structures. Each repository structure is an associative
429 * array of properties configuring the repository.
430 *
431 * Properties required for all repos:
432 * - class The class name for the repository. May come from the core or an extension.
433 * The core repository classes are FileRepo, LocalRepo, ForeignDBRepo.
434 * FSRepo is also supported for backwards compatibility.
435 *
436 * - name A unique name for the repository (but $wgLocalFileRepo should be 'local').
437 * The name should consist of alpha-numeric characters.
438 * - backend A file backend name (see $wgFileBackends).
439 *
440 * For most core repos:
441 * - zones Associative array of zone names that each map to an array with:
442 * container : backend container name the zone is in
443 * directory : root path within container for the zone
444 * url : base URL to the root of the zone
445 * urlsByExt : map of file extension types to base URLs
446 * (useful for using a different cache for videos)
447 * Zones default to using "<repo name>-<zone name>" as the container name
448 * and default to using the container root as the zone's root directory.
449 * Nesting of zone locations within other zones should be avoided.
450 * - url Public zone URL. The 'zones' settings take precedence.
451 * - hashLevels The number of directory levels for hash-based division of files
452 * - thumbScriptUrl The URL for thumb.php (optional, not recommended)
453 * - transformVia404 Whether to skip media file transformation on parse and rely on a 404
454 * handler instead.
455 * - initialCapital Equivalent to $wgCapitalLinks (or $wgCapitalLinkOverrides[NS_FILE],
456 * determines whether filenames implicitly start with a capital letter.
457 * The current implementation may give incorrect description page links
458 * when the local $wgCapitalLinks and initialCapital are mismatched.
459 * - pathDisclosureProtection
460 * May be 'paranoid' to remove all parameters from error messages, 'none' to
461 * leave the paths in unchanged, or 'simple' to replace paths with
462 * placeholders. Default for LocalRepo is 'simple'.
463 * - fileMode This allows wikis to set the file mode when uploading/moving files. Default
464 * is 0644.
465 * - directory The local filesystem directory where public files are stored. Not used for
466 * some remote repos.
467 * - thumbDir The base thumbnail directory. Defaults to "<directory>/thumb".
468 * - thumbUrl The base thumbnail URL. Defaults to "<url>/thumb".
469 * - isPrivate Set this if measures should always be taken to keep the files private.
470 * One should not trust this to assure that the files are not web readable;
471 * the server configuration should be done manually depending on the backend.
472 *
473 * These settings describe a foreign MediaWiki installation. They are optional, and will be ignored
474 * for local repositories:
475 * - descBaseUrl URL of image description pages, e.g. http://en.wikipedia.org/wiki/File:
476 * - scriptDirUrl URL of the MediaWiki installation, equivalent to $wgScriptPath, e.g.
477 * http://en.wikipedia.org/w
478 * - scriptExtension Script extension of the MediaWiki installation, equivalent to
479 * $wgScriptExtension, e.g. .php5 defaults to .php
480 *
481 * - articleUrl Equivalent to $wgArticlePath, e.g. http://en.wikipedia.org/wiki/$1
482 * - fetchDescription Fetch the text of the remote file description page. Equivalent to
483 * $wgFetchCommonsDescriptions.
484 * - abbrvThreshold File names over this size will use the short form of thumbnail names.
485 * Short thumbnail names only have the width, parameters, and the extension.
486 *
487 * ForeignDBRepo:
488 * - dbType, dbServer, dbUser, dbPassword, dbName, dbFlags
489 * equivalent to the corresponding member of $wgDBservers
490 * - tablePrefix Table prefix, the foreign wiki's $wgDBprefix
491 * - hasSharedCache True if the wiki's shared cache is accessible via the local $wgMemc
492 *
493 * ForeignAPIRepo:
494 * - apibase Use for the foreign API's URL
495 * - apiThumbCacheExpiry How long to locally cache thumbs for
496 *
497 * If you leave $wgLocalFileRepo set to false, Setup will fill in appropriate values.
498 * Otherwise, set $wgLocalFileRepo to a repository structure as described above.
499 * If you set $wgUseInstantCommons to true, it will add an entry for Commons.
500 * If you set $wgForeignFileRepos to an array of repository structures, those will
501 * be searched after the local file repo.
502 * Otherwise, you will only have access to local media files.
503 *
504 * @see Setup.php for an example usage and default initialization.
505 */
506 $wgLocalFileRepo = false;
507
508 /**
509 * @see $wgLocalFileRepo
510 */
511 $wgForeignFileRepos = array();
512
513 /**
514 * Use Commons as a remote file repository. Essentially a wrapper, when this
515 * is enabled $wgForeignFileRepos will point at Commons with a set of default
516 * settings
517 */
518 $wgUseInstantCommons = false;
519
520 /**
521 * File backend structure configuration.
522 *
523 * This is an array of file backend configuration arrays.
524 * Each backend configuration has the following parameters:
525 * - 'name' : A unique name for the backend
526 * - 'class' : The file backend class to use
527 * - 'wikiId' : A unique string that identifies the wiki (container prefix)
528 * - 'lockManager' : The name of a lock manager (see $wgLockManagers)
529 *
530 * See FileBackend::__construct() for more details.
531 * Additional parameters are specific to the file backend class used.
532 * These settings should be global to all wikis when possible.
533 *
534 * There are two particularly important aspects about each backend:
535 * - a) Whether it is fully qualified or wiki-relative.
536 * By default, the paths of files are relative to the current wiki,
537 * which works via prefixing them with the current wiki ID when accessed.
538 * Setting 'wikiId' forces the backend to be fully qualified by prefixing
539 * all paths with the specified value instead. This can be useful if
540 * multiple wikis need to share the same data. Note that 'name' is *not*
541 * part of any prefix and thus should not be relied upon for namespacing.
542 * - b) Whether it is only defined for some wikis or is defined on all
543 * wikis in the wiki farm. Defining a backend globally is useful
544 * if multiple wikis need to share the same data.
545 * One should be aware of these aspects when configuring a backend for use with
546 * any basic feature or plugin. For example, suppose an extension stores data for
547 * different wikis in different directories and sometimes needs to access data from
548 * a foreign wiki's directory in order to render a page on given wiki. The extension
549 * would need a fully qualified backend that is defined on all wikis in the wiki farm.
550 */
551 $wgFileBackends = array();
552
553 /**
554 * Array of configuration arrays for each lock manager.
555 * Each backend configuration has the following parameters:
556 * - 'name' : A unique name for the lock manager
557 * - 'class' : The lock manger class to use
558 *
559 * See LockManager::__construct() for more details.
560 * Additional parameters are specific to the lock manager class used.
561 * These settings should be global to all wikis.
562 */
563 $wgLockManagers = array();
564
565 /**
566 * Show Exif data, on by default if available.
567 * Requires PHP's Exif extension: http://www.php.net/manual/en/ref.exif.php
568 *
569 * @note FOR WINDOWS USERS:
570 * To enable Exif functions, add the following lines to the "Windows
571 * extensions" section of php.ini:
572 * @code{.ini}
573 * extension=extensions/php_mbstring.dll
574 * extension=extensions/php_exif.dll
575 * @endcode
576 */
577 $wgShowEXIF = function_exists( 'exif_read_data' );
578
579 /**
580 * If to automatically update the img_metadata field
581 * if the metadata field is outdated but compatible with the current version.
582 * Defaults to false.
583 */
584 $wgUpdateCompatibleMetadata = false;
585
586 /**
587 * If you operate multiple wikis, you can define a shared upload path here.
588 * Uploads to this wiki will NOT be put there - they will be put into
589 * $wgUploadDirectory.
590 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
591 * no file of the given name is found in the local repository (for [[File:..]],
592 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
593 * directory.
594 *
595 * Note that these configuration settings can now be defined on a per-
596 * repository basis for an arbitrary number of file repositories, using the
597 * $wgForeignFileRepos variable.
598 */
599 $wgUseSharedUploads = false;
600
601 /**
602 * Full path on the web server where shared uploads can be found
603 */
604 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
605
606 /**
607 * Fetch commons image description pages and display them on the local wiki?
608 */
609 $wgFetchCommonsDescriptions = false;
610
611 /**
612 * Path on the file system where shared uploads can be found.
613 */
614 $wgSharedUploadDirectory = "/var/www/wiki3/images";
615
616 /**
617 * DB name with metadata about shared directory.
618 * Set this to false if the uploads do not come from a wiki.
619 */
620 $wgSharedUploadDBname = false;
621
622 /**
623 * Optional table prefix used in database.
624 */
625 $wgSharedUploadDBprefix = '';
626
627 /**
628 * Cache shared metadata in memcached.
629 * Don't do this if the commons wiki is in a different memcached domain
630 */
631 $wgCacheSharedUploads = true;
632
633 /**
634 * Allow for upload to be copied from an URL.
635 * The timeout for copy uploads is set by $wgCopyUploadTimeout.
636 * You have to assign the user right 'upload_by_url' to a user group, to use this.
637 */
638 $wgAllowCopyUploads = false;
639
640 /**
641 * Allow asynchronous copy uploads.
642 * This feature is experimental and broken as of r81612.
643 */
644 $wgAllowAsyncCopyUploads = false;
645
646 /**
647 * A list of domains copy uploads can come from
648 *
649 * @since 1.20
650 */
651 $wgCopyUploadsDomains = array();
652
653 /**
654 * Enable copy uploads from Special:Upload. $wgAllowCopyUploads must also be
655 * true. If $wgAllowCopyUploads is true, but this is false, you will only be
656 * able to perform copy uploads from the API or extensions (e.g. UploadWizard).
657 */
658 $wgCopyUploadsFromSpecialUpload = false;
659
660 /**
661 * Proxy to use for copy upload requests.
662 * @since 1.20
663 */
664 $wgCopyUploadProxy = false;
665
666 /**
667 * Different timeout for upload by url
668 * This could be useful since when fetching large files, you may want a
669 * timeout longer than the default $wgHTTPTimeout. False means fallback
670 * to default.
671 *
672 * @since 1.22
673 */
674 $wgCopyUploadTimeout = false;
675
676 /**
677 * Different timeout for upload by url when run as a background job
678 * This could be useful since when fetching large files via job queue,
679 * you may want a different timeout, especially because there is no
680 * http request being kept alive.
681 *
682 * false means fallback to $wgCopyUploadTimeout.
683 * @since 1.22
684 */
685 $wgCopyUploadAsyncTimeout = false;
686
687 /**
688 * Max size for uploads, in bytes. If not set to an array, applies to all
689 * uploads. If set to an array, per upload type maximums can be set, using the
690 * file and url keys. If the * key is set this value will be used as maximum
691 * for non-specified types.
692 *
693 * @par Example:
694 * @code
695 * $wgMaxUploadSize = array(
696 * '*' => 250 * 1024,
697 * 'url' => 500 * 1024,
698 * );
699 * @endcode
700 * Sets the maximum for all uploads to 250 kB except for upload-by-url, which
701 * will have a maximum of 500 kB.
702 */
703 $wgMaxUploadSize = 1024 * 1024 * 100; # 100MB
704
705 /**
706 * Point the upload navigation link to an external URL
707 * Useful if you want to use a shared repository by default
708 * without disabling local uploads (use $wgEnableUploads = false for that).
709 *
710 * @par Example:
711 * @code
712 * $wgUploadNavigationUrl = 'http://commons.wikimedia.org/wiki/Special:Upload';
713 * @endcode
714 */
715 $wgUploadNavigationUrl = false;
716
717 /**
718 * Point the upload link for missing files to an external URL, as with
719 * $wgUploadNavigationUrl. The URL will get "(?|&)wpDestFile=<filename>"
720 * appended to it as appropriate.
721 */
722 $wgUploadMissingFileUrl = false;
723
724 /**
725 * Give a path here to use thumb.php for thumbnail generation on client
726 * request, instead of generating them on render and outputting a static URL.
727 * This is necessary if some of your apache servers don't have read/write
728 * access to the thumbnail path.
729 *
730 * @par Example:
731 * @code
732 * $wgThumbnailScriptPath = "{$wgScriptPath}/thumb{$wgScriptExtension}";
733 * @endcode
734 */
735 $wgThumbnailScriptPath = false;
736
737 /**
738 * @see $wgThumbnailScriptPath
739 */
740 $wgSharedThumbnailScriptPath = false;
741
742 /**
743 * Set this to false if you do not want MediaWiki to divide your images
744 * directory into many subdirectories, for improved performance.
745 *
746 * It's almost always good to leave this enabled. In previous versions of
747 * MediaWiki, some users set this to false to allow images to be added to the
748 * wiki by simply copying them into $wgUploadDirectory and then running
749 * maintenance/rebuildImages.php to register them in the database. This is no
750 * longer recommended, use maintenance/importImages.php instead.
751 *
752 * @note That this variable may be ignored if $wgLocalFileRepo is set.
753 * @todo Deprecate the setting and ultimately remove it from Core.
754 */
755 $wgHashedUploadDirectory = true;
756
757 /**
758 * Set the following to false especially if you have a set of files that need to
759 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
760 * directory layout.
761 */
762 $wgHashedSharedUploadDirectory = true;
763
764 /**
765 * Base URL for a repository wiki. Leave this blank if uploads are just stored
766 * in a shared directory and not meant to be accessible through a separate wiki.
767 * Otherwise the image description pages on the local wiki will link to the
768 * image description page on this wiki.
769 *
770 * Please specify the namespace, as in the example below.
771 */
772 $wgRepositoryBaseUrl = "http://commons.wikimedia.org/wiki/File:";
773
774 /**
775 * This is the list of preferred extensions for uploading files. Uploading files
776 * with extensions not in this list will trigger a warning.
777 *
778 * @warning If you add any OpenOffice or Microsoft Office file formats here,
779 * such as odt or doc, and untrusted users are allowed to upload files, then
780 * your wiki will be vulnerable to cross-site request forgery (CSRF).
781 */
782 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
783
784 /**
785 * Files with these extensions will never be allowed as uploads.
786 * An array of file extensions to blacklist. You should append to this array
787 * if you want to blacklist additional files.
788 */
789 $wgFileBlacklist = array(
790 # HTML may contain cookie-stealing JavaScript and web bugs
791 'html', 'htm', 'js', 'jsb', 'mhtml', 'mht', 'xhtml', 'xht',
792 # PHP scripts may execute arbitrary code on the server
793 'php', 'phtml', 'php3', 'php4', 'php5', 'phps',
794 # Other types that may be interpreted by some servers
795 'shtml', 'jhtml', 'pl', 'py', 'cgi',
796 # May contain harmful executables for Windows victims
797 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
798
799 /**
800 * Files with these MIME types will never be allowed as uploads
801 * if $wgVerifyMimeType is enabled.
802 */
803 $wgMimeTypeBlacklist = array(
804 # HTML may contain cookie-stealing JavaScript and web bugs
805 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
806 # PHP scripts may execute arbitrary code on the server
807 'application/x-php', 'text/x-php',
808 # Other types that may be interpreted by some servers
809 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh',
810 # Client-side hazards on Internet Explorer
811 'text/scriptlet', 'application/x-msdownload',
812 # Windows metafile, client-side vulnerability on some systems
813 'application/x-msmetafile',
814 );
815
816 /**
817 * Allow Java archive uploads.
818 * This is not recommended for public wikis since a maliciously-constructed
819 * applet running on the same domain as the wiki can steal the user's cookies.
820 */
821 $wgAllowJavaUploads = false;
822
823 /**
824 * This is a flag to determine whether or not to check file extensions on upload.
825 *
826 * @warning Setting this to false is insecure for public wikis.
827 */
828 $wgCheckFileExtensions = true;
829
830 /**
831 * If this is turned off, users may override the warning for files not covered
832 * by $wgFileExtensions.
833 *
834 * @warning Setting this to false is insecure for public wikis.
835 */
836 $wgStrictFileExtensions = true;
837
838 /**
839 * Setting this to true will disable the upload system's checks for HTML/JavaScript.
840 *
841 * @warning THIS IS VERY DANGEROUS on a publicly editable site, so USE
842 * $wgGroupPermissions TO RESTRICT UPLOADING to only those that you trust
843 */
844 $wgDisableUploadScriptChecks = false;
845
846 /**
847 * Warn if uploaded files are larger than this (in bytes), or false to disable
848 */
849 $wgUploadSizeWarning = false;
850
851 /**
852 * list of trusted media-types and MIME types.
853 * Use the MEDIATYPE_xxx constants to represent media types.
854 * This list is used by File::isSafeFile
855 *
856 * Types not listed here will have a warning about unsafe content
857 * displayed on the images description page. It would also be possible
858 * to use this for further restrictions, like disabling direct
859 * [[media:...]] links for non-trusted formats.
860 */
861 $wgTrustedMediaFormats = array(
862 MEDIATYPE_BITMAP, //all bitmap formats
863 MEDIATYPE_AUDIO, //all audio formats
864 MEDIATYPE_VIDEO, //all plain video formats
865 "image/svg+xml", //svg (only needed if inline rendering of svg is not supported)
866 "application/pdf", //PDF files
867 #"application/x-shockwave-flash", //flash/shockwave movie
868 );
869
870 /**
871 * Plugins for media file type handling.
872 * Each entry in the array maps a MIME type to a class name
873 */
874 $wgMediaHandlers = array(
875 'image/jpeg' => 'JpegHandler',
876 'image/png' => 'PNGHandler',
877 'image/gif' => 'GIFHandler',
878 'image/tiff' => 'TiffHandler',
879 'image/x-ms-bmp' => 'BmpHandler',
880 'image/x-bmp' => 'BmpHandler',
881 'image/x-xcf' => 'XCFHandler',
882 'image/svg+xml' => 'SvgHandler', // official
883 'image/svg' => 'SvgHandler', // compat
884 'image/vnd.djvu' => 'DjVuHandler', // official
885 'image/x.djvu' => 'DjVuHandler', // compat
886 'image/x-djvu' => 'DjVuHandler', // compat
887 );
888
889 /**
890 * Plugins for page content model handling.
891 * Each entry in the array maps a model id to a class name.
892 *
893 * @since 1.21
894 */
895 $wgContentHandlers = array(
896 // the usual case
897 CONTENT_MODEL_WIKITEXT => 'WikitextContentHandler',
898 // dumb version, no syntax highlighting
899 CONTENT_MODEL_JAVASCRIPT => 'JavaScriptContentHandler',
900 // simple implementation, for use by extensions, etc.
901 CONTENT_MODEL_JSON => 'JsonContentHandler',
902 // dumb version, no syntax highlighting
903 CONTENT_MODEL_CSS => 'CssContentHandler',
904 // plain text, for use by extensions, etc.
905 CONTENT_MODEL_TEXT => 'TextContentHandler',
906 );
907
908 /**
909 * Whether to enable server-side image thumbnailing. If false, images will
910 * always be sent to the client in full resolution, with appropriate width= and
911 * height= attributes on the <img> tag for the client to do its own scaling.
912 */
913 $wgUseImageResize = true;
914
915 /**
916 * Resizing can be done using PHP's internal image libraries or using
917 * ImageMagick or another third-party converter, e.g. GraphicMagick.
918 * These support more file formats than PHP, which only supports PNG,
919 * GIF, JPG, XBM and WBMP.
920 *
921 * Use Image Magick instead of PHP builtin functions.
922 */
923 $wgUseImageMagick = false;
924
925 /**
926 * The convert command shipped with ImageMagick
927 */
928 $wgImageMagickConvertCommand = '/usr/bin/convert';
929
930 /**
931 * Sharpening parameter to ImageMagick
932 */
933 $wgSharpenParameter = '0x0.4';
934
935 /**
936 * Reduction in linear dimensions below which sharpening will be enabled
937 */
938 $wgSharpenReductionThreshold = 0.85;
939
940 /**
941 * Temporary directory used for ImageMagick. The directory must exist. Leave
942 * this set to false to let ImageMagick decide for itself.
943 */
944 $wgImageMagickTempDir = false;
945
946 /**
947 * Use another resizing converter, e.g. GraphicMagick
948 * %s will be replaced with the source path, %d with the destination
949 * %w and %h will be replaced with the width and height.
950 *
951 * @par Example for GraphicMagick:
952 * @code
953 * $wgCustomConvertCommand = "gm convert %s -resize %wx%h %d"
954 * @endcode
955 *
956 * Leave as false to skip this.
957 */
958 $wgCustomConvertCommand = false;
959
960 /**
961 * used for lossless jpeg rotation
962 *
963 * @since 1.21
964 */
965 $wgJpegTran = '/usr/bin/jpegtran';
966
967 /**
968 * Some tests and extensions use exiv2 to manipulate the Exif metadata in some
969 * image formats.
970 */
971 $wgExiv2Command = '/usr/bin/exiv2';
972
973 /**
974 * Scalable Vector Graphics (SVG) may be uploaded as images.
975 * Since SVG support is not yet standard in browsers, it is
976 * necessary to rasterize SVGs to PNG as a fallback format.
977 *
978 * An external program is required to perform this conversion.
979 * If set to an array, the first item is a PHP callable and any further items
980 * are passed as parameters after $srcPath, $dstPath, $width, $height
981 */
982 $wgSVGConverters = array(
983 'ImageMagick' =>
984 '$path/convert -background "#ffffff00" -thumbnail $widthx$height\! $input PNG:$output',
985 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
986 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
987 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d '
988 . '$output $input',
989 'rsvg' => '$path/rsvg-convert -w $width -h $height -o $output $input',
990 'imgserv' => '$path/imgserv-wrapper -i svg -o png -w$width $input $output',
991 'ImagickExt' => array( 'SvgHandler::rasterizeImagickExt' ),
992 );
993
994 /**
995 * Pick a converter defined in $wgSVGConverters
996 */
997 $wgSVGConverter = 'ImageMagick';
998
999 /**
1000 * If not in the executable PATH, specify the SVG converter path.
1001 */
1002 $wgSVGConverterPath = '';
1003
1004 /**
1005 * Don't scale a SVG larger than this
1006 */
1007 $wgSVGMaxSize = 2048;
1008
1009 /**
1010 * Don't read SVG metadata beyond this point.
1011 * Default is 1024*256 bytes
1012 */
1013 $wgSVGMetadataCutoff = 262144;
1014
1015 /**
1016 * Disallow <title> element in SVG files.
1017 *
1018 * MediaWiki will reject HTMLesque tags in uploaded files due to idiotic
1019 * browsers which can not perform basic stuff like MIME detection and which are
1020 * vulnerable to further idiots uploading crap files as images.
1021 *
1022 * When this directive is on, "<title>" will be allowed in files with an
1023 * "image/svg+xml" MIME type. You should leave this disabled if your web server
1024 * is misconfigured and doesn't send appropriate MIME types for SVG images.
1025 */
1026 $wgAllowTitlesInSVG = false;
1027
1028 /**
1029 * The maximum number of pixels a source image can have if it is to be scaled
1030 * down by a scaler that requires the full source image to be decompressed
1031 * and stored in decompressed form, before the thumbnail is generated.
1032 *
1033 * This provides a limit on memory usage for the decompression side of the
1034 * image scaler. The limit is used when scaling PNGs with any of the
1035 * built-in image scalers, such as ImageMagick or GD. It is ignored for
1036 * JPEGs with ImageMagick, and when using the VipsScaler extension.
1037 *
1038 * The default is 50 MB if decompressed to RGBA form, which corresponds to
1039 * 12.5 million pixels or 3500x3500.
1040 */
1041 $wgMaxImageArea = 1.25e7;
1042
1043 /**
1044 * Force thumbnailing of animated GIFs above this size to a single
1045 * frame instead of an animated thumbnail. As of MW 1.17 this limit
1046 * is checked against the total size of all frames in the animation.
1047 * It probably makes sense to keep this equal to $wgMaxImageArea.
1048 */
1049 $wgMaxAnimatedGifArea = 1.25e7;
1050
1051 /**
1052 * Browsers don't support TIFF inline generally...
1053 * For inline display, we need to convert to PNG or JPEG.
1054 * Note scaling should work with ImageMagick, but may not with GD scaling.
1055 *
1056 * @par Example:
1057 * @code
1058 * // PNG is lossless, but inefficient for photos
1059 * $wgTiffThumbnailType = array( 'png', 'image/png' );
1060 * // JPEG is good for photos, but has no transparency support. Bad for diagrams.
1061 * $wgTiffThumbnailType = array( 'jpg', 'image/jpeg' );
1062 * @endcode
1063 */
1064 $wgTiffThumbnailType = false;
1065
1066 /**
1067 * If rendered thumbnail files are older than this timestamp, they
1068 * will be rerendered on demand as if the file didn't already exist.
1069 * Update if there is some need to force thumbs and SVG rasterizations
1070 * to rerender, such as fixes to rendering bugs.
1071 */
1072 $wgThumbnailEpoch = '20030516000000';
1073
1074 /**
1075 * Certain operations are avoided if there were too many recent failures,
1076 * for example, thumbnail generation. Bump this value to invalidate all
1077 * memory of failed operations and thus allow further attempts to resume.
1078 * This is useful when a cause for the failures has been found and fixed.
1079 */
1080 $wgAttemptFailureEpoch = 1;
1081
1082 /**
1083 * If set, inline scaled images will still produce "<img>" tags ready for
1084 * output instead of showing an error message.
1085 *
1086 * This may be useful if errors are transitory, especially if the site
1087 * is configured to automatically render thumbnails on request.
1088 *
1089 * On the other hand, it may obscure error conditions from debugging.
1090 * Enable the debug log or the 'thumbnail' log group to make sure errors
1091 * are logged to a file for review.
1092 */
1093 $wgIgnoreImageErrors = false;
1094
1095 /**
1096 * Allow thumbnail rendering on page view. If this is false, a valid
1097 * thumbnail URL is still output, but no file will be created at
1098 * the target location. This may save some time if you have a
1099 * thumb.php or 404 handler set up which is faster than the regular
1100 * webserver(s).
1101 */
1102 $wgGenerateThumbnailOnParse = true;
1103
1104 /**
1105 * Show thumbnails for old images on the image description page
1106 */
1107 $wgShowArchiveThumbnails = true;
1108
1109 /**
1110 * If set to true, images that contain certain the exif orientation tag will
1111 * be rotated accordingly. If set to null, try to auto-detect whether a scaler
1112 * is available that can rotate.
1113 */
1114 $wgEnableAutoRotation = null;
1115
1116 /**
1117 * Internal name of virus scanner. This serves as a key to the
1118 * $wgAntivirusSetup array. Set this to NULL to disable virus scanning. If not
1119 * null, every file uploaded will be scanned for viruses.
1120 */
1121 $wgAntivirus = null;
1122
1123 /**
1124 * Configuration for different virus scanners. This an associative array of
1125 * associative arrays. It contains one setup array per known scanner type.
1126 * The entry is selected by $wgAntivirus, i.e.
1127 * valid values for $wgAntivirus are the keys defined in this array.
1128 *
1129 * The configuration array for each scanner contains the following keys:
1130 * "command", "codemap", "messagepattern":
1131 *
1132 * "command" is the full command to call the virus scanner - %f will be
1133 * replaced with the name of the file to scan. If not present, the filename
1134 * will be appended to the command. Note that this must be overwritten if the
1135 * scanner is not in the system path; in that case, please set
1136 * $wgAntivirusSetup[$wgAntivirus]['command'] to the desired command with full
1137 * path.
1138 *
1139 * "codemap" is a mapping of exit code to return codes of the detectVirus
1140 * function in SpecialUpload.
1141 * - An exit code mapped to AV_SCAN_FAILED causes the function to consider
1142 * the scan to be failed. This will pass the file if $wgAntivirusRequired
1143 * is not set.
1144 * - An exit code mapped to AV_SCAN_ABORTED causes the function to consider
1145 * the file to have an unsupported format, which is probably immune to
1146 * viruses. This causes the file to pass.
1147 * - An exit code mapped to AV_NO_VIRUS will cause the file to pass, meaning
1148 * no virus was found.
1149 * - All other codes (like AV_VIRUS_FOUND) will cause the function to report
1150 * a virus.
1151 * - You may use "*" as a key in the array to catch all exit codes not mapped otherwise.
1152 *
1153 * "messagepattern" is a perl regular expression to extract the meaningful part of the scanners
1154 * output. The relevant part should be matched as group one (\1).
1155 * If not defined or the pattern does not match, the full message is shown to the user.
1156 */
1157 $wgAntivirusSetup = array(
1158
1159 #setup for clamav
1160 'clamav' => array(
1161 'command' => 'clamscan --no-summary ',
1162 'codemap' => array(
1163 "0" => AV_NO_VIRUS, # no virus
1164 "1" => AV_VIRUS_FOUND, # virus found
1165 "52" => AV_SCAN_ABORTED, # unsupported file format (probably immune)
1166 "*" => AV_SCAN_FAILED, # else scan failed
1167 ),
1168 'messagepattern' => '/.*?:(.*)/sim',
1169 ),
1170 );
1171
1172 /**
1173 * Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected.
1174 */
1175 $wgAntivirusRequired = true;
1176
1177 /**
1178 * Determines if the MIME type of uploaded files should be checked
1179 */
1180 $wgVerifyMimeType = true;
1181
1182 /**
1183 * Sets the MIME type definition file to use by MimeMagic.php.
1184 * Set to null, to use built-in defaults only.
1185 * example: $wgMimeTypeFile = '/etc/mime.types';
1186 */
1187 $wgMimeTypeFile = 'includes/mime.types';
1188
1189 /**
1190 * Sets the MIME type info file to use by MimeMagic.php.
1191 * Set to null, to use built-in defaults only.
1192 */
1193 $wgMimeInfoFile = 'includes/mime.info';
1194
1195 /**
1196 * Sets an external MIME detector program. The command must print only
1197 * the MIME type to standard output.
1198 * The name of the file to process will be appended to the command given here.
1199 * If not set or NULL, PHP's fileinfo extension will be used if available.
1200 *
1201 * @par Example:
1202 * @code
1203 * #$wgMimeDetectorCommand = "file -bi"; # use external MIME detector (Linux)
1204 * @endcode
1205 */
1206 $wgMimeDetectorCommand = null;
1207
1208 /**
1209 * Switch for trivial MIME detection. Used by thumb.php to disable all fancy
1210 * things, because only a few types of images are needed and file extensions
1211 * can be trusted.
1212 */
1213 $wgTrivialMimeDetection = false;
1214
1215 /**
1216 * Additional XML types we can allow via MIME-detection.
1217 * array = ( 'rootElement' => 'associatedMimeType' )
1218 */
1219 $wgXMLMimeTypes = array(
1220 'http://www.w3.org/2000/svg:svg' => 'image/svg+xml',
1221 'svg' => 'image/svg+xml',
1222 'http://www.lysator.liu.se/~alla/dia/:diagram' => 'application/x-dia-diagram',
1223 'http://www.w3.org/1999/xhtml:html' => 'text/html', // application/xhtml+xml?
1224 'html' => 'text/html', // application/xhtml+xml?
1225 );
1226
1227 /**
1228 * Limit images on image description pages to a user-selectable limit. In order
1229 * to reduce disk usage, limits can only be selected from a list.
1230 * The user preference is saved as an array offset in the database, by default
1231 * the offset is set with $wgDefaultUserOptions['imagesize']. Make sure you
1232 * change it if you alter the array (see bug 8858).
1233 * This is the list of settings the user can choose from:
1234 */
1235 $wgImageLimits = array(
1236 array( 320, 240 ),
1237 array( 640, 480 ),
1238 array( 800, 600 ),
1239 array( 1024, 768 ),
1240 array( 1280, 1024 )
1241 );
1242
1243 /**
1244 * Adjust thumbnails on image pages according to a user setting. In order to
1245 * reduce disk usage, the values can only be selected from a list. This is the
1246 * list of settings the user can choose from:
1247 */
1248 $wgThumbLimits = array(
1249 120,
1250 150,
1251 180,
1252 200,
1253 250,
1254 300
1255 );
1256
1257 /**
1258 * When defined, is an array of image widths used as buckets for thumbnail generation.
1259 * The goal is to save resources by generating thumbnails based on reference buckets instead of
1260 * always using the original. This will incur a speed gain but cause a quality loss.
1261 *
1262 * The buckets generation is chained, with each bucket generated based on the above bucket
1263 * when possible. File handlers have to opt into using that feature. For now only BitmapHandler
1264 * supports it.
1265 */
1266 $wgThumbnailBuckets = null;
1267
1268 /**
1269 * When using thumbnail buckets as defined above, this sets the minimum distance to the bucket
1270 * above the requested size. The distance represents how many extra pixels of width the bucket
1271 * needs in order to be used as the reference for a given thumbnail. For example, with the
1272 * following buckets:
1273 *
1274 * $wgThumbnailBuckets = array ( 128, 256, 512 );
1275 *
1276 * and a distance of 50:
1277 *
1278 * $wgThumbnailMinimumBucketDistance = 50;
1279 *
1280 * If we want to render a thumbnail of width 220px, the 512px bucket will be used,
1281 * because 220 + 50 = 270 and the closest bucket bigger than 270px is 512.
1282 */
1283 $wgThumbnailMinimumBucketDistance = 50;
1284
1285 /**
1286 * When defined, is an array of thumbnail widths to be rendered at upload time. The idea is to
1287 * prerender common thumbnail sizes, in order to avoid the necessity to render them on demand, which
1288 * has a performance impact for the first client to view a certain size.
1289 *
1290 * This obviously means that more disk space is needed per upload upfront.
1291 *
1292 * @since 1.25
1293 */
1294
1295 $wgUploadThumbnailRenderMap = array();
1296
1297 /**
1298 * The method through which the thumbnails will be prerendered for the entries in
1299 * $wgUploadThumbnailRenderMap
1300 *
1301 * The method can be either "http" or "jobqueue". The former uses an http request to hit the
1302 * thumbnail's URL.
1303 * This method only works if thumbnails are configured to be rendered by a 404 handler. The latter
1304 * option uses the job queue to render the thumbnail.
1305 *
1306 * @since 1.25
1307 */
1308 $wgUploadThumbnailRenderMethod = 'jobqueue';
1309
1310 /**
1311 * When using the "http" wgUploadThumbnailRenderMethod, lets one specify a custom Host HTTP header.
1312 *
1313 * @since 1.25
1314 */
1315 $wgUploadThumbnailRenderHttpCustomHost = false;
1316
1317 /**
1318 * When using the "http" wgUploadThumbnailRenderMethod, lets one specify a custom domain to send the
1319 * HTTP request to.
1320 *
1321 * @since 1.25
1322 */
1323 $wgUploadThumbnailRenderHttpCustomDomain = false;
1324
1325 /**
1326 * Default parameters for the "<gallery>" tag
1327 */
1328 $wgGalleryOptions = array(
1329 'imagesPerRow' => 0, // Default number of images per-row in the gallery. 0 -> Adapt to screensize
1330 'imageWidth' => 120, // Width of the cells containing images in galleries (in "px")
1331 'imageHeight' => 120, // Height of the cells containing images in galleries (in "px")
1332 'captionLength' => 25, // Length of caption to truncate (in characters)
1333 'showBytes' => true, // Show the filesize in bytes in categories
1334 'mode' => 'traditional',
1335 );
1336
1337 /**
1338 * Adjust width of upright images when parameter 'upright' is used
1339 * This allows a nicer look for upright images without the need to fix the width
1340 * by hardcoded px in wiki sourcecode.
1341 */
1342 $wgThumbUpright = 0.75;
1343
1344 /**
1345 * Default value for chmoding of new directories.
1346 */
1347 $wgDirectoryMode = 0777;
1348
1349 /**
1350 * Generate and use thumbnails suitable for screens with 1.5 and 2.0 pixel densities.
1351 *
1352 * This means a 320x240 use of an image on the wiki will also generate 480x360 and 640x480
1353 * thumbnails, output via the srcset attribute.
1354 *
1355 * On older browsers, a JavaScript polyfill switches the appropriate images in after loading
1356 * the original low-resolution versions depending on the reported window.devicePixelRatio.
1357 * The polyfill can be found in the jquery.hidpi module.
1358 */
1359 $wgResponsiveImages = true;
1360
1361 /**
1362 * @name DJVU settings
1363 * @{
1364 */
1365
1366 /**
1367 * Path of the djvudump executable
1368 * Enable this and $wgDjvuRenderer to enable djvu rendering
1369 * example: $wgDjvuDump = 'djvudump';
1370 */
1371 $wgDjvuDump = null;
1372
1373 /**
1374 * Path of the ddjvu DJVU renderer
1375 * Enable this and $wgDjvuDump to enable djvu rendering
1376 * example: $wgDjvuRenderer = 'ddjvu';
1377 */
1378 $wgDjvuRenderer = null;
1379
1380 /**
1381 * Path of the djvutxt DJVU text extraction utility
1382 * Enable this and $wgDjvuDump to enable text layer extraction from djvu files
1383 * example: $wgDjvuTxt = 'djvutxt';
1384 */
1385 $wgDjvuTxt = null;
1386
1387 /**
1388 * Path of the djvutoxml executable
1389 * This works like djvudump except much, much slower as of version 3.5.
1390 *
1391 * For now we recommend you use djvudump instead. The djvuxml output is
1392 * probably more stable, so we'll switch back to it as soon as they fix
1393 * the efficiency problem.
1394 * http://sourceforge.net/tracker/index.php?func=detail&aid=1704049&group_id=32953&atid=406583
1395 *
1396 * @par Example:
1397 * @code
1398 * $wgDjvuToXML = 'djvutoxml';
1399 * @endcode
1400 */
1401 $wgDjvuToXML = null;
1402
1403 /**
1404 * Shell command for the DJVU post processor
1405 * Default: pnmtojpeg, since ddjvu generates ppm output
1406 * Set this to false to output the ppm file directly.
1407 */
1408 $wgDjvuPostProcessor = 'pnmtojpeg';
1409
1410 /**
1411 * File extension for the DJVU post processor output
1412 */
1413 $wgDjvuOutputExtension = 'jpg';
1414
1415 /** @} */ # end of DJvu }
1416
1417 /** @} */ # end of file uploads }
1418
1419 /************************************************************************//**
1420 * @name Email settings
1421 * @{
1422 */
1423
1424
1425 /**
1426 * Site admin email address.
1427 *
1428 * Defaults to "wikiadmin@$wgServerName".
1429 */
1430 $wgEmergencyContact = false;
1431
1432 /**
1433 * Password reminder email address.
1434 *
1435 * The address we should use as sender when a user is requesting his password.
1436 *
1437 * Defaults to "apache@$wgServerName".
1438 */
1439 $wgPasswordSender = false;
1440
1441 /**
1442 * Password reminder name
1443 *
1444 * @deprecated since 1.23; use the system message 'emailsender' instead.
1445 */
1446 $wgPasswordSenderName = 'MediaWiki Mail';
1447
1448 /**
1449 * Dummy address which should be accepted during mail send action.
1450 * It might be necessary to adapt the address or to set it equal
1451 * to the $wgEmergencyContact address.
1452 */
1453 $wgNoReplyAddress = 'reply@not.possible';
1454
1455 /**
1456 * Set to true to enable the e-mail basic features:
1457 * Password reminders, etc. If sending e-mail on your
1458 * server doesn't work, you might want to disable this.
1459 */
1460 $wgEnableEmail = true;
1461
1462 /**
1463 * Set to true to enable user-to-user e-mail.
1464 * This can potentially be abused, as it's hard to track.
1465 */
1466 $wgEnableUserEmail = true;
1467
1468 /**
1469 * Set to true to put the sending user's email in a Reply-To header
1470 * instead of From. ($wgEmergencyContact will be used as From.)
1471 *
1472 * Some mailers (eg sSMTP) set the SMTP envelope sender to the From value,
1473 * which can cause problems with SPF validation and leak recipient addresses
1474 * when bounces are sent to the sender.
1475 */
1476 $wgUserEmailUseReplyTo = false;
1477
1478 /**
1479 * Minimum time, in hours, which must elapse between password reminder
1480 * emails for a given account. This is to prevent abuse by mail flooding.
1481 */
1482 $wgPasswordReminderResendTime = 24;
1483
1484 /**
1485 * The time, in seconds, when an emailed temporary password expires.
1486 */
1487 $wgNewPasswordExpiry = 3600 * 24 * 7;
1488
1489 /**
1490 * The time, in seconds, when an email confirmation email expires
1491 */
1492 $wgUserEmailConfirmationTokenExpiry = 7 * 24 * 60 * 60;
1493
1494 /**
1495 * The number of days that a user's password is good for. After this number of days, the
1496 * user will be asked to reset their password. Set to false to disable password expiration.
1497 */
1498 $wgPasswordExpirationDays = false;
1499
1500 /**
1501 * If a user's password is expired, the number of seconds when they can still login,
1502 * and cancel their password change, but are sent to the password change form on each login.
1503 */
1504 $wgPasswordExpireGrace = 3600 * 24 * 7; // 7 days
1505
1506 /**
1507 * SMTP Mode.
1508 *
1509 * For using a direct (authenticated) SMTP server connection.
1510 * Default to false or fill an array :
1511 *
1512 * @code
1513 * $wgSMTP = array(
1514 * 'host' => 'SMTP domain',
1515 * 'IDHost' => 'domain for MessageID',
1516 * 'port' => '25',
1517 * 'auth' => [true|false],
1518 * 'username' => [SMTP username],
1519 * 'password' => [SMTP password],
1520 * );
1521 * @endcode
1522 */
1523 $wgSMTP = false;
1524
1525 /**
1526 * Additional email parameters, will be passed as the last argument to mail() call.
1527 * If using safe_mode this has no effect
1528 */
1529 $wgAdditionalMailParams = null;
1530
1531 /**
1532 * For parts of the system that have been updated to provide HTML email content, send
1533 * both text and HTML parts as the body of the email
1534 */
1535 $wgAllowHTMLEmail = false;
1536
1537 /**
1538 * True: from page editor if s/he opted-in. False: Enotif mails appear to come
1539 * from $wgEmergencyContact
1540 */
1541 $wgEnotifFromEditor = false;
1542
1543 // TODO move UPO to preferences probably ?
1544 # If set to true, users get a corresponding option in their preferences and can choose to
1545 # enable or disable at their discretion
1546 # If set to false, the corresponding input form on the user preference page is suppressed
1547 # It call this to be a "user-preferences-option (UPO)"
1548
1549 /**
1550 * Require email authentication before sending mail to an email address.
1551 * This is highly recommended. It prevents MediaWiki from being used as an open
1552 * spam relay.
1553 */
1554 $wgEmailAuthentication = true;
1555
1556 /**
1557 * Allow users to enable email notification ("enotif") on watchlist changes.
1558 */
1559 $wgEnotifWatchlist = false;
1560
1561 /**
1562 * Allow users to enable email notification ("enotif") when someone edits their
1563 * user talk page.
1564 */
1565 $wgEnotifUserTalk = false;
1566
1567 /**
1568 * Set the Reply-to address in notifications to the editor's address, if user
1569 * allowed this in the preferences.
1570 */
1571 $wgEnotifRevealEditorAddress = false;
1572
1573 /**
1574 * Send notification mails on minor edits to watchlist pages. This is enabled
1575 * by default. Does not affect user talk notifications.
1576 */
1577 $wgEnotifMinorEdits = true;
1578
1579 /**
1580 * Send a generic mail instead of a personalised mail for each user. This
1581 * always uses UTC as the time zone, and doesn't include the username.
1582 *
1583 * For pages with many users watching, this can significantly reduce mail load.
1584 * Has no effect when using sendmail rather than SMTP.
1585 */
1586 $wgEnotifImpersonal = false;
1587
1588 /**
1589 * Maximum number of users to mail at once when using impersonal mail. Should
1590 * match the limit on your mail server.
1591 */
1592 $wgEnotifMaxRecips = 500;
1593
1594 /**
1595 * Send mails via the job queue. This can be useful to reduce the time it
1596 * takes to save a page that a lot of people are watching.
1597 */
1598 $wgEnotifUseJobQ = false;
1599
1600 /**
1601 * Use the job queue for user activity updates like updating "last visited"
1602 * fields for email notifications of page changes. This should only be enabled
1603 * if the jobs have a dedicated runner to avoid update lag.
1604 *
1605 * @since 1.26
1606 */
1607 $wgActivityUpdatesUseJobQueue = false;
1608
1609 /**
1610 * Use real name instead of username in e-mail "from" field.
1611 */
1612 $wgEnotifUseRealName = false;
1613
1614 /**
1615 * Array of usernames who will be sent a notification email for every change
1616 * which occurs on a wiki. Users will not be notified of their own changes.
1617 */
1618 $wgUsersNotifiedOnAllChanges = array();
1619
1620 /** @} */ # end of email settings
1621
1622 /************************************************************************//**
1623 * @name Database settings
1624 * @{
1625 */
1626
1627 /**
1628 * Database host name or IP address
1629 */
1630 $wgDBserver = 'localhost';
1631
1632 /**
1633 * Database port number (for PostgreSQL and Microsoft SQL Server).
1634 */
1635 $wgDBport = 5432;
1636
1637 /**
1638 * Name of the database
1639 */
1640 $wgDBname = 'my_wiki';
1641
1642 /**
1643 * Database username
1644 */
1645 $wgDBuser = 'wikiuser';
1646
1647 /**
1648 * Database user's password
1649 */
1650 $wgDBpassword = '';
1651
1652 /**
1653 * Database type
1654 */
1655 $wgDBtype = 'mysql';
1656
1657 /**
1658 * Whether to use SSL in DB connection.
1659 *
1660 * This setting is only used $wgLBFactoryConf['class'] is set to
1661 * 'LBFactorySimple' and $wgDBservers is an empty array; otherwise
1662 * the DBO_SSL flag must be set in the 'flags' option of the database
1663 * connection to achieve the same functionality.
1664 */
1665 $wgDBssl = false;
1666
1667 /**
1668 * Whether to use compression in DB connection.
1669 *
1670 * This setting is only used $wgLBFactoryConf['class'] is set to
1671 * 'LBFactorySimple' and $wgDBservers is an empty array; otherwise
1672 * the DBO_COMPRESS flag must be set in the 'flags' option of the database
1673 * connection to achieve the same functionality.
1674 */
1675 $wgDBcompress = false;
1676
1677 /**
1678 * Separate username for maintenance tasks. Leave as null to use the default.
1679 */
1680 $wgDBadminuser = null;
1681
1682 /**
1683 * Separate password for maintenance tasks. Leave as null to use the default.
1684 */
1685 $wgDBadminpassword = null;
1686
1687 /**
1688 * Search type.
1689 * Leave as null to select the default search engine for the
1690 * selected database type (eg SearchMySQL), or set to a class
1691 * name to override to a custom search engine.
1692 */
1693 $wgSearchType = null;
1694
1695 /**
1696 * Alternative search types
1697 * Sometimes you want to support multiple search engines for testing. This
1698 * allows users to select their search engine of choice via url parameters
1699 * to Special:Search and the action=search API. If using this, there's no
1700 * need to add $wgSearchType to it, that is handled automatically.
1701 */
1702 $wgSearchTypeAlternatives = null;
1703
1704 /**
1705 * Table name prefix
1706 */
1707 $wgDBprefix = '';
1708
1709 /**
1710 * MySQL table options to use during installation or update
1711 */
1712 $wgDBTableOptions = 'ENGINE=InnoDB';
1713
1714 /**
1715 * SQL Mode - default is turning off all modes, including strict, if set.
1716 * null can be used to skip the setting for performance reasons and assume
1717 * DBA has done his best job.
1718 * String override can be used for some additional fun :-)
1719 */
1720 $wgSQLMode = '';
1721
1722 /**
1723 * Mediawiki schema
1724 */
1725 $wgDBmwschema = null;
1726
1727 /**
1728 * To override default SQLite data directory ($docroot/../data)
1729 */
1730 $wgSQLiteDataDir = '';
1731
1732 /**
1733 * Make all database connections secretly go to localhost. Fool the load balancer
1734 * thinking there is an arbitrarily large cluster of servers to connect to.
1735 * Useful for debugging.
1736 */
1737 $wgAllDBsAreLocalhost = false;
1738
1739 /**
1740 * Shared database for multiple wikis. Commonly used for storing a user table
1741 * for single sign-on. The server for this database must be the same as for the
1742 * main database.
1743 *
1744 * For backwards compatibility the shared prefix is set to the same as the local
1745 * prefix, and the user table is listed in the default list of shared tables.
1746 * The user_properties table is also added so that users will continue to have their
1747 * preferences shared (preferences were stored in the user table prior to 1.16)
1748 *
1749 * $wgSharedTables may be customized with a list of tables to share in the shared
1750 * database. However it is advised to limit what tables you do share as many of
1751 * MediaWiki's tables may have side effects if you try to share them.
1752 *
1753 * $wgSharedPrefix is the table prefix for the shared database. It defaults to
1754 * $wgDBprefix.
1755 *
1756 * $wgSharedSchema is the table schema for the shared database. It defaults to
1757 * $wgDBmwschema.
1758 *
1759 * @deprecated since 1.21 In new code, use the $wiki parameter to wfGetLB() to
1760 * access remote databases. Using wfGetLB() allows the shared database to
1761 * reside on separate servers to the wiki's own database, with suitable
1762 * configuration of $wgLBFactoryConf.
1763 */
1764 $wgSharedDB = null;
1765
1766 /**
1767 * @see $wgSharedDB
1768 */
1769 $wgSharedPrefix = false;
1770
1771 /**
1772 * @see $wgSharedDB
1773 */
1774 $wgSharedTables = array( 'user', 'user_properties' );
1775
1776 /**
1777 * @see $wgSharedDB
1778 * @since 1.23
1779 */
1780 $wgSharedSchema = false;
1781
1782 /**
1783 * Database load balancer
1784 * This is a two-dimensional array, an array of server info structures
1785 * Fields are:
1786 * - host: Host name
1787 * - dbname: Default database name
1788 * - user: DB user
1789 * - password: DB password
1790 * - type: DB type
1791 *
1792 * - load: Ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0.
1793 * If this is zero for any given server, no normal query traffic will be
1794 * sent to it. It will be excluded from lag checks in maintenance scripts.
1795 * The only way it can receive traffic is if groupLoads is used.
1796 *
1797 * - groupLoads: array of load ratios, the key is the query group name. A query may belong
1798 * to several groups, the most specific group defined here is used.
1799 *
1800 * - flags: bit field
1801 * - DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
1802 * - DBO_DEBUG -- equivalent of $wgDebugDumpSql
1803 * - DBO_TRX -- wrap entire request in a transaction
1804 * - DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
1805 * - DBO_PERSISTENT -- enables persistent database connections
1806 * - DBO_SSL -- uses SSL/TLS encryption in database connections, if available
1807 * - DBO_COMPRESS -- uses internal compression in database connections,
1808 * if available
1809 *
1810 * - max lag: (optional) Maximum replication lag before a slave will taken out of rotation
1811 *
1812 * These and any other user-defined properties will be assigned to the mLBInfo member
1813 * variable of the Database object.
1814 *
1815 * Leave at false to use the single-server variables above. If you set this
1816 * variable, the single-server variables will generally be ignored (except
1817 * perhaps in some command-line scripts).
1818 *
1819 * The first server listed in this array (with key 0) will be the master. The
1820 * rest of the servers will be slaves. To prevent writes to your slaves due to
1821 * accidental misconfiguration or MediaWiki bugs, set read_only=1 on all your
1822 * slaves in my.cnf. You can set read_only mode at runtime using:
1823 *
1824 * @code
1825 * SET @@read_only=1;
1826 * @endcode
1827 *
1828 * Since the effect of writing to a slave is so damaging and difficult to clean
1829 * up, we at Wikimedia set read_only=1 in my.cnf on all our DB servers, even
1830 * our masters, and then set read_only=0 on masters at runtime.
1831 */
1832 $wgDBservers = false;
1833
1834 /**
1835 * Load balancer factory configuration
1836 * To set up a multi-master wiki farm, set the class here to something that
1837 * can return a LoadBalancer with an appropriate master on a call to getMainLB().
1838 * The class identified here is responsible for reading $wgDBservers,
1839 * $wgDBserver, etc., so overriding it may cause those globals to be ignored.
1840 *
1841 * The LBFactoryMulti class is provided for this purpose, please see
1842 * includes/db/LBFactoryMulti.php for configuration information.
1843 */
1844 $wgLBFactoryConf = array( 'class' => 'LBFactorySimple' );
1845
1846 /**
1847 * How long to wait for a slave to catch up to the master
1848 * @deprecated since 1.24
1849 */
1850 $wgMasterWaitTimeout = 10;
1851
1852 /**
1853 * File to log database errors to
1854 */
1855 $wgDBerrorLog = false;
1856
1857 /**
1858 * Timezone to use in the error log.
1859 * Defaults to the wiki timezone ($wgLocaltimezone).
1860 *
1861 * A list of usable timezones can found at:
1862 * http://php.net/manual/en/timezones.php
1863 *
1864 * @par Examples:
1865 * @code
1866 * $wgDBerrorLogTZ = 'UTC';
1867 * $wgDBerrorLogTZ = 'GMT';
1868 * $wgDBerrorLogTZ = 'PST8PDT';
1869 * $wgDBerrorLogTZ = 'Europe/Sweden';
1870 * $wgDBerrorLogTZ = 'CET';
1871 * @endcode
1872 *
1873 * @since 1.20
1874 */
1875 $wgDBerrorLogTZ = false;
1876
1877 /**
1878 * Set to true to engage MySQL 4.1/5.0 charset-related features;
1879 * for now will just cause sending of 'SET NAMES=utf8' on connect.
1880 *
1881 * @warning THIS IS EXPERIMENTAL!
1882 *
1883 * May break if you're not using the table defs from mysql5/tables.sql.
1884 * May break if you're upgrading an existing wiki if set differently.
1885 * Broken symptoms likely to include incorrect behavior with page titles,
1886 * usernames, comments etc containing non-ASCII characters.
1887 * Might also cause failures on the object cache and other things.
1888 *
1889 * Even correct usage may cause failures with Unicode supplementary
1890 * characters (those not in the Basic Multilingual Plane) unless MySQL
1891 * has enhanced their Unicode support.
1892 */
1893 $wgDBmysql5 = false;
1894
1895 /**
1896 * Set true to enable Oracle DCRP (supported from 11gR1 onward)
1897 *
1898 * To use this feature set to true and use a datasource defined as
1899 * POOLED (i.e. in tnsnames definition set server=pooled in connect_data
1900 * block).
1901 *
1902 * Starting from 11gR1 you can use DCRP (Database Resident Connection
1903 * Pool) that maintains established sessions and reuses them on new
1904 * connections.
1905 *
1906 * Not completely tested, but it should fall back on normal connection
1907 * in case the pool is full or the datasource is not configured as
1908 * pooled.
1909 * And the other way around; using oci_pconnect on a non pooled
1910 * datasource should produce a normal connection.
1911 *
1912 * When it comes to frequent shortlived DB connections like with MW
1913 * Oracle tends to s***. The problem is the driver connects to the
1914 * database reasonably fast, but establishing a session takes time and
1915 * resources. MW does not rely on session state (as it does not use
1916 * features such as package variables) so establishing a valid session
1917 * is in this case an unwanted overhead that just slows things down.
1918 *
1919 * @warning EXPERIMENTAL!
1920 *
1921 */
1922 $wgDBOracleDRCP = false;
1923
1924 /**
1925 * Other wikis on this site, can be administered from a single developer
1926 * account.
1927 * Array numeric key => database name
1928 */
1929 $wgLocalDatabases = array();
1930
1931 /**
1932 * If lag is higher than $wgSlaveLagWarning, show a warning in some special
1933 * pages (like watchlist). If the lag is higher than $wgSlaveLagCritical,
1934 * show a more obvious warning.
1935 */
1936 $wgSlaveLagWarning = 10;
1937
1938 /**
1939 * @see $wgSlaveLagWarning
1940 */
1941 $wgSlaveLagCritical = 30;
1942
1943 /**
1944 * Use Windows Authentication instead of $wgDBuser / $wgDBpassword for MS SQL Server
1945 */
1946 $wgDBWindowsAuthentication = false;
1947
1948 /**@}*/ # End of DB settings }
1949
1950 /************************************************************************//**
1951 * @name Text storage
1952 * @{
1953 */
1954
1955 /**
1956 * We can also compress text stored in the 'text' table. If this is set on, new
1957 * revisions will be compressed on page save if zlib support is available. Any
1958 * compressed revisions will be decompressed on load regardless of this setting,
1959 * but will not be readable at all* if zlib support is not available.
1960 */
1961 $wgCompressRevisions = false;
1962
1963 /**
1964 * External stores allow including content
1965 * from non database sources following URL links.
1966 *
1967 * Short names of ExternalStore classes may be specified in an array here:
1968 * @code
1969 * $wgExternalStores = array("http","file","custom")...
1970 * @endcode
1971 *
1972 * CAUTION: Access to database might lead to code execution
1973 */
1974 $wgExternalStores = array();
1975
1976 /**
1977 * An array of external MySQL servers.
1978 *
1979 * @par Example:
1980 * Create a cluster named 'cluster1' containing three servers:
1981 * @code
1982 * $wgExternalServers = array(
1983 * 'cluster1' => array( 'srv28', 'srv29', 'srv30' )
1984 * );
1985 * @endcode
1986 *
1987 * Used by LBFactorySimple, may be ignored if $wgLBFactoryConf is set to
1988 * another class.
1989 */
1990 $wgExternalServers = array();
1991
1992 /**
1993 * The place to put new revisions, false to put them in the local text table.
1994 * Part of a URL, e.g. DB://cluster1
1995 *
1996 * Can be an array instead of a single string, to enable data distribution. Keys
1997 * must be consecutive integers, starting at zero.
1998 *
1999 * @par Example:
2000 * @code
2001 * $wgDefaultExternalStore = array( 'DB://cluster1', 'DB://cluster2' );
2002 * @endcode
2003 *
2004 * @var array
2005 */
2006 $wgDefaultExternalStore = false;
2007
2008 /**
2009 * Revision text may be cached in $wgMemc to reduce load on external storage
2010 * servers and object extraction overhead for frequently-loaded revisions.
2011 *
2012 * Set to 0 to disable, or number of seconds before cache expiry.
2013 */
2014 $wgRevisionCacheExpiry = 0;
2015
2016 /** @} */ # end text storage }
2017
2018 /************************************************************************//**
2019 * @name Performance hacks and limits
2020 * @{
2021 */
2022
2023 /**
2024 * Disable database-intensive features
2025 */
2026 $wgMiserMode = false;
2027
2028 /**
2029 * Disable all query pages if miser mode is on, not just some
2030 */
2031 $wgDisableQueryPages = false;
2032
2033 /**
2034 * Number of rows to cache in 'querycache' table when miser mode is on
2035 */
2036 $wgQueryCacheLimit = 1000;
2037
2038 /**
2039 * Number of links to a page required before it is deemed "wanted"
2040 */
2041 $wgWantedPagesThreshold = 1;
2042
2043 /**
2044 * Enable slow parser functions
2045 */
2046 $wgAllowSlowParserFunctions = false;
2047
2048 /**
2049 * Allow schema updates
2050 */
2051 $wgAllowSchemaUpdates = true;
2052
2053 /**
2054 * Maximum article size in kilobytes
2055 */
2056 $wgMaxArticleSize = 2048;
2057
2058 /**
2059 * The minimum amount of memory that MediaWiki "needs"; MediaWiki will try to
2060 * raise PHP's memory limit if it's below this amount.
2061 */
2062 $wgMemoryLimit = "50M";
2063
2064 /** @} */ # end performance hacks }
2065
2066 /************************************************************************//**
2067 * @name Cache settings
2068 * @{
2069 */
2070
2071 /**
2072 * Directory for caching data in the local filesystem. Should not be accessible
2073 * from the web. Set this to false to not use any local caches.
2074 *
2075 * Note: if multiple wikis share the same localisation cache directory, they
2076 * must all have the same set of extensions. You can set a directory just for
2077 * the localisation cache using $wgLocalisationCacheConf['storeDirectory'].
2078 */
2079 $wgCacheDirectory = false;
2080
2081 /**
2082 * Main cache type. This should be a cache with fast access, but it may have
2083 * limited space. By default, it is disabled, since the stock database cache
2084 * is not fast enough to make it worthwhile.
2085 *
2086 * The options are:
2087 *
2088 * - CACHE_ANYTHING: Use anything, as long as it works
2089 * - CACHE_NONE: Do not cache
2090 * - CACHE_DB: Store cache objects in the DB
2091 * - CACHE_MEMCACHED: MemCached, must specify servers in $wgMemCachedServers
2092 * - CACHE_ACCEL: APC, XCache or WinCache
2093 * - (other): A string may be used which identifies a cache
2094 * configuration in $wgObjectCaches.
2095 *
2096 * @see $wgMessageCacheType, $wgParserCacheType
2097 */
2098 $wgMainCacheType = CACHE_NONE;
2099
2100 /**
2101 * The cache type for storing the contents of the MediaWiki namespace. This
2102 * cache is used for a small amount of data which is expensive to regenerate.
2103 *
2104 * For available types see $wgMainCacheType.
2105 */
2106 $wgMessageCacheType = CACHE_ANYTHING;
2107
2108 /**
2109 * The cache type for storing article HTML. This is used to store data which
2110 * is expensive to regenerate, and benefits from having plenty of storage space.
2111 *
2112 * For available types see $wgMainCacheType.
2113 */
2114 $wgParserCacheType = CACHE_ANYTHING;
2115
2116 /**
2117 * The cache type for storing session data. Used if $wgSessionsInObjectCache is true.
2118 *
2119 * For available types see $wgMainCacheType.
2120 */
2121 $wgSessionCacheType = CACHE_ANYTHING;
2122
2123 /**
2124 * The cache type for storing language conversion tables,
2125 * which are used when parsing certain text and interface messages.
2126 *
2127 * For available types see $wgMainCacheType.
2128 *
2129 * @since 1.20
2130 */
2131 $wgLanguageConverterCacheType = CACHE_ANYTHING;
2132
2133 /**
2134 * Advanced object cache configuration.
2135 *
2136 * Use this to define the class names and constructor parameters which are used
2137 * for the various cache types. Custom cache types may be defined here and
2138 * referenced from $wgMainCacheType, $wgMessageCacheType, $wgParserCacheType,
2139 * or $wgLanguageConverterCacheType.
2140 *
2141 * The format is an associative array where the key is a cache identifier, and
2142 * the value is an associative array of parameters. The "class" parameter is the
2143 * class name which will be used. Alternatively, a "factory" parameter may be
2144 * given, giving a callable function which will generate a suitable cache object.
2145 */
2146 $wgObjectCaches = array(
2147 CACHE_NONE => array( 'class' => 'EmptyBagOStuff' ),
2148 CACHE_DB => array( 'class' => 'SqlBagOStuff', 'loggroup' => 'SQLBagOStuff' ),
2149
2150 CACHE_ANYTHING => array( 'factory' => 'ObjectCache::newAnything' ),
2151 CACHE_ACCEL => array( 'factory' => 'ObjectCache::newAccelerator' ),
2152 CACHE_MEMCACHED => array( 'factory' => 'ObjectCache::newMemcached', 'loggroup' => 'memcached' ),
2153
2154 'db-replicated' => array(
2155 'class' => 'ReplicatedBagOStuff',
2156 'readFactory' => array(
2157 'class' => 'SqlBagOStuff',
2158 'args' => array( array( 'slaveOnly' => true ) )
2159 ),
2160 'writeFactory' => array(
2161 'class' => 'SqlBagOStuff',
2162 'args' => array( array( 'slaveOnly' => false ) )
2163 ),
2164 'loggroup' => 'SQLBagOStuff'
2165 ),
2166
2167 'apc' => array( 'class' => 'APCBagOStuff' ),
2168 'xcache' => array( 'class' => 'XCacheBagOStuff' ),
2169 'wincache' => array( 'class' => 'WinCacheBagOStuff' ),
2170 'memcached-php' => array( 'class' => 'MemcachedPhpBagOStuff', 'loggroup' => 'memcached' ),
2171 'memcached-pecl' => array( 'class' => 'MemcachedPeclBagOStuff', 'loggroup' => 'memcached' ),
2172 'hash' => array( 'class' => 'HashBagOStuff' ),
2173 );
2174
2175 /**
2176 * Main Wide-Area-Network cache type. This should be a cache with fast access,
2177 * but it may have limited space. By default, it is disabled, since the basic stock
2178 * cache is not fast enough to make it worthwhile. For single data-center setups, this can
2179 * simply be pointed to a cache in $wgWANObjectCaches that uses a local $wgObjectCaches
2180 * cache with a relayer of type EventRelayerNull.
2181 *
2182 * The options are:
2183 * - false: Configure the cache using $wgMainCacheType, without using
2184 * a relayer (only matters if there are multiple data-centers)
2185 * - CACHE_NONE: Do not cache
2186 * - (other): A string may be used which identifies a cache
2187 * configuration in $wgWANObjectCaches
2188 * @since 1.26
2189 */
2190 $wgMainWANCache = false;
2191
2192 /**
2193 * Advanced WAN object cache configuration.
2194 *
2195 * Each WAN cache wraps a registered object cache (for the local cluster)
2196 * and it must also be configured to point to a PubSub instance. Subscribers
2197 * must be configured to relay purges to the actual cache servers.
2198 *
2199 * The format is an associative array where the key is a cache identifier, and
2200 * the value is an associative array of parameters. The "cacheId" parameter is
2201 * a cache identifier from $wgObjectCaches. The "relayerConfig" parameter is an
2202 * array used to construct an EventRelayer object. The "pool" parameter is a
2203 * string that is used as a PubSub channel prefix.
2204 *
2205 * @since 1.26
2206 */
2207 $wgWANObjectCaches = array(
2208 CACHE_NONE => array(
2209 'class' => 'WANObjectCache',
2210 'cacheId' => CACHE_NONE,
2211 'pool' => 'mediawiki-main-none',
2212 'relayerConfig' => array( 'class' => 'EventRelayerNull' )
2213 )
2214 /* Example of a simple single data-center cache:
2215 'memcached-php' => array(
2216 'class' => 'WANObjectCache',
2217 'cacheId' => 'memcached-php',
2218 'pool' => 'mediawiki-main-memcached',
2219 'relayerConfig' => array( 'class' => 'EventRelayerNull' )
2220 )
2221 */
2222 );
2223
2224 /**
2225 * Main object stash type. This should be a fast storage system for storing
2226 * lightweight data like hit counters and user activity. Sites with multiple
2227 * data-centers should have this use a store that replicates all writes. The
2228 * store should have enough consistency for CAS operations to be usable.
2229 * Reads outside of those needed for merge() may be eventually consistent.
2230 *
2231 * The options are:
2232 * - db: Store cache objects in the DB
2233 * - (other): A string may be used which identifies a cache
2234 * configuration in $wgObjectCaches
2235 *
2236 * @since 1.26
2237 */
2238 $wgMainStash = 'db-replicated';
2239
2240 /**
2241 * The expiry time for the parser cache, in seconds.
2242 * The default is 86400 (one day).
2243 */
2244 $wgParserCacheExpireTime = 86400;
2245
2246 /**
2247 * Deprecated alias for $wgSessionsInObjectCache.
2248 *
2249 * @deprecated since 1.20; Use $wgSessionsInObjectCache
2250 */
2251 $wgSessionsInMemcached = false;
2252
2253 /**
2254 * Store sessions in an object cache, configured by $wgSessionCacheType. This
2255 * can be useful to improve performance, or to avoid the locking behavior of
2256 * PHP's default session handler, which tends to prevent multiple requests for
2257 * the same user from acting concurrently.
2258 */
2259 $wgSessionsInObjectCache = false;
2260
2261 /**
2262 * The expiry time to use for session storage when $wgSessionsInObjectCache is
2263 * enabled, in seconds.
2264 */
2265 $wgObjectCacheSessionExpiry = 3600;
2266
2267 /**
2268 * This is used for setting php's session.save_handler. In practice, you will
2269 * almost never need to change this ever. Other options might be 'user' or
2270 * 'session_mysql.' Setting to null skips setting this entirely (which might be
2271 * useful if you're doing cross-application sessions, see bug 11381)
2272 */
2273 $wgSessionHandler = null;
2274
2275 /**
2276 * If enabled, will send MemCached debugging information to $wgDebugLogFile
2277 */
2278 $wgMemCachedDebug = false;
2279
2280 /**
2281 * The list of MemCached servers and port numbers
2282 */
2283 $wgMemCachedServers = array( '127.0.0.1:11211' );
2284
2285 /**
2286 * Use persistent connections to MemCached, which are shared across multiple
2287 * requests.
2288 */
2289 $wgMemCachedPersistent = false;
2290
2291 /**
2292 * Read/write timeout for MemCached server communication, in microseconds.
2293 */
2294 $wgMemCachedTimeout = 500000;
2295
2296 /**
2297 * Set this to true to make a local copy of the message cache, for use in
2298 * addition to memcached. The files will be put in $wgCacheDirectory.
2299 */
2300 $wgUseLocalMessageCache = false;
2301
2302 /**
2303 * Instead of caching everything, only cache those messages which have
2304 * been customised in the site content language. This means that
2305 * MediaWiki:Foo/ja is ignored if MediaWiki:Foo doesn't exist.
2306 * This option is probably only useful for translatewiki.net.
2307 */
2308 $wgAdaptiveMessageCache = false;
2309
2310 /**
2311 * Localisation cache configuration. Associative array with keys:
2312 * class: The class to use. May be overridden by extensions.
2313 *
2314 * store: The location to store cache data. May be 'files', 'db' or
2315 * 'detect'. If set to "files", data will be in CDB files. If set
2316 * to "db", data will be stored to the database. If set to
2317 * "detect", files will be used if $wgCacheDirectory is set,
2318 * otherwise the database will be used.
2319 *
2320 * storeClass: The class name for the underlying storage. If set to a class
2321 * name, it overrides the "store" setting.
2322 *
2323 * storeDirectory: If the store class puts its data in files, this is the
2324 * directory it will use. If this is false, $wgCacheDirectory
2325 * will be used.
2326 *
2327 * manualRecache: Set this to true to disable cache updates on web requests.
2328 * Use maintenance/rebuildLocalisationCache.php instead.
2329 */
2330 $wgLocalisationCacheConf = array(
2331 'class' => 'LocalisationCache',
2332 'store' => 'detect',
2333 'storeClass' => false,
2334 'storeDirectory' => false,
2335 'manualRecache' => false,
2336 );
2337
2338 /**
2339 * Allow client-side caching of pages
2340 */
2341 $wgCachePages = true;
2342
2343 /**
2344 * Set this to current time to invalidate all prior cached pages. Affects both
2345 * client-side and server-side caching.
2346 * You can get the current date on your server by using the command:
2347 * @verbatim
2348 * date +%Y%m%d%H%M%S
2349 * @endverbatim
2350 */
2351 $wgCacheEpoch = '20030516000000';
2352
2353 /**
2354 * Directory where GitInfo will look for pre-computed cache files. If false,
2355 * $wgCacheDirectory/gitinfo will be used.
2356 */
2357 $wgGitInfoCacheDirectory = false;
2358
2359 /**
2360 * Bump this number when changing the global style sheets and JavaScript.
2361 *
2362 * It should be appended in the query string of static CSS and JS includes,
2363 * to ensure that client-side caches do not keep obsolete copies of global
2364 * styles.
2365 */
2366 $wgStyleVersion = '303';
2367
2368 /**
2369 * This will cache static pages for non-logged-in users to reduce
2370 * database traffic on public sites.
2371 * Automatically sets $wgShowIPinHeader = false
2372 * ResourceLoader requests to default language and skins are cached
2373 * as well as single module requests.
2374 */
2375 $wgUseFileCache = false;
2376
2377 /**
2378 * Depth of the subdirectory hierarchy to be created under
2379 * $wgFileCacheDirectory. The subdirectories will be named based on
2380 * the MD5 hash of the title. A value of 0 means all cache files will
2381 * be put directly into the main file cache directory.
2382 */
2383 $wgFileCacheDepth = 2;
2384
2385 /**
2386 * Keep parsed pages in a cache (objectcache table or memcached)
2387 * to speed up output of the same page viewed by another user with the
2388 * same options.
2389 *
2390 * This can provide a significant speedup for medium to large pages,
2391 * so you probably want to keep it on. Extensions that conflict with the
2392 * parser cache should disable the cache on a per-page basis instead.
2393 */
2394 $wgEnableParserCache = true;
2395
2396 /**
2397 * Append a configured value to the parser cache and the sitenotice key so
2398 * that they can be kept separate for some class of activity.
2399 */
2400 $wgRenderHashAppend = '';
2401
2402 /**
2403 * If on, the sidebar navigation links are cached for users with the
2404 * current language set. This can save a touch of load on a busy site
2405 * by shaving off extra message lookups.
2406 *
2407 * However it is also fragile: changing the site configuration, or
2408 * having a variable $wgArticlePath, can produce broken links that
2409 * don't update as expected.
2410 */
2411 $wgEnableSidebarCache = false;
2412
2413 /**
2414 * Expiry time for the sidebar cache, in seconds
2415 */
2416 $wgSidebarCacheExpiry = 86400;
2417
2418 /**
2419 * When using the file cache, we can store the cached HTML gzipped to save disk
2420 * space. Pages will then also be served compressed to clients that support it.
2421 *
2422 * Requires zlib support enabled in PHP.
2423 */
2424 $wgUseGzip = false;
2425
2426 /**
2427 * Whether MediaWiki should send an ETag header. Seems to cause
2428 * broken behavior with Squid 2.6, see bug 7098.
2429 */
2430 $wgUseETag = false;
2431
2432 /**
2433 * Clock skew or the one-second resolution of time() can occasionally cause cache
2434 * problems when the user requests two pages within a short period of time. This
2435 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
2436 * a grace period.
2437 */
2438 $wgClockSkewFudge = 5;
2439
2440 /**
2441 * Invalidate various caches when LocalSettings.php changes. This is equivalent
2442 * to setting $wgCacheEpoch to the modification time of LocalSettings.php, as
2443 * was previously done in the default LocalSettings.php file.
2444 *
2445 * On high-traffic wikis, this should be set to false, to avoid the need to
2446 * check the file modification time, and to avoid the performance impact of
2447 * unnecessary cache invalidations.
2448 */
2449 $wgInvalidateCacheOnLocalSettingsChange = true;
2450
2451 /**
2452 * When loading extensions through the extension registration system, this
2453 * can be used to invalidate the cache. A good idea would be to set this to
2454 * one file, you can just `touch` that one to invalidate the cache
2455 *
2456 * @par Example:
2457 * @code
2458 * $wgExtensionInfoMtime = filemtime( "$IP/LocalSettings.php" );
2459 * @endcode
2460 *
2461 * If set to false, the mtime for each individual JSON file will be checked,
2462 * which can be slow if a large number of extensions are being loaded.
2463 *
2464 * @var int|bool
2465 */
2466 $wgExtensionInfoMTime = false;
2467
2468 /** @} */ # end of cache settings
2469
2470 /************************************************************************//**
2471 * @name HTTP proxy (Squid) settings
2472 *
2473 * Many of these settings apply to any HTTP proxy used in front of MediaWiki,
2474 * although they are referred to as Squid settings for historical reasons.
2475 *
2476 * Achieving a high hit ratio with an HTTP proxy requires special
2477 * configuration. See https://www.mediawiki.org/wiki/Manual:Squid_caching for
2478 * more details.
2479 *
2480 * @{
2481 */
2482
2483 /**
2484 * Enable/disable Squid.
2485 * See https://www.mediawiki.org/wiki/Manual:Squid_caching
2486 */
2487 $wgUseSquid = false;
2488
2489 /**
2490 * If you run Squid3 with ESI support, enable this (default:false):
2491 */
2492 $wgUseESI = false;
2493
2494 /**
2495 * Send X-Vary-Options header for better caching (requires patched Squid)
2496 */
2497 $wgUseXVO = false;
2498
2499 /**
2500 * Add X-Forwarded-Proto to the Vary and X-Vary-Options headers for API
2501 * requests and RSS/Atom feeds. Use this if you have an SSL termination setup
2502 * and need to split the cache between HTTP and HTTPS for API requests,
2503 * feed requests and HTTP redirect responses in order to prevent cache
2504 * pollution. This does not affect 'normal' requests to index.php other than
2505 * HTTP redirects.
2506 */
2507 $wgVaryOnXFP = false;
2508
2509 /**
2510 * Internal server name as known to Squid, if different.
2511 *
2512 * @par Example:
2513 * @code
2514 * $wgInternalServer = 'http://yourinternal.tld:8000';
2515 * @endcode
2516 */
2517 $wgInternalServer = false;
2518
2519 /**
2520 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
2521 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
2522 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
2523 * days
2524 */
2525 $wgSquidMaxage = 18000;
2526
2527 /**
2528 * Default maximum age for raw CSS/JS accesses
2529 */
2530 $wgForcedRawSMaxage = 300;
2531
2532 /**
2533 * List of proxy servers to purge on changes; default port is 80. Use IP addresses.
2534 *
2535 * When MediaWiki is running behind a proxy, it will trust X-Forwarded-For
2536 * headers sent/modified from these proxies when obtaining the remote IP address
2537 *
2538 * For a list of trusted servers which *aren't* purged, see $wgSquidServersNoPurge.
2539 */
2540 $wgSquidServers = array();
2541
2542 /**
2543 * As above, except these servers aren't purged on page changes; use to set a
2544 * list of trusted proxies, etc. Supports both individual IP addresses and
2545 * CIDR blocks.
2546 * @since 1.23 Supports CIDR ranges
2547 */
2548 $wgSquidServersNoPurge = array();
2549
2550 /**
2551 * Maximum number of titles to purge in any one client operation
2552 */
2553 $wgMaxSquidPurgeTitles = 400;
2554
2555 /**
2556 * Whether to use a Host header in purge requests sent to the proxy servers
2557 * configured in $wgSquidServers. Set this to false to support Squid
2558 * configured in forward-proxy mode.
2559 *
2560 * If this is set to true, a Host header will be sent, and only the path
2561 * component of the URL will appear on the request line, as if the request
2562 * were a non-proxy HTTP 1.1 request. Varnish only supports this style of
2563 * request. Squid supports this style of request only if reverse-proxy mode
2564 * (http_port ... accel) is enabled.
2565 *
2566 * If this is set to false, no Host header will be sent, and the absolute URL
2567 * will be sent in the request line, as is the standard for an HTTP proxy
2568 * request in both HTTP 1.0 and 1.1. This style of request is not supported
2569 * by Varnish, but is supported by Squid in either configuration (forward or
2570 * reverse).
2571 *
2572 * @since 1.21
2573 */
2574 $wgSquidPurgeUseHostHeader = true;
2575
2576 /**
2577 * Routing configuration for HTCP multicast purging. Add elements here to
2578 * enable HTCP and determine which purges are sent where. If set to an empty
2579 * array, HTCP is disabled.
2580 *
2581 * Each key in this array is a regular expression to match against the purged
2582 * URL, or an empty string to match all URLs. The purged URL is matched against
2583 * the regexes in the order specified, and the first rule whose regex matches
2584 * is used, all remaining rules will thus be ignored.
2585 *
2586 * @par Example configuration to send purges for upload.wikimedia.org to one
2587 * multicast group and all other purges to another:
2588 * @code
2589 * $wgHTCPRouting = array(
2590 * '|^https?://upload\.wikimedia\.org|' => array(
2591 * 'host' => '239.128.0.113',
2592 * 'port' => 4827,
2593 * ),
2594 * '' => array(
2595 * 'host' => '239.128.0.112',
2596 * 'port' => 4827,
2597 * ),
2598 * );
2599 * @endcode
2600 *
2601 * You can also pass an array of hosts to send purges too. This is useful when
2602 * you have several multicast groups or unicast address that should receive a
2603 * given purge. Multiple hosts support was introduced in MediaWiki 1.22.
2604 *
2605 * @par Example of sending purges to multiple hosts:
2606 * @code
2607 * $wgHTCPRouting = array(
2608 * '' => array(
2609 * // Purges to text caches using multicast
2610 * array( 'host' => '239.128.0.114', 'port' => '4827' ),
2611 * // Purges to a hardcoded list of caches
2612 * array( 'host' => '10.88.66.1', 'port' => '4827' ),
2613 * array( 'host' => '10.88.66.2', 'port' => '4827' ),
2614 * array( 'host' => '10.88.66.3', 'port' => '4827' ),
2615 * ),
2616 * );
2617 * @endcode
2618 *
2619 * @since 1.22
2620 *
2621 * $wgHTCPRouting replaces $wgHTCPMulticastRouting that was introduced in 1.20.
2622 * For back compatibility purposes, whenever its array is empty
2623 * $wgHTCPMutlicastRouting will be used as a fallback if it not null.
2624 *
2625 * @see $wgHTCPMulticastTTL
2626 */
2627 $wgHTCPRouting = array();
2628
2629 /**
2630 * HTCP multicast TTL.
2631 * @see $wgHTCPRouting
2632 */
2633 $wgHTCPMulticastTTL = 1;
2634
2635 /**
2636 * Should forwarded Private IPs be accepted?
2637 */
2638 $wgUsePrivateIPs = false;
2639
2640 /** @} */ # end of HTTP proxy settings
2641
2642 /************************************************************************//**
2643 * @name Language, regional and character encoding settings
2644 * @{
2645 */
2646
2647 /**
2648 * Site language code. See languages/Names.php for languages supported by
2649 * MediaWiki out of the box. Not all languages listed there have translations,
2650 * see languages/messages/ for the list of languages with some localisation.
2651 *
2652 * Warning: Don't use language codes listed in $wgDummyLanguageCodes like "no"
2653 * for Norwegian (use "nb" instead), or things will break unexpectedly.
2654 *
2655 * This defines the default interface language for all users, but users can
2656 * change it in their preferences.
2657 *
2658 * This also defines the language of pages in the wiki. The content is wrapped
2659 * in a html element with lang=XX attribute. This behavior can be overridden
2660 * via hooks, see Title::getPageLanguage.
2661 */
2662 $wgLanguageCode = 'en';
2663
2664 /**
2665 * Language cache size, or really how many languages can we handle
2666 * simultaneously without degrading to crawl speed.
2667 */
2668 $wgLangObjCacheSize = 10;
2669
2670 /**
2671 * Some languages need different word forms, usually for different cases.
2672 * Used in Language::convertGrammar().
2673 *
2674 * @par Example:
2675 * @code
2676 * $wgGrammarForms['en']['genitive']['car'] = 'car\'s';
2677 * @endcode
2678 */
2679 $wgGrammarForms = array();
2680
2681 /**
2682 * Treat language links as magic connectors, not inline links
2683 */
2684 $wgInterwikiMagic = true;
2685
2686 /**
2687 * Hide interlanguage links from the sidebar
2688 */
2689 $wgHideInterlanguageLinks = false;
2690
2691 /**
2692 * List of additional interwiki prefixes that should be treated as
2693 * interlanguage links (i.e. placed in the sidebar).
2694 * Notes:
2695 * - This will not do anything unless the prefixes are defined in the interwiki
2696 * map.
2697 * - The display text for these custom interlanguage links will be fetched from
2698 * the system message "interlanguage-link-xyz" where xyz is the prefix in
2699 * this array.
2700 * - A friendly name for each site, used for tooltip text, may optionally be
2701 * placed in the system message "interlanguage-link-sitename-xyz" where xyz is
2702 * the prefix in this array.
2703 */
2704 $wgExtraInterlanguageLinkPrefixes = array();
2705
2706 /**
2707 * List of language names or overrides for default names in Names.php
2708 */
2709 $wgExtraLanguageNames = array();
2710
2711 /**
2712 * List of language codes that don't correspond to an actual language.
2713 * These codes are mostly left-offs from renames, or other legacy things.
2714 * This array makes them not appear as a selectable language on the installer,
2715 * and excludes them when running the transstat.php script.
2716 */
2717 $wgDummyLanguageCodes = array(
2718 'als' => 'gsw',
2719 'bat-smg' => 'sgs',
2720 'be-x-old' => 'be-tarask',
2721 'bh' => 'bho',
2722 'fiu-vro' => 'vro',
2723 'no' => 'nb',
2724 'qqq' => 'qqq', # Used for message documentation.
2725 'qqx' => 'qqx', # Used for viewing message keys.
2726 'roa-rup' => 'rup',
2727 'simple' => 'en',
2728 'zh-classical' => 'lzh',
2729 'zh-min-nan' => 'nan',
2730 'zh-yue' => 'yue',
2731 );
2732
2733 /**
2734 * Character set for use in the article edit box. Language-specific encodings
2735 * may be defined.
2736 *
2737 * This historic feature is one of the first that was added by former MediaWiki
2738 * team leader Brion Vibber, and is used to support the Esperanto x-system.
2739 */
2740 $wgEditEncoding = '';
2741
2742 /**
2743 * Set this to true to replace Arabic presentation forms with their standard
2744 * forms in the U+0600-U+06FF block. This only works if $wgLanguageCode is
2745 * set to "ar".
2746 *
2747 * Note that pages with titles containing presentation forms will become
2748 * inaccessible, run maintenance/cleanupTitles.php to fix this.
2749 */
2750 $wgFixArabicUnicode = true;
2751
2752 /**
2753 * Set this to true to replace ZWJ-based chillu sequences in Malayalam text
2754 * with their Unicode 5.1 equivalents. This only works if $wgLanguageCode is
2755 * set to "ml". Note that some clients (even new clients as of 2010) do not
2756 * support these characters.
2757 *
2758 * If you enable this on an existing wiki, run maintenance/cleanupTitles.php to
2759 * fix any ZWJ sequences in existing page titles.
2760 */
2761 $wgFixMalayalamUnicode = true;
2762
2763 /**
2764 * Set this to always convert certain Unicode sequences to modern ones
2765 * regardless of the content language. This has a small performance
2766 * impact.
2767 *
2768 * See $wgFixArabicUnicode and $wgFixMalayalamUnicode for conversion
2769 * details.
2770 *
2771 * @since 1.17
2772 */
2773 $wgAllUnicodeFixes = false;
2774
2775 /**
2776 * Set this to eg 'ISO-8859-1' to perform character set conversion when
2777 * loading old revisions not marked with "utf-8" flag. Use this when
2778 * converting a wiki from MediaWiki 1.4 or earlier to UTF-8 without the
2779 * burdensome mass conversion of old text data.
2780 *
2781 * @note This DOES NOT touch any fields other than old_text. Titles, comments,
2782 * user names, etc still must be converted en masse in the database before
2783 * continuing as a UTF-8 wiki.
2784 */
2785 $wgLegacyEncoding = false;
2786
2787 /**
2788 * Browser Blacklist for unicode non compliant browsers. Contains a list of
2789 * regexps : "/regexp/" matching problematic browsers. These browsers will
2790 * be served encoded unicode in the edit box instead of real unicode.
2791 */
2792 $wgBrowserBlackList = array(
2793 /**
2794 * Netscape 2-4 detection
2795 * The minor version may contain strings such as "Gold" or "SGoldC-SGI"
2796 * Lots of non-netscape user agents have "compatible", so it's useful to check for that
2797 * with a negative assertion. The [UIN] identifier specifies the level of security
2798 * in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
2799 * The language string is unreliable, it is missing on NS4 Mac.
2800 *
2801 * Reference: http://www.psychedelix.com/agents/index.shtml
2802 */
2803 '/^Mozilla\/2\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2804 '/^Mozilla\/3\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2805 '/^Mozilla\/4\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2806
2807 /**
2808 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>,
2809 * Þ to <THORN> and Ð to <ETH>
2810 *
2811 * Known useragents:
2812 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
2813 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
2814 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
2815 * - [...]
2816 *
2817 * @link http://en.wikipedia.org/w/index.php?diff=12356041&oldid=12355864
2818 * @link http://en.wikipedia.org/wiki/Template%3AOS9
2819 */
2820 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
2821
2822 /**
2823 * Google wireless transcoder, seems to eat a lot of chars alive
2824 * http://it.wikipedia.org/w/index.php?title=Luciano_Ligabue&diff=prev&oldid=8857361
2825 */
2826 '/^Mozilla\/4\.0 \(compatible; MSIE 6.0; Windows NT 5.0; Google Wireless Transcoder;\)/'
2827 );
2828
2829 /**
2830 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
2831 * create stub reference rows in the text table instead of copying
2832 * the full text of all current entries from 'cur' to 'text'.
2833 *
2834 * This will speed up the conversion step for large sites, but
2835 * requires that the cur table be kept around for those revisions
2836 * to remain viewable.
2837 *
2838 * This option affects the updaters *only*. Any present cur stub
2839 * revisions will be readable at runtime regardless of this setting.
2840 */
2841 $wgLegacySchemaConversion = false;
2842
2843 /**
2844 * Enable dates like 'May 12' instead of '12 May', if the default date format
2845 * is 'dmy or mdy'.
2846 */
2847 $wgAmericanDates = false;
2848
2849 /**
2850 * For Hindi and Arabic use local numerals instead of Western style (0-9)
2851 * numerals in interface.
2852 */
2853 $wgTranslateNumerals = true;
2854
2855 /**
2856 * Translation using MediaWiki: namespace.
2857 * Interface messages will be loaded from the database.
2858 */
2859 $wgUseDatabaseMessages = true;
2860
2861 /**
2862 * Expiry time for the message cache key
2863 */
2864 $wgMsgCacheExpiry = 86400;
2865
2866 /**
2867 * Maximum entry size in the message cache, in bytes
2868 */
2869 $wgMaxMsgCacheEntrySize = 10000;
2870
2871 /**
2872 * Whether to enable language variant conversion.
2873 */
2874 $wgDisableLangConversion = false;
2875
2876 /**
2877 * Whether to enable language variant conversion for links.
2878 */
2879 $wgDisableTitleConversion = false;
2880
2881 /**
2882 * Default variant code, if false, the default will be the language code
2883 */
2884 $wgDefaultLanguageVariant = false;
2885
2886 /**
2887 * Disabled variants array of language variant conversion.
2888 *
2889 * @par Example:
2890 * @code
2891 * $wgDisabledVariants[] = 'zh-mo';
2892 * $wgDisabledVariants[] = 'zh-my';
2893 * @endcode
2894 */
2895 $wgDisabledVariants = array();
2896
2897 /**
2898 * Like $wgArticlePath, but on multi-variant wikis, this provides a
2899 * path format that describes which parts of the URL contain the
2900 * language variant.
2901 *
2902 * @par Example:
2903 * @code
2904 * $wgLanguageCode = 'sr';
2905 * $wgVariantArticlePath = '/$2/$1';
2906 * $wgArticlePath = '/wiki/$1';
2907 * @endcode
2908 *
2909 * A link to /wiki/ would be redirected to /sr/Главна_страна
2910 *
2911 * It is important that $wgArticlePath not overlap with possible values
2912 * of $wgVariantArticlePath.
2913 */
2914 $wgVariantArticlePath = false;
2915
2916 /**
2917 * Show a bar of language selection links in the user login and user
2918 * registration forms; edit the "loginlanguagelinks" message to
2919 * customise these.
2920 */
2921 $wgLoginLanguageSelector = false;
2922
2923 /**
2924 * When translating messages with wfMessage(), it is not always clear what
2925 * should be considered UI messages and what should be content messages.
2926 *
2927 * For example, for the English Wikipedia, there should be only one 'mainpage',
2928 * so when getting the link for 'mainpage', we should treat it as site content
2929 * and call ->inContentLanguage()->text(), but for rendering the text of the
2930 * link, we call ->text(). The code behaves this way by default. However,
2931 * sites like the Wikimedia Commons do offer different versions of 'mainpage'
2932 * and the like for different languages. This array provides a way to override
2933 * the default behavior.
2934 *
2935 * @par Example:
2936 * To allow language-specific main page and community
2937 * portal:
2938 * @code
2939 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
2940 * @endcode
2941 */
2942 $wgForceUIMsgAsContentMsg = array();
2943
2944 /**
2945 * Fake out the timezone that the server thinks it's in. This will be used for
2946 * date display and not for what's stored in the DB. Leave to null to retain
2947 * your server's OS-based timezone value.
2948 *
2949 * This variable is currently used only for signature formatting and for local
2950 * time/date parser variables ({{LOCALTIME}} etc.)
2951 *
2952 * Timezones can be translated by editing MediaWiki messages of type
2953 * timezone-nameinlowercase like timezone-utc.
2954 *
2955 * A list of usable timezones can found at:
2956 * http://php.net/manual/en/timezones.php
2957 *
2958 * @par Examples:
2959 * @code
2960 * $wgLocaltimezone = 'UTC';
2961 * $wgLocaltimezone = 'GMT';
2962 * $wgLocaltimezone = 'PST8PDT';
2963 * $wgLocaltimezone = 'Europe/Sweden';
2964 * $wgLocaltimezone = 'CET';
2965 * @endcode
2966 */
2967 $wgLocaltimezone = null;
2968
2969 /**
2970 * Set an offset from UTC in minutes to use for the default timezone setting
2971 * for anonymous users and new user accounts.
2972 *
2973 * This setting is used for most date/time displays in the software, and is
2974 * overridable in user preferences. It is *not* used for signature timestamps.
2975 *
2976 * By default, this will be set to match $wgLocaltimezone.
2977 */
2978 $wgLocalTZoffset = null;
2979
2980 /** @} */ # End of language/charset settings
2981
2982 /*************************************************************************//**
2983 * @name Output format and skin settings
2984 * @{
2985 */
2986
2987 /**
2988 * The default Content-Type header.
2989 */
2990 $wgMimeType = 'text/html';
2991
2992 /**
2993 * Previously used as content type in HTML script tags. This is now ignored since
2994 * HTML5 doesn't require a MIME type for script tags (javascript is the default).
2995 * It was also previously used by RawAction to determine the ctype query parameter
2996 * value that will result in a javascript response.
2997 * @deprecated since 1.22
2998 */
2999 $wgJsMimeType = null;
3000
3001 /**
3002 * The default xmlns attribute. The option to define this has been removed.
3003 * The value of this variable is no longer used by core and is set to a fixed
3004 * value in Setup.php for compatibility with extensions that depend on the value
3005 * of this variable being set. Such a dependency however is deprecated.
3006 * @deprecated since 1.22
3007 */
3008 $wgXhtmlDefaultNamespace = null;
3009
3010 /**
3011 * Previously used to determine if we should output an HTML5 doctype.
3012 * This is no longer used as we always output HTML5 now. For compatibility with
3013 * extensions that still check the value of this config it's value is now forced
3014 * to true by Setup.php.
3015 * @deprecated since 1.22
3016 */
3017 $wgHtml5 = true;
3018
3019 /**
3020 * Defines the value of the version attribute in the &lt;html&gt; tag, if any.
3021 * If $wgAllowRdfaAttributes is true, and this evaluates to boolean false
3022 * (like if it's left at the default null value), it will be auto-initialized
3023 * to the correct value for RDFa+HTML5. As such, you should have no reason to
3024 * ever actually set this to anything.
3025 */
3026 $wgHtml5Version = null;
3027
3028 /**
3029 * Temporary variable that allows HTMLForms to be rendered as tables.
3030 * Table based layouts cause various issues when designing for mobile.
3031 * This global allows skins or extensions a means to force non-table based rendering.
3032 * Setting to false forces form components to always render as div elements.
3033 * @since 1.24
3034 */
3035 $wgHTMLFormAllowTableFormat = true;
3036
3037 /**
3038 * Temporary variable that applies MediaWiki UI wherever it can be supported.
3039 * Temporary variable that should be removed when mediawiki ui is more
3040 * stable and change has been communicated.
3041 * @since 1.24
3042 */
3043 $wgUseMediaWikiUIEverywhere = false;
3044
3045 /**
3046 * Enabled RDFa attributes for use in wikitext.
3047 * NOTE: Interaction with HTML5 is somewhat underspecified.
3048 */
3049 $wgAllowRdfaAttributes = false;
3050
3051 /**
3052 * Enabled HTML5 microdata attributes for use in wikitext.
3053 */
3054 $wgAllowMicrodataAttributes = false;
3055
3056 /**
3057 * Should we try to make our HTML output well-formed XML? If set to false,
3058 * output will be a few bytes shorter, and the HTML will arguably be more
3059 * readable. If set to true, life will be much easier for the authors of
3060 * screen-scraping bots, and the HTML will arguably be more readable.
3061 *
3062 * Setting this to false may omit quotation marks on some attributes, omit
3063 * slashes from some self-closing tags, omit some ending tags, etc., where
3064 * permitted by HTML5. Setting it to true will not guarantee that all pages
3065 * will be well-formed, although non-well-formed pages should be rare and it's
3066 * a bug if you find one. Conversely, setting it to false doesn't mean that
3067 * all XML-y constructs will be omitted, just that they might be.
3068 *
3069 * Because of compatibility with screen-scraping bots, and because it's
3070 * controversial, this is currently left to true by default.
3071 */
3072 $wgWellFormedXml = true;
3073
3074 /**
3075 * Permit other namespaces in addition to the w3.org default.
3076 *
3077 * Use the prefix for the key and the namespace for the value.
3078 *
3079 * @par Example:
3080 * @code
3081 * $wgXhtmlNamespaces['svg'] = 'http://www.w3.org/2000/svg';
3082 * @endcode
3083 * Normally we wouldn't have to define this in the root "<html>"
3084 * element, but IE needs it there in some circumstances.
3085 *
3086 * This is ignored if $wgMimeType is set to a non-XML MIME type.
3087 */
3088 $wgXhtmlNamespaces = array();
3089
3090 /**
3091 * Show IP address, for non-logged in users. It's necessary to switch this off
3092 * for some forms of caching.
3093 * @warning Will disable file cache.
3094 */
3095 $wgShowIPinHeader = true;
3096
3097 /**
3098 * Site notice shown at the top of each page
3099 *
3100 * MediaWiki:Sitenotice page, which will override this. You can also
3101 * provide a separate message for logged-out users using the
3102 * MediaWiki:Anonnotice page.
3103 */
3104 $wgSiteNotice = '';
3105
3106 /**
3107 * If this is set, a "donate" link will appear in the sidebar. Set it to a URL.
3108 */
3109 $wgSiteSupportPage = '';
3110
3111 /**
3112 * Validate the overall output using tidy and refuse
3113 * to display the page if it's not valid.
3114 */
3115 $wgValidateAllHtml = false;
3116
3117 /**
3118 * Default skin, for new users and anonymous visitors. Registered users may
3119 * change this to any one of the other available skins in their preferences.
3120 */
3121 $wgDefaultSkin = 'vector';
3122
3123 /**
3124 * Fallback skin used when the skin defined by $wgDefaultSkin can't be found.
3125 *
3126 * @since 1.24
3127 */
3128 $wgFallbackSkin = 'fallback';
3129
3130 /**
3131 * Specify the names of skins that should not be presented in the list of
3132 * available skins in user preferences. If you want to remove a skin entirely,
3133 * remove it from the skins/ directory and its entry from LocalSettings.php.
3134 */
3135 $wgSkipSkins = array();
3136
3137 /**
3138 * @deprecated since 1.23; use $wgSkipSkins instead
3139 */
3140 $wgSkipSkin = '';
3141
3142 /**
3143 * Allow user Javascript page?
3144 * This enables a lot of neat customizations, but may
3145 * increase security risk to users and server load.
3146 */
3147 $wgAllowUserJs = false;
3148
3149 /**
3150 * Allow user Cascading Style Sheets (CSS)?
3151 * This enables a lot of neat customizations, but may
3152 * increase security risk to users and server load.
3153 */
3154 $wgAllowUserCss = false;
3155
3156 /**
3157 * Allow user-preferences implemented in CSS?
3158 * This allows users to customise the site appearance to a greater
3159 * degree; disabling it will improve page load times.
3160 */
3161 $wgAllowUserCssPrefs = true;
3162
3163 /**
3164 * Use the site's Javascript page?
3165 */
3166 $wgUseSiteJs = true;
3167
3168 /**
3169 * Use the site's Cascading Style Sheets (CSS)?
3170 */
3171 $wgUseSiteCss = true;
3172
3173 /**
3174 * Break out of framesets. This can be used to prevent clickjacking attacks,
3175 * or to prevent external sites from framing your site with ads.
3176 */
3177 $wgBreakFrames = false;
3178
3179 /**
3180 * The X-Frame-Options header to send on pages sensitive to clickjacking
3181 * attacks, such as edit pages. This prevents those pages from being displayed
3182 * in a frame or iframe. The options are:
3183 *
3184 * - 'DENY': Do not allow framing. This is recommended for most wikis.
3185 *
3186 * - 'SAMEORIGIN': Allow framing by pages on the same domain. This can be used
3187 * to allow framing within a trusted domain. This is insecure if there
3188 * is a page on the same domain which allows framing of arbitrary URLs.
3189 *
3190 * - false: Allow all framing. This opens up the wiki to XSS attacks and thus
3191 * full compromise of local user accounts. Private wikis behind a
3192 * corporate firewall are especially vulnerable. This is not
3193 * recommended.
3194 *
3195 * For extra safety, set $wgBreakFrames = true, to prevent framing on all pages,
3196 * not just edit pages.
3197 */
3198 $wgEditPageFrameOptions = 'DENY';
3199
3200 /**
3201 * Disallow framing of API pages directly, by setting the X-Frame-Options
3202 * header. Since the API returns CSRF tokens, allowing the results to be
3203 * framed can compromise your user's account security.
3204 * Options are:
3205 * - 'DENY': Do not allow framing. This is recommended for most wikis.
3206 * - 'SAMEORIGIN': Allow framing by pages on the same domain.
3207 * - false: Allow all framing.
3208 * Note: $wgBreakFrames will override this for human formatted API output.
3209 */
3210 $wgApiFrameOptions = 'DENY';
3211
3212 /**
3213 * Disable output compression (enabled by default if zlib is available)
3214 */
3215 $wgDisableOutputCompression = false;
3216
3217 /**
3218 * Should we allow a broader set of characters in id attributes, per HTML5? If
3219 * not, use only HTML 4-compatible IDs. This option is for testing -- when the
3220 * functionality is ready, it will be on by default with no option.
3221 *
3222 * Currently this appears to work fine in all browsers, but it's disabled by
3223 * default because it normalizes id's a bit too aggressively, breaking preexisting
3224 * content (particularly Cite). See bug 27733, bug 27694, bug 27474.
3225 */
3226 $wgExperimentalHtmlIds = false;
3227
3228 /**
3229 * Abstract list of footer icons for skins in place of old copyrightico and poweredbyico code
3230 * You can add new icons to the built in copyright or poweredby, or you can create
3231 * a new block. Though note that you may need to add some custom css to get good styling
3232 * of new blocks in monobook. vector and modern should work without any special css.
3233 *
3234 * $wgFooterIcons itself is a key/value array.
3235 * The key is the name of a block that the icons will be wrapped in. The final id varies
3236 * by skin; Monobook and Vector will turn poweredby into f-poweredbyico while Modern
3237 * turns it into mw_poweredby.
3238 * The value is either key/value array of icons or a string.
3239 * In the key/value array the key may or may not be used by the skin but it can
3240 * be used to find the icon and unset it or change the icon if needed.
3241 * This is useful for disabling icons that are set by extensions.
3242 * The value should be either a string or an array. If it is a string it will be output
3243 * directly as html, however some skins may choose to ignore it. An array is the preferred format
3244 * for the icon, the following keys are used:
3245 * - src: An absolute url to the image to use for the icon, this is recommended
3246 * but not required, however some skins will ignore icons without an image
3247 * - srcset: optional additional-resolution images; see HTML5 specs
3248 * - url: The url to use in the a element around the text or icon, if not set an a element will
3249 * not be outputted
3250 * - alt: This is the text form of the icon, it will be displayed without an image in
3251 * skins like Modern or if src is not set, and will otherwise be used as
3252 * the alt="" for the image. This key is required.
3253 * - width and height: If the icon specified by src is not of the standard size
3254 * you can specify the size of image to use with these keys.
3255 * Otherwise they will default to the standard 88x31.
3256 * @todo Reformat documentation.
3257 */
3258 $wgFooterIcons = array(
3259 "copyright" => array(
3260 "copyright" => array(), // placeholder for the built in copyright icon
3261 ),
3262 "poweredby" => array(
3263 "mediawiki" => array(
3264 // Defaults to point at
3265 // "$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png"
3266 // plus srcset for 1.5x, 2x resolution variants.
3267 "src" => null,
3268 "url" => "//www.mediawiki.org/",
3269 "alt" => "Powered by MediaWiki",
3270 )
3271 ),
3272 );
3273
3274 /**
3275 * Login / create account link behavior when it's possible for anonymous users
3276 * to create an account.
3277 * - true = use a combined login / create account link
3278 * - false = split login and create account into two separate links
3279 */
3280 $wgUseCombinedLoginLink = false;
3281
3282 /**
3283 * Display user edit counts in various prominent places.
3284 */
3285 $wgEdititis = false;
3286
3287 /**
3288 * Some web hosts attempt to rewrite all responses with a 404 (not found)
3289 * status code, mangling or hiding MediaWiki's output. If you are using such a
3290 * host, you should start looking for a better one. While you're doing that,
3291 * set this to false to convert some of MediaWiki's 404 responses to 200 so
3292 * that the generated error pages can be seen.
3293 *
3294 * In cases where for technical reasons it is more important for MediaWiki to
3295 * send the correct status code than for the body to be transmitted intact,
3296 * this configuration variable is ignored.
3297 */
3298 $wgSend404Code = true;
3299
3300 /**
3301 * The $wgShowRollbackEditCount variable is used to show how many edits will be
3302 * rollback. The numeric value of the variable are the limit up to are counted.
3303 * If the value is false or 0, the edits are not counted. Disabling this will
3304 * furthermore prevent MediaWiki from hiding some useless rollback links.
3305 *
3306 * @since 1.20
3307 */
3308 $wgShowRollbackEditCount = 10;
3309
3310 /**
3311 * Output a <link rel="canonical"> tag on every page indicating the canonical
3312 * server which should be used, i.e. $wgServer or $wgCanonicalServer. Since
3313 * detection of the current server is unreliable, the link is sent
3314 * unconditionally.
3315 */
3316 $wgEnableCanonicalServerLink = false;
3317
3318 /**
3319 * When OutputHandler is used, mangle any output that contains
3320 * <cross-domain-policy>. Without this, an attacker can send their own
3321 * cross-domain policy unless it is prevented by the crossdomain.xml file at
3322 * the domain root.
3323 *
3324 * @since 1.25
3325 */
3326 $wgMangleFlashPolicy = true;
3327
3328 /** @} */ # End of output format settings }
3329
3330 /*************************************************************************//**
3331 * @name Resource loader settings
3332 * @{
3333 */
3334
3335 /**
3336 * Client-side resource modules.
3337 *
3338 * Extensions should add their resource loader module definitions
3339 * to the $wgResourceModules variable.
3340 *
3341 * @par Example:
3342 * @code
3343 * $wgResourceModules['ext.myExtension'] = array(
3344 * 'scripts' => 'myExtension.js',
3345 * 'styles' => 'myExtension.css',
3346 * 'dependencies' => array( 'jquery.cookie', 'jquery.tabIndex' ),
3347 * 'localBasePath' => __DIR__,
3348 * 'remoteExtPath' => 'MyExtension',
3349 * );
3350 * @endcode
3351 */
3352 $wgResourceModules = array();
3353
3354 /**
3355 * Skin-specific styles for resource modules.
3356 *
3357 * These are later added to the 'skinStyles' list of the existing module. The 'styles' list can
3358 * not be modified or disabled.
3359 *
3360 * For example, here is a module "bar" and how skin Foo would provide additional styles for it.
3361 *
3362 * @par Example:
3363 * @code
3364 * $wgResourceModules['bar'] = array(
3365 * 'scripts' => 'resources/bar/bar.js',
3366 * 'styles' => 'resources/bar/main.css',
3367 * );
3368 *
3369 * $wgResourceModuleSkinStyles['foo'] = array(
3370 * 'bar' => 'skins/Foo/bar.css',
3371 * );
3372 * @endcode
3373 *
3374 * This is mostly equivalent to:
3375 *
3376 * @par Equivalent:
3377 * @code
3378 * $wgResourceModules['bar'] = array(
3379 * 'scripts' => 'resources/bar/bar.js',
3380 * 'styles' => 'resources/bar/main.css',
3381 * 'skinStyles' => array(
3382 * 'foo' => skins/Foo/bar.css',
3383 * ),
3384 * );
3385 * @endcode
3386 *
3387 * If the module already defines its own entry in `skinStyles` for a given skin, then
3388 * $wgResourceModuleSkinStyles is ignored.
3389 *
3390 * If a module defines a `skinStyles['default']` the skin may want to extend that instead
3391 * of replacing them. This can be done using the `+` prefix.
3392 *
3393 * @par Example:
3394 * @code
3395 * $wgResourceModules['bar'] = array(
3396 * 'scripts' => 'resources/bar/bar.js',
3397 * 'styles' => 'resources/bar/basic.css',
3398 * 'skinStyles' => array(
3399 * 'default' => 'resources/bar/additional.css',
3400 * ),
3401 * );
3402 * // Note the '+' character:
3403 * $wgResourceModuleSkinStyles['foo'] = array(
3404 * '+bar' => 'skins/Foo/bar.css',
3405 * );
3406 * @endcode
3407 *
3408 * This is mostly equivalent to:
3409 *
3410 * @par Equivalent:
3411 * @code
3412 * $wgResourceModules['bar'] = array(
3413 * 'scripts' => 'resources/bar/bar.js',
3414 * 'styles' => 'resources/bar/basic.css',
3415 * 'skinStyles' => array(
3416 * 'default' => 'resources/bar/additional.css',
3417 * 'foo' => array(
3418 * 'resources/bar/additional.css',
3419 * 'skins/Foo/bar.css',
3420 * ),
3421 * ),
3422 * );
3423 * @endcode
3424 *
3425 * In other words, as a module author, use the `styles` list for stylesheets that may not be
3426 * disabled by a skin. To provide default styles that may be extended or replaced,
3427 * use `skinStyles['default']`.
3428 *
3429 * As with $wgResourceModules, paths default to being relative to the MediaWiki root.
3430 * You should always provide a localBasePath and remoteBasePath (or remoteExtPath/remoteSkinPath).
3431 *
3432 * @par Example:
3433 * @code
3434 * $wgResourceModuleSkinStyles['foo'] = array(
3435 * 'bar' => 'bar.css',
3436 * 'quux' => 'quux.css',
3437 * 'remoteSkinPath' => 'Foo',
3438 * 'localBasePath' => __DIR__,
3439 * );
3440 * @endcode
3441 */
3442 $wgResourceModuleSkinStyles = array();
3443
3444 /**
3445 * Extensions should register foreign module sources here. 'local' is a
3446 * built-in source that is not in this array, but defined by
3447 * ResourceLoader::__construct() so that it cannot be unset.
3448 *
3449 * @par Example:
3450 * @code
3451 * $wgResourceLoaderSources['foo'] = 'http://example.org/w/load.php';
3452 * @endcode
3453 */
3454 $wgResourceLoaderSources = array();
3455
3456 /**
3457 * Default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
3458 * If not set, then $wgScriptPath will be used as a fallback.
3459 */
3460 $wgResourceBasePath = null;
3461
3462 /**
3463 * Maximum time in seconds to cache resources served by the resource loader.
3464 * Used to set last modified headers (max-age/s-maxage).
3465 *
3466 * Following options to distinguish:
3467 * - versioned: Used for modules with a version, because changing version
3468 * numbers causes cache misses. This normally has a long expiry time.
3469 * - unversioned: Used for modules without a version to propagate changes
3470 * quickly to clients. Also used for modules with errors to recover quickly.
3471 * This normally has a short expiry time.
3472 *
3473 * Expiry time for the options to distinguish:
3474 * - server: Squid/Varnish but also any other public proxy cache between the
3475 * client and MediaWiki.
3476 * - client: On the client side (e.g. in the browser cache).
3477 */
3478 $wgResourceLoaderMaxage = array(
3479 'versioned' => array(
3480 'server' => 30 * 24 * 60 * 60, // 30 days
3481 'client' => 30 * 24 * 60 * 60, // 30 days
3482 ),
3483 'unversioned' => array(
3484 'server' => 5 * 60, // 5 minutes
3485 'client' => 5 * 60, // 5 minutes
3486 ),
3487 );
3488
3489 /**
3490 * The default debug mode (on/off) for of ResourceLoader requests.
3491 *
3492 * This will still be overridden when the debug URL parameter is used.
3493 */
3494 $wgResourceLoaderDebug = false;
3495
3496 /**
3497 * Enable embedding of certain resources using Edge Side Includes. This will
3498 * improve performance but only works if there is something in front of the
3499 * web server (e..g a Squid or Varnish server) configured to process the ESI.
3500 */
3501 $wgResourceLoaderUseESI = false;
3502
3503 /**
3504 * Put each statement on its own line when minifying JavaScript. This makes
3505 * debugging in non-debug mode a bit easier.
3506 */
3507 $wgResourceLoaderMinifierStatementsOnOwnLine = false;
3508
3509 /**
3510 * Maximum line length when minifying JavaScript. This is not a hard maximum:
3511 * the minifier will try not to produce lines longer than this, but may be
3512 * forced to do so in certain cases.
3513 */
3514 $wgResourceLoaderMinifierMaxLineLength = 1000;
3515
3516 /**
3517 * Whether to include the mediawiki.legacy JS library (old wikibits.js), and its
3518 * dependencies.
3519 */
3520 $wgIncludeLegacyJavaScript = true;
3521
3522 /**
3523 * Whether to preload the mediawiki.util module as blocking module in the top
3524 * queue.
3525 *
3526 * Before MediaWiki 1.19, modules used to load slower/less asynchronous which
3527 * allowed modules to lack dependencies on 'popular' modules that were likely
3528 * loaded already.
3529 *
3530 * This setting is to aid scripts during migration by providing mediawiki.util
3531 * unconditionally (which was the most commonly missed dependency).
3532 * It doesn't cover all missing dependencies obviously but should fix most of
3533 * them.
3534 *
3535 * This should be removed at some point after site/user scripts have been fixed.
3536 * Enable this if your wiki has a large amount of user/site scripts that are
3537 * lacking dependencies.
3538 * @todo Deprecate
3539 */
3540 $wgPreloadJavaScriptMwUtil = false;
3541
3542 /**
3543 * Whether or not to assign configuration variables to the global window object.
3544 *
3545 * If this is set to false, old code using deprecated variables will no longer
3546 * work.
3547 *
3548 * @par Example of legacy code:
3549 * @code{,js}
3550 * if ( window.wgRestrictionEdit ) { ... }
3551 * @endcode
3552 * or:
3553 * @code{,js}
3554 * if ( wgIsArticle ) { ... }
3555 * @endcode
3556 *
3557 * Instead, one needs to use mw.config.
3558 * @par Example using mw.config global configuration:
3559 * @code{,js}
3560 * if ( mw.config.exists('wgRestrictionEdit') ) { ... }
3561 * @endcode
3562 * or:
3563 * @code{,js}
3564 * if ( mw.config.get('wgIsArticle') ) { ... }
3565 * @endcode
3566 */
3567 $wgLegacyJavaScriptGlobals = true;
3568
3569 /**
3570 * If set to a positive number, ResourceLoader will not generate URLs whose
3571 * query string is more than this many characters long, and will instead use
3572 * multiple requests with shorter query strings. This degrades performance,
3573 * but may be needed if your web server has a low (less than, say 1024)
3574 * query string length limit or a low value for suhosin.get.max_value_length
3575 * that you can't increase.
3576 *
3577 * If set to a negative number, ResourceLoader will assume there is no query
3578 * string length limit.
3579 *
3580 * Defaults to a value based on php configuration.
3581 */
3582 $wgResourceLoaderMaxQueryLength = false;
3583
3584 /**
3585 * If set to true, JavaScript modules loaded from wiki pages will be parsed
3586 * prior to minification to validate it.
3587 *
3588 * Parse errors will result in a JS exception being thrown during module load,
3589 * which avoids breaking other modules loaded in the same request.
3590 */
3591 $wgResourceLoaderValidateJS = true;
3592
3593 /**
3594 * If set to true, statically-sourced (file-backed) JavaScript resources will
3595 * be parsed for validity before being bundled up into ResourceLoader modules.
3596 *
3597 * This can be helpful for development by providing better error messages in
3598 * default (non-debug) mode, but JavaScript parsing is slow and memory hungry
3599 * and may fail on large pre-bundled frameworks.
3600 */
3601 $wgResourceLoaderValidateStaticJS = false;
3602
3603 /**
3604 * If set to true, asynchronous loading of bottom-queue scripts in the "<head>"
3605 * will be enabled. This is an experimental feature that's supposed to make
3606 * JavaScript load faster.
3607 */
3608 $wgResourceLoaderExperimentalAsyncLoading = false;
3609
3610 /**
3611 * Global LESS variables. An associative array binding variable names to
3612 * LESS code snippets representing their values.
3613 *
3614 * Adding an item here is equivalent to writing `@variable: value;`
3615 * at the beginning of all your .less files, with all the consequences.
3616 * In particular, string values must be escaped and quoted.
3617 *
3618 * Changes to LESS variables do not trigger cache invalidation.
3619 *
3620 * If the LESS variables need to be dynamic, you can use the
3621 * ResourceLoaderGetLessVars hook (since 1.25).
3622 *
3623 * @par Example:
3624 * @code
3625 * $wgResourceLoaderLESSVars = array(
3626 * 'baseFontSize' => '1em',
3627 * 'smallFontSize' => '0.75em',
3628 * 'WikimediaBlue' => '#006699',
3629 * );
3630 * @endcode
3631 * @since 1.22
3632 */
3633 $wgResourceLoaderLESSVars = array();
3634
3635 /**
3636 * Custom LESS functions. An associative array mapping function name to PHP
3637 * callable.
3638 *
3639 * Changes to LESS functions do not trigger cache invalidation.
3640 *
3641 * @since 1.22
3642 * @deprecated since 1.24 Questionable usefulness and problematic to support,
3643 * will be removed in the future.
3644 */
3645 $wgResourceLoaderLESSFunctions = array();
3646
3647 /**
3648 * Default import paths for LESS modules. LESS files referenced in @import
3649 * statements will be looked up here first, and relative to the importing file
3650 * second. To avoid collisions, it's important for the LESS files in these
3651 * directories to have a common, predictable file name prefix.
3652 *
3653 * Extensions need not (and should not) register paths in
3654 * $wgResourceLoaderLESSImportPaths. The import path includes the path of the
3655 * currently compiling LESS file, which allows each extension to freely import
3656 * files from its own tree.
3657 *
3658 * @since 1.22
3659 */
3660 $wgResourceLoaderLESSImportPaths = array(
3661 "$IP/resources/src/mediawiki.less/",
3662 );
3663
3664 /**
3665 * Whether ResourceLoader should attempt to persist modules in localStorage on
3666 * browsers that support the Web Storage API.
3667 *
3668 * @since 1.23 - Client-side module persistence is experimental. Exercise care.
3669 */
3670 $wgResourceLoaderStorageEnabled = false;
3671
3672 /**
3673 * Cache version for client-side ResourceLoader module storage. You can trigger
3674 * invalidation of the contents of the module store by incrementing this value.
3675 *
3676 * @since 1.23
3677 */
3678 $wgResourceLoaderStorageVersion = 1;
3679
3680 /**
3681 * Whether to allow site-wide CSS (MediaWiki:Common.css and friends) on
3682 * restricted pages like Special:UserLogin or Special:Preferences where
3683 * JavaScript is disabled for security reasons. As it is possible to
3684 * execute JavaScript through CSS, setting this to true opens up a
3685 * potential security hole. Some sites may "skin" their wiki by using
3686 * site-wide CSS, causing restricted pages to look unstyled and different
3687 * from the rest of the site.
3688 *
3689 * @since 1.25
3690 */
3691 $wgAllowSiteCSSOnRestrictedPages = false;
3692
3693 /** @} */ # End of resource loader settings }
3694
3695 /*************************************************************************//**
3696 * @name Page title and interwiki link settings
3697 * @{
3698 */
3699
3700 /**
3701 * Name of the project namespace. If left set to false, $wgSitename will be
3702 * used instead.
3703 */
3704 $wgMetaNamespace = false;
3705
3706 /**
3707 * Name of the project talk namespace.
3708 *
3709 * Normally you can ignore this and it will be something like
3710 * $wgMetaNamespace . "_talk". In some languages, you may want to set this
3711 * manually for grammatical reasons.
3712 */
3713 $wgMetaNamespaceTalk = false;
3714
3715 /**
3716 * Additional namespaces. If the namespaces defined in Language.php and
3717 * Namespace.php are insufficient, you can create new ones here, for example,
3718 * to import Help files in other languages. You can also override the namespace
3719 * names of existing namespaces. Extensions developers should use
3720 * $wgCanonicalNamespaceNames.
3721 *
3722 * @warning Once you delete a namespace, the pages in that namespace will
3723 * no longer be accessible. If you rename it, then you can access them through
3724 * the new namespace name.
3725 *
3726 * Custom namespaces should start at 100 to avoid conflicting with standard
3727 * namespaces, and should always follow the even/odd main/talk pattern.
3728 *
3729 * @par Example:
3730 * @code
3731 * $wgExtraNamespaces = array(
3732 * 100 => "Hilfe",
3733 * 101 => "Hilfe_Diskussion",
3734 * 102 => "Aide",
3735 * 103 => "Discussion_Aide"
3736 * );
3737 * @endcode
3738 *
3739 * @todo Add a note about maintenance/namespaceDupes.php
3740 */
3741 $wgExtraNamespaces = array();
3742
3743 /**
3744 * Same as above, but for namespaces with gender distinction.
3745 * Note: the default form for the namespace should also be set
3746 * using $wgExtraNamespaces for the same index.
3747 * @since 1.18
3748 */
3749 $wgExtraGenderNamespaces = array();
3750
3751 /**
3752 * Namespace aliases.
3753 *
3754 * These are alternate names for the primary localised namespace names, which
3755 * are defined by $wgExtraNamespaces and the language file. If a page is
3756 * requested with such a prefix, the request will be redirected to the primary
3757 * name.
3758 *
3759 * Set this to a map from namespace names to IDs.
3760 *
3761 * @par Example:
3762 * @code
3763 * $wgNamespaceAliases = array(
3764 * 'Wikipedian' => NS_USER,
3765 * 'Help' => 100,
3766 * );
3767 * @endcode
3768 */
3769 $wgNamespaceAliases = array();
3770
3771 /**
3772 * Allowed title characters -- regex character class
3773 * Don't change this unless you know what you're doing
3774 *
3775 * Problematic punctuation:
3776 * - []{}|# Are needed for link syntax, never enable these
3777 * - <> Causes problems with HTML escaping, don't use
3778 * - % Enabled by default, minor problems with path to query rewrite rules, see below
3779 * - + Enabled by default, but doesn't work with path to query rewrite rules,
3780 * corrupted by apache
3781 * - ? Enabled by default, but doesn't work with path to PATH_INFO rewrites
3782 *
3783 * All three of these punctuation problems can be avoided by using an alias,
3784 * instead of a rewrite rule of either variety.
3785 *
3786 * The problem with % is that when using a path to query rewrite rule, URLs are
3787 * double-unescaped: once by Apache's path conversion code, and again by PHP. So
3788 * %253F, for example, becomes "?". Our code does not double-escape to compensate
3789 * for this, indeed double escaping would break if the double-escaped title was
3790 * passed in the query string rather than the path. This is a minor security issue
3791 * because articles can be created such that they are hard to view or edit.
3792 *
3793 * In some rare cases you may wish to remove + for compatibility with old links.
3794 *
3795 * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
3796 * this breaks interlanguage links
3797 */
3798 $wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+";
3799
3800 /**
3801 * The interwiki prefix of the current wiki, or false if it doesn't have one.
3802 *
3803 * @deprecated since 1.23; use $wgLocalInterwikis instead
3804 */
3805 $wgLocalInterwiki = false;
3806
3807 /**
3808 * Array for multiple $wgLocalInterwiki values, in case there are several
3809 * interwiki prefixes that point to the current wiki. If $wgLocalInterwiki is
3810 * set, its value is prepended to this array, for backwards compatibility.
3811 *
3812 * Note, recent changes feeds use only the first entry in this array (or
3813 * $wgLocalInterwiki, if it is set). See $wgRCFeeds
3814 */
3815 $wgLocalInterwikis = array();
3816
3817 /**
3818 * Expiry time for cache of interwiki table
3819 */
3820 $wgInterwikiExpiry = 10800;
3821
3822 /**
3823 * @name Interwiki caching settings.
3824 * @{
3825 */
3826
3827 /**
3828 *$wgInterwikiCache specifies path to constant database file.
3829 *
3830 * This cdb database is generated by dumpInterwiki from maintenance and has
3831 * such key formats:
3832 * - dbname:key - a simple key (e.g. enwiki:meta)
3833 * - _sitename:key - site-scope key (e.g. wiktionary:meta)
3834 * - __global:key - global-scope key (e.g. __global:meta)
3835 * - __sites:dbname - site mapping (e.g. __sites:enwiki)
3836 *
3837 * Sites mapping just specifies site name, other keys provide "local url"
3838 * data layout.
3839 */
3840 $wgInterwikiCache = false;
3841
3842 /**
3843 * Specify number of domains to check for messages.
3844 * - 1: Just wiki(db)-level
3845 * - 2: wiki and global levels
3846 * - 3: site levels
3847 */
3848 $wgInterwikiScopes = 3;
3849
3850 /**
3851 * Fallback site, if unable to resolve from cache
3852 */
3853 $wgInterwikiFallbackSite = 'wiki';
3854
3855 /** @} */ # end of Interwiki caching settings.
3856
3857 /**
3858 * @name SiteStore caching settings.
3859 * @{
3860 */
3861
3862 /**
3863 * Specify the file location for the Sites json cache file.
3864 */
3865 $wgSitesCacheFile = false;
3866
3867 /** @} */ # end of SiteStore caching settings.
3868
3869 /**
3870 * If local interwikis are set up which allow redirects,
3871 * set this regexp to restrict URLs which will be displayed
3872 * as 'redirected from' links.
3873 *
3874 * @par Example:
3875 * It might look something like this:
3876 * @code
3877 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
3878 * @endcode
3879 *
3880 * Leave at false to avoid displaying any incoming redirect markers.
3881 * This does not affect intra-wiki redirects, which don't change
3882 * the URL.
3883 */
3884 $wgRedirectSources = false;
3885
3886 /**
3887 * Set this to false to avoid forcing the first letter of links to capitals.
3888 *
3889 * @warning may break links! This makes links COMPLETELY case-sensitive. Links
3890 * appearing with a capital at the beginning of a sentence will *not* go to the
3891 * same place as links in the middle of a sentence using a lowercase initial.
3892 */
3893 $wgCapitalLinks = true;
3894
3895 /**
3896 * @since 1.16 - This can now be set per-namespace. Some special namespaces (such
3897 * as Special, see MWNamespace::$alwaysCapitalizedNamespaces for the full list) must be
3898 * true by default (and setting them has no effect), due to various things that
3899 * require them to be so. Also, since Talk namespaces need to directly mirror their
3900 * associated content namespaces, the values for those are ignored in favor of the
3901 * subject namespace's setting. Setting for NS_MEDIA is taken automatically from
3902 * NS_FILE.
3903 *
3904 * @par Example:
3905 * @code
3906 * $wgCapitalLinkOverrides[ NS_FILE ] = false;
3907 * @endcode
3908 */
3909 $wgCapitalLinkOverrides = array();
3910
3911 /**
3912 * Which namespaces should support subpages?
3913 * See Language.php for a list of namespaces.
3914 */
3915 $wgNamespacesWithSubpages = array(
3916 NS_TALK => true,
3917 NS_USER => true,
3918 NS_USER_TALK => true,
3919 NS_PROJECT => true,
3920 NS_PROJECT_TALK => true,
3921 NS_FILE_TALK => true,
3922 NS_MEDIAWIKI => true,
3923 NS_MEDIAWIKI_TALK => true,
3924 NS_TEMPLATE_TALK => true,
3925 NS_HELP => true,
3926 NS_HELP_TALK => true,
3927 NS_CATEGORY_TALK => true
3928 );
3929
3930 /**
3931 * Array holding default tracking category names.
3932 *
3933 * Array contains the system messages for each tracking category.
3934 * Tracking categories allow pages with certain characteristics to be tracked.
3935 * It works by adding any such page to a category automatically.
3936 *
3937 * A message with the suffix '-desc' should be added as a description message
3938 * to have extra information on Special:TrackingCategories.
3939 *
3940 * @deprecated since 1.25 Extensions should now register tracking categories using
3941 * the new extension registration system.
3942 *
3943 * @since 1.23
3944 */
3945 $wgTrackingCategories = array();
3946
3947 /**
3948 * Array of namespaces which can be deemed to contain valid "content", as far
3949 * as the site statistics are concerned. Useful if additional namespaces also
3950 * contain "content" which should be considered when generating a count of the
3951 * number of articles in the wiki.
3952 */
3953 $wgContentNamespaces = array( NS_MAIN );
3954
3955 /**
3956 * Max number of redirects to follow when resolving redirects.
3957 * 1 means only the first redirect is followed (default behavior).
3958 * 0 or less means no redirects are followed.
3959 */
3960 $wgMaxRedirects = 1;
3961
3962 /**
3963 * Array of invalid page redirect targets.
3964 * Attempting to create a redirect to any of the pages in this array
3965 * will make the redirect fail.
3966 * Userlogout is hard-coded, so it does not need to be listed here.
3967 * (bug 10569) Disallow Mypage and Mytalk as well.
3968 *
3969 * As of now, this only checks special pages. Redirects to pages in
3970 * other namespaces cannot be invalidated by this variable.
3971 */
3972 $wgInvalidRedirectTargets = array( 'Filepath', 'Mypage', 'Mytalk', 'Redirect' );
3973
3974 /** @} */ # End of title and interwiki settings }
3975
3976 /************************************************************************//**
3977 * @name Parser settings
3978 * These settings configure the transformation from wikitext to HTML.
3979 * @{
3980 */
3981
3982 /**
3983 * Parser configuration. Associative array with the following members:
3984 *
3985 * class The class name
3986 *
3987 * preprocessorClass The preprocessor class. Two classes are currently available:
3988 * Preprocessor_Hash, which uses plain PHP arrays for temporary
3989 * storage, and Preprocessor_DOM, which uses the DOM module for
3990 * temporary storage. Preprocessor_DOM generally uses less memory;
3991 * the speed of the two is roughly the same.
3992 *
3993 * If this parameter is not given, it uses Preprocessor_DOM if the
3994 * DOM module is available, otherwise it uses Preprocessor_Hash.
3995 *
3996 * The entire associative array will be passed through to the constructor as
3997 * the first parameter. Note that only Setup.php can use this variable --
3998 * the configuration will change at runtime via $wgParser member functions, so
3999 * the contents of this variable will be out-of-date. The variable can only be
4000 * changed during LocalSettings.php, in particular, it can't be changed during
4001 * an extension setup function.
4002 */
4003 $wgParserConf = array(
4004 'class' => 'Parser',
4005 #'preprocessorClass' => 'Preprocessor_Hash',
4006 );
4007
4008 /**
4009 * Maximum indent level of toc.
4010 */
4011 $wgMaxTocLevel = 999;
4012
4013 /**
4014 * A complexity limit on template expansion: the maximum number of nodes visited
4015 * by PPFrame::expand()
4016 */
4017 $wgMaxPPNodeCount = 1000000;
4018
4019 /**
4020 * A complexity limit on template expansion: the maximum number of elements
4021 * generated by Preprocessor::preprocessToObj(). This allows you to limit the
4022 * amount of memory used by the Preprocessor_DOM node cache: testing indicates
4023 * that each element uses about 160 bytes of memory on a 64-bit processor, so
4024 * this default corresponds to about 155 MB.
4025 *
4026 * When the limit is exceeded, an exception is thrown.
4027 */
4028 $wgMaxGeneratedPPNodeCount = 1000000;
4029
4030 /**
4031 * Maximum recursion depth for templates within templates.
4032 * The current parser adds two levels to the PHP call stack for each template,
4033 * and xdebug limits the call stack to 100 by default. So this should hopefully
4034 * stop the parser before it hits the xdebug limit.
4035 */
4036 $wgMaxTemplateDepth = 40;
4037
4038 /**
4039 * @see $wgMaxTemplateDepth
4040 */
4041 $wgMaxPPExpandDepth = 40;
4042
4043 /**
4044 * URL schemes that should be recognized as valid by wfParseUrl().
4045 *
4046 * WARNING: Do not add 'file:' to this or internal file links will be broken.
4047 * Instead, if you want to support file links, add 'file://'. The same applies
4048 * to any other protocols with the same name as a namespace. See bug #44011 for
4049 * more information.
4050 *
4051 * @see wfParseUrl
4052 */
4053 $wgUrlProtocols = array(
4054 'bitcoin:', 'ftp://', 'ftps://', 'geo:', 'git://', 'gopher://', 'http://',
4055 'https://', 'irc://', 'ircs://', 'magnet:', 'mailto:', 'mms://', 'news:',
4056 'nntp://', 'redis://', 'sftp://', 'sip:', 'sips:', 'sms:', 'ssh://',
4057 'svn://', 'tel:', 'telnet://', 'urn:', 'worldwind://', 'xmpp:', '//'
4058 );
4059
4060 /**
4061 * If true, removes (by substituting) templates in signatures.
4062 */
4063 $wgCleanSignatures = true;
4064
4065 /**
4066 * Whether to allow inline image pointing to other websites
4067 */
4068 $wgAllowExternalImages = false;
4069
4070 /**
4071 * If the above is false, you can specify an exception here. Image URLs
4072 * that start with this string are then rendered, while all others are not.
4073 * You can use this to set up a trusted, simple repository of images.
4074 * You may also specify an array of strings to allow multiple sites
4075 *
4076 * @par Examples:
4077 * @code
4078 * $wgAllowExternalImagesFrom = 'http://127.0.0.1/';
4079 * $wgAllowExternalImagesFrom = array( 'http://127.0.0.1/', 'http://example.com' );
4080 * @endcode
4081 */
4082 $wgAllowExternalImagesFrom = '';
4083
4084 /**
4085 * If $wgAllowExternalImages is false, you can allow an on-wiki
4086 * whitelist of regular expression fragments to match the image URL
4087 * against. If the image matches one of the regular expression fragments,
4088 * The image will be displayed.
4089 *
4090 * Set this to true to enable the on-wiki whitelist (MediaWiki:External image whitelist)
4091 * Or false to disable it
4092 */
4093 $wgEnableImageWhitelist = true;
4094
4095 /**
4096 * A different approach to the above: simply allow the "<img>" tag to be used.
4097 * This allows you to specify alt text and other attributes, copy-paste HTML to
4098 * your wiki more easily, etc. However, allowing external images in any manner
4099 * will allow anyone with editing rights to snoop on your visitors' IP
4100 * addresses and so forth, if they wanted to, by inserting links to images on
4101 * sites they control.
4102 */
4103 $wgAllowImageTag = false;
4104
4105 /**
4106 * $wgUseTidy: use tidy to make sure HTML output is sane.
4107 * Tidy is a free tool that fixes broken HTML.
4108 * See http://www.w3.org/People/Raggett/tidy/
4109 *
4110 * - $wgTidyBin should be set to the path of the binary and
4111 * - $wgTidyConf to the path of the configuration file.
4112 * - $wgTidyOpts can include any number of parameters.
4113 * - $wgTidyInternal controls the use of the PECL extension or the
4114 * libtidy (PHP >= 5) extension to use an in-process tidy library instead
4115 * of spawning a separate program.
4116 * Normally you shouldn't need to override the setting except for
4117 * debugging. To install, use 'pear install tidy' and add a line
4118 * 'extension=tidy.so' to php.ini.
4119 */
4120 $wgUseTidy = false;
4121
4122 /**
4123 * @see $wgUseTidy
4124 */
4125 $wgAlwaysUseTidy = false;
4126
4127 /**
4128 * @see $wgUseTidy
4129 */
4130 $wgTidyBin = 'tidy';
4131
4132 /**
4133 * @see $wgUseTidy
4134 */
4135 $wgTidyConf = $IP . '/includes/tidy.conf';
4136
4137 /**
4138 * @see $wgUseTidy
4139 */
4140 $wgTidyOpts = '';
4141
4142 /**
4143 * @see $wgUseTidy
4144 */
4145 $wgTidyInternal = extension_loaded( 'tidy' );
4146
4147 /**
4148 * Put tidy warnings in HTML comments
4149 * Only works for internal tidy.
4150 */
4151 $wgDebugTidy = false;
4152
4153 /**
4154 * Allow raw, unchecked HTML in "<html>...</html>" sections.
4155 * THIS IS VERY DANGEROUS on a publicly editable site, so USE wgGroupPermissions
4156 * TO RESTRICT EDITING to only those that you trust
4157 */
4158 $wgRawHtml = false;
4159
4160 /**
4161 * Set a default target for external links, e.g. _blank to pop up a new window
4162 */
4163 $wgExternalLinkTarget = false;
4164
4165 /**
4166 * If true, external URL links in wiki text will be given the
4167 * rel="nofollow" attribute as a hint to search engines that
4168 * they should not be followed for ranking purposes as they
4169 * are user-supplied and thus subject to spamming.
4170 */
4171 $wgNoFollowLinks = true;
4172
4173 /**
4174 * Namespaces in which $wgNoFollowLinks doesn't apply.
4175 * See Language.php for a list of namespaces.
4176 */
4177 $wgNoFollowNsExceptions = array();
4178
4179 /**
4180 * If this is set to an array of domains, external links to these domain names
4181 * (or any subdomains) will not be set to rel="nofollow" regardless of the
4182 * value of $wgNoFollowLinks. For instance:
4183 *
4184 * $wgNoFollowDomainExceptions = array( 'en.wikipedia.org', 'wiktionary.org',
4185 * 'mediawiki.org' );
4186 *
4187 * This would add rel="nofollow" to links to de.wikipedia.org, but not
4188 * en.wikipedia.org, wiktionary.org, en.wiktionary.org, us.en.wikipedia.org,
4189 * etc.
4190 *
4191 * Defaults to mediawiki.org for the links included in the software by default.
4192 */
4193 $wgNoFollowDomainExceptions = array( 'mediawiki.org' );
4194
4195 /**
4196 * Allow DISPLAYTITLE to change title display
4197 */
4198 $wgAllowDisplayTitle = true;
4199
4200 /**
4201 * For consistency, restrict DISPLAYTITLE to text that normalizes to the same
4202 * canonical DB key. Also disallow some inline CSS rules like display: none;
4203 * which can cause the text to be hidden or unselectable.
4204 */
4205 $wgRestrictDisplayTitle = true;
4206
4207 /**
4208 * Maximum number of calls per parse to expensive parser functions such as
4209 * PAGESINCATEGORY.
4210 */
4211 $wgExpensiveParserFunctionLimit = 100;
4212
4213 /**
4214 * Preprocessor caching threshold
4215 * Setting it to 'false' will disable the preprocessor cache.
4216 */
4217 $wgPreprocessorCacheThreshold = 1000;
4218
4219 /**
4220 * Enable interwiki transcluding. Only when iw_trans=1 in the interwiki table.
4221 */
4222 $wgEnableScaryTranscluding = false;
4223
4224 /**
4225 * Expiry time for transcluded templates cached in transcache database table.
4226 * Only used $wgEnableInterwikiTranscluding is set to true.
4227 */
4228 $wgTranscludeCacheExpiry = 3600;
4229
4230 /** @} */ # end of parser settings }
4231
4232 /************************************************************************//**
4233 * @name Statistics
4234 * @{
4235 */
4236
4237 /**
4238 * Method used to determine if a page in a content namespace should be counted
4239 * as a valid article.
4240 *
4241 * Redirect pages will never be counted as valid articles.
4242 *
4243 * This variable can have the following values:
4244 * - 'any': all pages as considered as valid articles
4245 * - 'comma': the page must contain a comma to be considered valid
4246 * - 'link': the page must contain a [[wiki link]] to be considered valid
4247 *
4248 * See also See https://www.mediawiki.org/wiki/Manual:Article_count
4249 *
4250 * Retroactively changing this variable will not affect the existing count,
4251 * to update it, you will need to run the maintenance/updateArticleCount.php
4252 * script.
4253 */
4254 $wgArticleCountMethod = 'link';
4255
4256 /**
4257 * How many days user must be idle before he is considered inactive. Will affect
4258 * the number shown on Special:Statistics, Special:ActiveUsers, and the
4259 * {{NUMBEROFACTIVEUSERS}} magic word in wikitext.
4260 * You might want to leave this as the default value, to provide comparable
4261 * numbers between different wikis.
4262 */
4263 $wgActiveUserDays = 30;
4264
4265 /** @} */ # End of statistics }
4266
4267 /************************************************************************//**
4268 * @name User accounts, authentication
4269 * @{
4270 */
4271
4272 /**
4273 * For compatibility with old installations set to false
4274 * @deprecated since 1.24 will be removed in future
4275 */
4276 $wgPasswordSalt = true;
4277
4278 /**
4279 * Specifies the minimal length of a user password. If set to 0, empty pass-
4280 * words are allowed.
4281 */
4282 $wgMinimalPasswordLength = 1;
4283
4284 /**
4285 * Specifies the maximal length of a user password (T64685).
4286 *
4287 * It is not recommended to make this greater than the default, as it can
4288 * allow DoS attacks by users setting really long passwords. In addition,
4289 * this should not be lowered too much, as it enforces weak passwords.
4290 *
4291 * @warning Unlike other password settings, user with passwords greater than
4292 * the maximum will not be able to log in.
4293 */
4294 $wgMaximalPasswordLength = 4096;
4295
4296 /**
4297 * Specifies if users should be sent to a password-reset form on login, if their
4298 * password doesn't meet the requirements of User::isValidPassword().
4299 * @since 1.23
4300 */
4301 $wgInvalidPasswordReset = true;
4302
4303 /**
4304 * Default password type to use when hashing user passwords
4305 *
4306 * @since 1.24
4307 */
4308 $wgPasswordDefault = 'pbkdf2';
4309
4310 /**
4311 * Configuration for built-in password types. Maps the password type
4312 * to an array of options. The 'class' option is the Password class to
4313 * use. All other options are class-dependent.
4314 *
4315 * An advanced example:
4316 * @code
4317 * $wgPasswordConfig['bcrypt-peppered'] = array(
4318 * 'class' => 'EncryptedPassword',
4319 * 'underlying' => 'bcrypt',
4320 * 'secrets' => array(),
4321 * 'cipher' => MCRYPT_RIJNDAEL_256,
4322 * 'mode' => MCRYPT_MODE_CBC,
4323 * 'cost' => 5,
4324 * );
4325 * @endcode
4326 *
4327 * @since 1.24
4328 */
4329 $wgPasswordConfig = array(
4330 'A' => array(
4331 'class' => 'MWOldPassword',
4332 ),
4333 'B' => array(
4334 'class' => 'MWSaltedPassword',
4335 ),
4336 'pbkdf2-legacyA' => array(
4337 'class' => 'LayeredParameterizedPassword',
4338 'types' => array(
4339 'A',
4340 'pbkdf2',
4341 ),
4342 ),
4343 'pbkdf2-legacyB' => array(
4344 'class' => 'LayeredParameterizedPassword',
4345 'types' => array(
4346 'B',
4347 'pbkdf2',
4348 ),
4349 ),
4350 'bcrypt' => array(
4351 'class' => 'BcryptPassword',
4352 'cost' => 9,
4353 ),
4354 'pbkdf2' => array(
4355 'class' => 'Pbkdf2Password',
4356 'algo' => 'sha256',
4357 'cost' => '10000',
4358 'length' => '128',
4359 ),
4360 );
4361
4362 /**
4363 * Whether to allow password resets ("enter some identifying data, and we'll send an email
4364 * with a temporary password you can use to get back into the account") identified by
4365 * various bits of data. Setting all of these to false (or the whole variable to false)
4366 * has the effect of disabling password resets entirely
4367 */
4368 $wgPasswordResetRoutes = array(
4369 'username' => true,
4370 'email' => false,
4371 );
4372
4373 /**
4374 * Maximum number of Unicode characters in signature
4375 */
4376 $wgMaxSigChars = 255;
4377
4378 /**
4379 * Maximum number of bytes in username. You want to run the maintenance
4380 * script ./maintenance/checkUsernames.php once you have changed this value.
4381 */
4382 $wgMaxNameChars = 255;
4383
4384 /**
4385 * Array of usernames which may not be registered or logged in from
4386 * Maintenance scripts can still use these
4387 */
4388 $wgReservedUsernames = array(
4389 'MediaWiki default', // Default 'Main Page' and MediaWiki: message pages
4390 'Conversion script', // Used for the old Wikipedia software upgrade
4391 'Maintenance script', // Maintenance scripts which perform editing, image import script
4392 'Template namespace initialisation script', // Used in 1.2->1.3 upgrade
4393 'ScriptImporter', // Default user name used by maintenance/importSiteScripts.php
4394 'msg:double-redirect-fixer', // Automatic double redirect fix
4395 'msg:usermessage-editor', // Default user for leaving user messages
4396 'msg:proxyblocker', // For $wgProxyList and Special:Blockme (removed in 1.22)
4397 'msg:spambot_username', // Used by cleanupSpam.php
4398 );
4399
4400 /**
4401 * Settings added to this array will override the default globals for the user
4402 * preferences used by anonymous visitors and newly created accounts.
4403 * For instance, to disable editing on double clicks:
4404 * $wgDefaultUserOptions ['editondblclick'] = 0;
4405 */
4406 $wgDefaultUserOptions = array(
4407 'ccmeonemails' => 0,
4408 'cols' => 80,
4409 'date' => 'default',
4410 'diffonly' => 0,
4411 'disablemail' => 0,
4412 'editfont' => 'default',
4413 'editondblclick' => 0,
4414 'editsectiononrightclick' => 0,
4415 'enotifminoredits' => 0,
4416 'enotifrevealaddr' => 0,
4417 'enotifusertalkpages' => 1,
4418 'enotifwatchlistpages' => 1,
4419 'extendwatchlist' => 1,
4420 'fancysig' => 0,
4421 'forceeditsummary' => 0,
4422 'gender' => 'unknown',
4423 'hideminor' => 0,
4424 'hidepatrolled' => 0,
4425 'imagesize' => 2,
4426 'math' => 1,
4427 'minordefault' => 0,
4428 'newpageshidepatrolled' => 0,
4429 'nickname' => '',
4430 'norollbackdiff' => 0,
4431 'numberheadings' => 0,
4432 'previewonfirst' => 0,
4433 'previewontop' => 1,
4434 'rcdays' => 7,
4435 'rclimit' => 50,
4436 'rows' => 25,
4437 'showhiddencats' => 0,
4438 'shownumberswatching' => 1,
4439 'showtoolbar' => 1,
4440 'skin' => false,
4441 'stubthreshold' => 0,
4442 'thumbsize' => 5,
4443 'underline' => 2,
4444 'uselivepreview' => 0,
4445 'usenewrc' => 1,
4446 'watchcreations' => 1,
4447 'watchdefault' => 1,
4448 'watchdeletion' => 0,
4449 'watchlistdays' => 3.0,
4450 'watchlisthideanons' => 0,
4451 'watchlisthidebots' => 0,
4452 'watchlisthideliu' => 0,
4453 'watchlisthideminor' => 0,
4454 'watchlisthideown' => 0,
4455 'watchlisthidepatrolled' => 0,
4456 'watchmoves' => 0,
4457 'watchrollback' => 0,
4458 'wllimit' => 250,
4459 'useeditwarning' => 1,
4460 'prefershttps' => 1,
4461 );
4462
4463 /**
4464 * An array of preferences to not show for the user
4465 */
4466 $wgHiddenPrefs = array();
4467
4468 /**
4469 * Characters to prevent during new account creations.
4470 * This is used in a regular expression character class during
4471 * registration (regex metacharacters like / are escaped).
4472 */
4473 $wgInvalidUsernameCharacters = '@:';
4474
4475 /**
4476 * Character used as a delimiter when testing for interwiki userrights
4477 * (In Special:UserRights, it is possible to modify users on different
4478 * databases if the delimiter is used, e.g. "Someuser@enwiki").
4479 *
4480 * It is recommended that you have this delimiter in
4481 * $wgInvalidUsernameCharacters above, or you will not be able to
4482 * modify the user rights of those users via Special:UserRights
4483 */
4484 $wgUserrightsInterwikiDelimiter = '@';
4485
4486 /**
4487 * This is to let user authenticate using https when they come from http.
4488 * Based on an idea by George Herbert on wikitech-l:
4489 * http://lists.wikimedia.org/pipermail/wikitech-l/2010-October/050039.html
4490 * @since 1.17
4491 */
4492 $wgSecureLogin = false;
4493
4494 /** @} */ # end user accounts }
4495
4496 /************************************************************************//**
4497 * @name User rights, access control and monitoring
4498 * @{
4499 */
4500
4501 /**
4502 * Number of seconds before autoblock entries expire. Default 86400 = 1 day.
4503 */
4504 $wgAutoblockExpiry = 86400;
4505
4506 /**
4507 * Set this to true to allow blocked users to edit their own user talk page.
4508 */
4509 $wgBlockAllowsUTEdit = false;
4510
4511 /**
4512 * Allow sysops to ban users from accessing Emailuser
4513 */
4514 $wgSysopEmailBans = true;
4515
4516 /**
4517 * Limits on the possible sizes of range blocks.
4518 *
4519 * CIDR notation is hard to understand, it's easy to mistakenly assume that a
4520 * /1 is a small range and a /31 is a large range. For IPv4, setting a limit of
4521 * half the number of bits avoids such errors, and allows entire ISPs to be
4522 * blocked using a small number of range blocks.
4523 *
4524 * For IPv6, RFC 3177 recommends that a /48 be allocated to every residential
4525 * customer, so range blocks larger than /64 (half the number of bits) will
4526 * plainly be required. RFC 4692 implies that a very large ISP may be
4527 * allocated a /19 if a generous HD-Ratio of 0.8 is used, so we will use that
4528 * as our limit. As of 2012, blocking the whole world would require a /4 range.
4529 */
4530 $wgBlockCIDRLimit = array(
4531 'IPv4' => 16, # Blocks larger than a /16 (64k addresses) will not be allowed
4532 'IPv6' => 19,
4533 );
4534
4535 /**
4536 * If true, blocked users will not be allowed to login. When using this with
4537 * a public wiki, the effect of logging out blocked users may actually be
4538 * avers: unless the user's address is also blocked (e.g. auto-block),
4539 * logging the user out will again allow reading and editing, just as for
4540 * anonymous visitors.
4541 */
4542 $wgBlockDisablesLogin = false;
4543
4544 /**
4545 * Pages anonymous user may see, set as an array of pages titles.
4546 *
4547 * @par Example:
4548 * @code
4549 * $wgWhitelistRead = array ( "Main Page", "Wikipedia:Help");
4550 * @endcode
4551 *
4552 * Special:Userlogin and Special:ChangePassword are always whitelisted.
4553 *
4554 * @note This will only work if $wgGroupPermissions['*']['read'] is false --
4555 * see below. Otherwise, ALL pages are accessible, regardless of this setting.
4556 *
4557 * @note Also that this will only protect _pages in the wiki_. Uploaded files
4558 * will remain readable. You can use img_auth.php to protect uploaded files,
4559 * see https://www.mediawiki.org/wiki/Manual:Image_Authorization
4560 */
4561 $wgWhitelistRead = false;
4562
4563 /**
4564 * Pages anonymous user may see, set as an array of regular expressions.
4565 *
4566 * This function will match the regexp against the title name, which
4567 * is without underscore.
4568 *
4569 * @par Example:
4570 * To whitelist [[Main Page]]:
4571 * @code
4572 * $wgWhitelistReadRegexp = array( "/Main Page/" );
4573 * @endcode
4574 *
4575 * @note Unless ^ and/or $ is specified, a regular expression might match
4576 * pages not intended to be whitelisted. The above example will also
4577 * whitelist a page named 'Security Main Page'.
4578 *
4579 * @par Example:
4580 * To allow reading any page starting with 'User' regardless of the case:
4581 * @code
4582 * $wgWhitelistReadRegexp = array( "@^UsEr.*@i" );
4583 * @endcode
4584 * Will allow both [[User is banned]] and [[User:JohnDoe]]
4585 *
4586 * @note This will only work if $wgGroupPermissions['*']['read'] is false --
4587 * see below. Otherwise, ALL pages are accessible, regardless of this setting.
4588 */
4589 $wgWhitelistReadRegexp = false;
4590
4591 /**
4592 * Should editors be required to have a validated e-mail
4593 * address before being allowed to edit?
4594 */
4595 $wgEmailConfirmToEdit = false;
4596
4597 /**
4598 * Permission keys given to users in each group.
4599 *
4600 * This is an array where the keys are all groups and each value is an
4601 * array of the format (right => boolean).
4602 *
4603 * The second format is used to support per-namespace permissions.
4604 * Note that this feature does not fully work for all permission types.
4605 *
4606 * All users are implicitly in the '*' group including anonymous visitors;
4607 * logged-in users are all implicitly in the 'user' group. These will be
4608 * combined with the permissions of all groups that a given user is listed
4609 * in in the user_groups table.
4610 *
4611 * Note: Don't set $wgGroupPermissions = array(); unless you know what you're
4612 * doing! This will wipe all permissions, and may mean that your users are
4613 * unable to perform certain essential tasks or access new functionality
4614 * when new permissions are introduced and default grants established.
4615 *
4616 * Functionality to make pages inaccessible has not been extensively tested
4617 * for security. Use at your own risk!
4618 *
4619 * This replaces $wgWhitelistAccount and $wgWhitelistEdit
4620 */
4621 $wgGroupPermissions = array();
4622
4623 /** @cond file_level_code */
4624 // Implicit group for all visitors
4625 $wgGroupPermissions['*']['createaccount'] = true;
4626 $wgGroupPermissions['*']['read'] = true;
4627 $wgGroupPermissions['*']['edit'] = true;
4628 $wgGroupPermissions['*']['createpage'] = true;
4629 $wgGroupPermissions['*']['createtalk'] = true;
4630 $wgGroupPermissions['*']['writeapi'] = true;
4631 $wgGroupPermissions['*']['editmyusercss'] = true;
4632 $wgGroupPermissions['*']['editmyuserjs'] = true;
4633 $wgGroupPermissions['*']['viewmywatchlist'] = true;
4634 $wgGroupPermissions['*']['editmywatchlist'] = true;
4635 $wgGroupPermissions['*']['viewmyprivateinfo'] = true;
4636 $wgGroupPermissions['*']['editmyprivateinfo'] = true;
4637 $wgGroupPermissions['*']['editmyoptions'] = true;
4638 #$wgGroupPermissions['*']['patrolmarks'] = false; // let anons see what was patrolled
4639
4640 // Implicit group for all logged-in accounts
4641 $wgGroupPermissions['user']['move'] = true;
4642 $wgGroupPermissions['user']['move-subpages'] = true;
4643 $wgGroupPermissions['user']['move-rootuserpages'] = true; // can move root userpages
4644 $wgGroupPermissions['user']['move-categorypages'] = true;
4645 $wgGroupPermissions['user']['movefile'] = true;
4646 $wgGroupPermissions['user']['read'] = true;
4647 $wgGroupPermissions['user']['edit'] = true;
4648 $wgGroupPermissions['user']['createpage'] = true;
4649 $wgGroupPermissions['user']['createtalk'] = true;
4650 $wgGroupPermissions['user']['writeapi'] = true;
4651 $wgGroupPermissions['user']['upload'] = true;
4652 $wgGroupPermissions['user']['reupload'] = true;
4653 $wgGroupPermissions['user']['reupload-shared'] = true;
4654 $wgGroupPermissions['user']['minoredit'] = true;
4655 $wgGroupPermissions['user']['purge'] = true; // can use ?action=purge without clicking "ok"
4656 $wgGroupPermissions['user']['sendemail'] = true;
4657 $wgGroupPermissions['user']['applychangetags'] = true;
4658 $wgGroupPermissions['user']['changetags'] = true;
4659
4660 // Implicit group for accounts that pass $wgAutoConfirmAge
4661 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
4662 $wgGroupPermissions['autoconfirmed']['editsemiprotected'] = true;
4663
4664 // Users with bot privilege can have their edits hidden
4665 // from various log pages by default
4666 $wgGroupPermissions['bot']['bot'] = true;
4667 $wgGroupPermissions['bot']['autoconfirmed'] = true;
4668 $wgGroupPermissions['bot']['editsemiprotected'] = true;
4669 $wgGroupPermissions['bot']['nominornewtalk'] = true;
4670 $wgGroupPermissions['bot']['autopatrol'] = true;
4671 $wgGroupPermissions['bot']['suppressredirect'] = true;
4672 $wgGroupPermissions['bot']['apihighlimits'] = true;
4673 $wgGroupPermissions['bot']['writeapi'] = true;
4674
4675 // Most extra permission abilities go to this group
4676 $wgGroupPermissions['sysop']['block'] = true;
4677 $wgGroupPermissions['sysop']['createaccount'] = true;
4678 $wgGroupPermissions['sysop']['delete'] = true;
4679 // can be separately configured for pages with > $wgDeleteRevisionsLimit revs
4680 $wgGroupPermissions['sysop']['bigdelete'] = true;
4681 // can view deleted history entries, but not see or restore the text
4682 $wgGroupPermissions['sysop']['deletedhistory'] = true;
4683 // can view deleted revision text
4684 $wgGroupPermissions['sysop']['deletedtext'] = true;
4685 $wgGroupPermissions['sysop']['undelete'] = true;
4686 $wgGroupPermissions['sysop']['editinterface'] = true;
4687 $wgGroupPermissions['sysop']['editusercss'] = true;
4688 $wgGroupPermissions['sysop']['edituserjs'] = true;
4689 $wgGroupPermissions['sysop']['import'] = true;
4690 $wgGroupPermissions['sysop']['importupload'] = true;
4691 $wgGroupPermissions['sysop']['move'] = true;
4692 $wgGroupPermissions['sysop']['move-subpages'] = true;
4693 $wgGroupPermissions['sysop']['move-rootuserpages'] = true;
4694 $wgGroupPermissions['sysop']['move-categorypages'] = true;
4695 $wgGroupPermissions['sysop']['patrol'] = true;
4696 $wgGroupPermissions['sysop']['autopatrol'] = true;
4697 $wgGroupPermissions['sysop']['protect'] = true;
4698 $wgGroupPermissions['sysop']['editprotected'] = true;
4699 $wgGroupPermissions['sysop']['proxyunbannable'] = true;
4700 $wgGroupPermissions['sysop']['rollback'] = true;
4701 $wgGroupPermissions['sysop']['upload'] = true;
4702 $wgGroupPermissions['sysop']['reupload'] = true;
4703 $wgGroupPermissions['sysop']['reupload-shared'] = true;
4704 $wgGroupPermissions['sysop']['unwatchedpages'] = true;
4705 $wgGroupPermissions['sysop']['autoconfirmed'] = true;
4706 $wgGroupPermissions['sysop']['editsemiprotected'] = true;
4707 $wgGroupPermissions['sysop']['ipblock-exempt'] = true;
4708 $wgGroupPermissions['sysop']['blockemail'] = true;
4709 $wgGroupPermissions['sysop']['markbotedits'] = true;
4710 $wgGroupPermissions['sysop']['apihighlimits'] = true;
4711 $wgGroupPermissions['sysop']['browsearchive'] = true;
4712 $wgGroupPermissions['sysop']['noratelimit'] = true;
4713 $wgGroupPermissions['sysop']['movefile'] = true;
4714 $wgGroupPermissions['sysop']['unblockself'] = true;
4715 $wgGroupPermissions['sysop']['suppressredirect'] = true;
4716 #$wgGroupPermissions['sysop']['pagelang'] = true;
4717 #$wgGroupPermissions['sysop']['upload_by_url'] = true;
4718 $wgGroupPermissions['sysop']['mergehistory'] = true;
4719 $wgGroupPermissions['sysop']['managechangetags'] = true;
4720
4721 // Permission to change users' group assignments
4722 $wgGroupPermissions['bureaucrat']['userrights'] = true;
4723 $wgGroupPermissions['bureaucrat']['noratelimit'] = true;
4724 // Permission to change users' groups assignments across wikis
4725 #$wgGroupPermissions['bureaucrat']['userrights-interwiki'] = true;
4726 // Permission to export pages including linked pages regardless of $wgExportMaxLinkDepth
4727 #$wgGroupPermissions['bureaucrat']['override-export-depth'] = true;
4728
4729 #$wgGroupPermissions['sysop']['deletelogentry'] = true;
4730 #$wgGroupPermissions['sysop']['deleterevision'] = true;
4731 // To hide usernames from users and Sysops
4732 #$wgGroupPermissions['suppress']['hideuser'] = true;
4733 // To hide revisions/log items from users and Sysops
4734 #$wgGroupPermissions['suppress']['suppressrevision'] = true;
4735 // To view revisions/log items hidden from users and Sysops
4736 #$wgGroupPermissions['suppress']['viewsuppressed'] = true;
4737 // For private suppression log access
4738 #$wgGroupPermissions['suppress']['suppressionlog'] = true;
4739
4740 /**
4741 * The developer group is deprecated, but can be activated if need be
4742 * to use the 'lockdb' and 'unlockdb' special pages. Those require
4743 * that a lock file be defined and creatable/removable by the web
4744 * server.
4745 */
4746 # $wgGroupPermissions['developer']['siteadmin'] = true;
4747
4748 /** @endcond */
4749
4750 /**
4751 * Permission keys revoked from users in each group.
4752 *
4753 * This acts the same way as wgGroupPermissions above, except that
4754 * if the user is in a group here, the permission will be removed from them.
4755 *
4756 * Improperly setting this could mean that your users will be unable to perform
4757 * certain essential tasks, so use at your own risk!
4758 */
4759 $wgRevokePermissions = array();
4760
4761 /**
4762 * Implicit groups, aren't shown on Special:Listusers or somewhere else
4763 */
4764 $wgImplicitGroups = array( '*', 'user', 'autoconfirmed' );
4765
4766 /**
4767 * A map of group names that the user is in, to group names that those users
4768 * are allowed to add or revoke.
4769 *
4770 * Setting the list of groups to add or revoke to true is equivalent to "any
4771 * group".
4772 *
4773 * @par Example:
4774 * To allow sysops to add themselves to the "bot" group:
4775 * @code
4776 * $wgGroupsAddToSelf = array( 'sysop' => array( 'bot' ) );
4777 * @endcode
4778 *
4779 * @par Example:
4780 * Implicit groups may be used for the source group, for instance:
4781 * @code
4782 * $wgGroupsRemoveFromSelf = array( '*' => true );
4783 * @endcode
4784 * This allows users in the '*' group (i.e. any user) to remove themselves from
4785 * any group that they happen to be in.
4786 */
4787 $wgGroupsAddToSelf = array();
4788
4789 /**
4790 * @see $wgGroupsAddToSelf
4791 */
4792 $wgGroupsRemoveFromSelf = array();
4793
4794 /**
4795 * Set of available actions that can be restricted via action=protect
4796 * You probably shouldn't change this.
4797 * Translated through restriction-* messages.
4798 * Title::getRestrictionTypes() will remove restrictions that are not
4799 * applicable to a specific title (create and upload)
4800 */
4801 $wgRestrictionTypes = array( 'create', 'edit', 'move', 'upload' );
4802
4803 /**
4804 * Rights which can be required for each protection level (via action=protect)
4805 *
4806 * You can add a new protection level that requires a specific
4807 * permission by manipulating this array. The ordering of elements
4808 * dictates the order on the protection form's lists.
4809 *
4810 * - '' will be ignored (i.e. unprotected)
4811 * - 'autoconfirmed' is quietly rewritten to 'editsemiprotected' for backwards compatibility
4812 * - 'sysop' is quietly rewritten to 'editprotected' for backwards compatibility
4813 */
4814 $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' );
4815
4816 /**
4817 * Restriction levels that can be used with cascading protection
4818 *
4819 * A page can only be protected with cascading protection if the
4820 * requested restriction level is included in this array.
4821 *
4822 * 'autoconfirmed' is quietly rewritten to 'editsemiprotected' for backwards compatibility.
4823 * 'sysop' is quietly rewritten to 'editprotected' for backwards compatibility.
4824 */
4825 $wgCascadingRestrictionLevels = array( 'sysop' );
4826
4827 /**
4828 * Restriction levels that should be considered "semiprotected"
4829 *
4830 * Certain places in the interface recognize a dichotomy between "protected"
4831 * and "semiprotected", without further distinguishing the specific levels. In
4832 * general, if anyone can be eligible to edit a protection level merely by
4833 * reaching some condition in $wgAutopromote, it should probably be considered
4834 * "semiprotected".
4835 *
4836 * 'autoconfirmed' is quietly rewritten to 'editsemiprotected' for backwards compatibility.
4837 * 'sysop' is not changed, since it really shouldn't be here.
4838 */
4839 $wgSemiprotectedRestrictionLevels = array( 'autoconfirmed' );
4840
4841 /**
4842 * Set the minimum permissions required to edit pages in each
4843 * namespace. If you list more than one permission, a user must
4844 * have all of them to edit pages in that namespace.
4845 *
4846 * @note NS_MEDIAWIKI is implicitly restricted to 'editinterface'.
4847 */
4848 $wgNamespaceProtection = array();
4849
4850 /**
4851 * Pages in namespaces in this array can not be used as templates.
4852 *
4853 * Elements MUST be numeric namespace ids, you can safely use the MediaWiki
4854 * namespaces constants (NS_USER, NS_MAIN...).
4855 *
4856 * Among other things, this may be useful to enforce read-restrictions
4857 * which may otherwise be bypassed by using the template mechanism.
4858 */
4859 $wgNonincludableNamespaces = array();
4860
4861 /**
4862 * Number of seconds an account is required to age before it's given the
4863 * implicit 'autoconfirm' group membership. This can be used to limit
4864 * privileges of new accounts.
4865 *
4866 * Accounts created by earlier versions of the software may not have a
4867 * recorded creation date, and will always be considered to pass the age test.
4868 *
4869 * When left at 0, all registered accounts will pass.
4870 *
4871 * @par Example:
4872 * Set automatic confirmation to 10 minutes (which is 600 seconds):
4873 * @code
4874 * $wgAutoConfirmAge = 600; // ten minutes
4875 * @endcode
4876 * Set age to one day:
4877 * @code
4878 * $wgAutoConfirmAge = 3600*24; // one day
4879 * @endcode
4880 */
4881 $wgAutoConfirmAge = 0;
4882
4883 /**
4884 * Number of edits an account requires before it is autoconfirmed.
4885 * Passing both this AND the time requirement is needed. Example:
4886 *
4887 * @par Example:
4888 * @code
4889 * $wgAutoConfirmCount = 50;
4890 * @endcode
4891 */
4892 $wgAutoConfirmCount = 0;
4893
4894 /**
4895 * Automatically add a usergroup to any user who matches certain conditions.
4896 *
4897 * @todo Redocument $wgAutopromote
4898 *
4899 * The format is
4900 * array( '&' or '|' or '^' or '!', cond1, cond2, ... )
4901 * where cond1, cond2, ... are themselves conditions; *OR*
4902 * APCOND_EMAILCONFIRMED, *OR*
4903 * array( APCOND_EMAILCONFIRMED ), *OR*
4904 * array( APCOND_EDITCOUNT, number of edits ), *OR*
4905 * array( APCOND_AGE, seconds since registration ), *OR*
4906 * array( APCOND_INGROUPS, group1, group2, ... ), *OR*
4907 * array( APCOND_ISIP, ip ), *OR*
4908 * array( APCOND_IPINRANGE, range ), *OR*
4909 * array( APCOND_AGE_FROM_EDIT, seconds since first edit ), *OR*
4910 * array( APCOND_BLOCKED ), *OR*
4911 * array( APCOND_ISBOT ), *OR*
4912 * similar constructs defined by extensions.
4913 *
4914 * If $wgEmailAuthentication is off, APCOND_EMAILCONFIRMED will be true for any
4915 * user who has provided an e-mail address.
4916 */
4917 $wgAutopromote = array(
4918 'autoconfirmed' => array( '&',
4919 array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ),
4920 array( APCOND_AGE, &$wgAutoConfirmAge ),
4921 ),
4922 );
4923
4924 /**
4925 * Automatically add a usergroup to any user who matches certain conditions.
4926 *
4927 * Does not add the user to the group again if it has been removed.
4928 * Also, does not remove the group if the user no longer meets the criteria.
4929 *
4930 * The format is:
4931 * @code
4932 * array( event => criteria, ... )
4933 * @endcode
4934 * Where event is either:
4935 * - 'onEdit' (when user edits)
4936 *
4937 * Criteria has the same format as $wgAutopromote
4938 *
4939 * @see $wgAutopromote
4940 * @since 1.18
4941 */
4942 $wgAutopromoteOnce = array(
4943 'onEdit' => array(),
4944 );
4945
4946 /**
4947 * Put user rights log entries for autopromotion in recent changes?
4948 * @since 1.18
4949 */
4950 $wgAutopromoteOnceLogInRC = true;
4951
4952 /**
4953 * $wgAddGroups and $wgRemoveGroups can be used to give finer control over who
4954 * can assign which groups at Special:Userrights.
4955 *
4956 * @par Example:
4957 * Bureaucrats can add any group:
4958 * @code
4959 * $wgAddGroups['bureaucrat'] = true;
4960 * @endcode
4961 * Bureaucrats can only remove bots and sysops:
4962 * @code
4963 * $wgRemoveGroups['bureaucrat'] = array( 'bot', 'sysop' );
4964 * @endcode
4965 * Sysops can make bots:
4966 * @code
4967 * $wgAddGroups['sysop'] = array( 'bot' );
4968 * @endcode
4969 * Sysops can disable other sysops in an emergency, and disable bots:
4970 * @code
4971 * $wgRemoveGroups['sysop'] = array( 'sysop', 'bot' );
4972 * @endcode
4973 */
4974 $wgAddGroups = array();
4975
4976 /**
4977 * @see $wgAddGroups
4978 */
4979 $wgRemoveGroups = array();
4980
4981 /**
4982 * A list of available rights, in addition to the ones defined by the core.
4983 * For extensions only.
4984 */
4985 $wgAvailableRights = array();
4986
4987 /**
4988 * Optional to restrict deletion of pages with higher revision counts
4989 * to users with the 'bigdelete' permission. (Default given to sysops.)
4990 */
4991 $wgDeleteRevisionsLimit = 0;
4992
4993 /**
4994 * The maximum number of edits a user can have and
4995 * can still be hidden by users with the hideuser permission.
4996 * This is limited for performance reason.
4997 * Set to false to disable the limit.
4998 * @since 1.23
4999 */
5000 $wgHideUserContribLimit = 1000;
5001
5002 /**
5003 * Number of accounts each IP address may create, 0 to disable.
5004 *
5005 * @warning Requires memcached
5006 */
5007 $wgAccountCreationThrottle = 0;
5008
5009 /**
5010 * Edits matching these regular expressions in body text
5011 * will be recognised as spam and rejected automatically.
5012 *
5013 * There's no administrator override on-wiki, so be careful what you set. :)
5014 * May be an array of regexes or a single string for backwards compatibility.
5015 *
5016 * @see http://en.wikipedia.org/wiki/Regular_expression
5017 *
5018 * @note Each regex needs a beginning/end delimiter, eg: # or /
5019 */
5020 $wgSpamRegex = array();
5021
5022 /**
5023 * Same as the above except for edit summaries
5024 */
5025 $wgSummarySpamRegex = array();
5026
5027 /**
5028 * Whether to use DNS blacklists in $wgDnsBlacklistUrls to check for open
5029 * proxies
5030 * @since 1.16
5031 */
5032 $wgEnableDnsBlacklist = false;
5033
5034 /**
5035 * List of DNS blacklists to use, if $wgEnableDnsBlacklist is true.
5036 *
5037 * This is an array of either a URL or an array with the URL and a key (should
5038 * the blacklist require a key).
5039 *
5040 * @par Example:
5041 * @code
5042 * $wgDnsBlacklistUrls = array(
5043 * // String containing URL
5044 * 'http.dnsbl.sorbs.net.',
5045 * // Array with URL and key, for services that require a key
5046 * array( 'dnsbl.httpbl.net.', 'mykey' ),
5047 * // Array with just the URL. While this works, it is recommended that you
5048 * // just use a string as shown above
5049 * array( 'opm.tornevall.org.' )
5050 * );
5051 * @endcode
5052 *
5053 * @note You should end the domain name with a . to avoid searching your
5054 * eventual domain search suffixes.
5055 * @since 1.16
5056 */
5057 $wgDnsBlacklistUrls = array( 'http.dnsbl.sorbs.net.' );
5058
5059 /**
5060 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite
5061 * what the other methods might say.
5062 */
5063 $wgProxyWhitelist = array();
5064
5065 /**
5066 * Whether to look at the X-Forwarded-For header's list of (potentially spoofed)
5067 * IPs and apply IP blocks to them. This allows for IP blocks to work with correctly-configured
5068 * (transparent) proxies without needing to block the proxies themselves.
5069 */
5070 $wgApplyIpBlocksToXff = false;
5071
5072 /**
5073 * Simple rate limiter options to brake edit floods.
5074 *
5075 * Maximum number actions allowed in the given number of seconds; after that
5076 * the violating client receives HTTP 500 error pages until the period
5077 * elapses.
5078 *
5079 * @par Example:
5080 * To set a generic maximum of 4 hits in 60 seconds:
5081 * @code
5082 * $wgRateLimits = array( 4, 60 );
5083 * @endcode
5084 *
5085 * You could also limit per action and then type of users. See the inline
5086 * code for a template to use.
5087 *
5088 * This option set is experimental and likely to change.
5089 *
5090 * @warning Requires memcached.
5091 */
5092 $wgRateLimits = array(
5093 'edit' => array(
5094 'anon' => null, // for any and all anonymous edits (aggregate)
5095 'user' => null, // for each logged-in user
5096 'newbie' => null, // for each recent (autoconfirmed) account; overrides 'user'
5097 'ip' => null, // for each anon and recent account
5098 'subnet' => null, // ... within a /24 subnet in IPv4 or /64 in IPv6
5099 ),
5100 'move' => array(
5101 'user' => null,
5102 'newbie' => null,
5103 'ip' => null,
5104 'subnet' => null,
5105 ),
5106 'mailpassword' => array( // triggering password resets emails
5107 'anon' => null,
5108 ),
5109 'emailuser' => array( // emailing other users using MediaWiki
5110 'user' => null,
5111 ),
5112 'linkpurge' => array( // purges of link tables
5113 'anon' => null,
5114 'user' => null,
5115 'newbie' => null,
5116 'ip' => null,
5117 'subnet' => null,
5118 ),
5119 'renderfile' => array( // files rendered via thumb.php or thumb_handler.php
5120 'anon' => null,
5121 'user' => null,
5122 'newbie' => null,
5123 'ip' => null,
5124 'subnet' => null,
5125 ),
5126 'renderfile-nonstandard' => array( // same as above but for non-standard thumbnails
5127 'anon' => null,
5128 'user' => null,
5129 'newbie' => null,
5130 'ip' => null,
5131 'subnet' => null,
5132 ),
5133 'stashedit' => array( // stashing edits into cache before save
5134 'anon' => null,
5135 'user' => null,
5136 'newbie' => null,
5137 'ip' => null,
5138 'subnet' => null,
5139 ),
5140 'changetag' => array( // adding or removing change tags
5141 'user' => null,
5142 'newbie' => null,
5143 ),
5144 );
5145
5146 /**
5147 * Set to a filename to log rate limiter hits.
5148 *
5149 * @deprecated since 1.23, use $wgDebugLogGroups['ratelimit'] instead
5150 */
5151 $wgRateLimitLog = null;
5152
5153 /**
5154 * Array of IPs which should be excluded from rate limits.
5155 * This may be useful for whitelisting NAT gateways for conferences, etc.
5156 */
5157 $wgRateLimitsExcludedIPs = array();
5158
5159 /**
5160 * Log IP addresses in the recentchanges table; can be accessed only by
5161 * extensions (e.g. CheckUser) or a DB admin
5162 * Used for retroactive autoblocks
5163 */
5164 $wgPutIPinRC = true;
5165
5166 /**
5167 * Integer defining default number of entries to show on
5168 * special pages which are query-pages such as Special:Whatlinkshere.
5169 */
5170 $wgQueryPageDefaultLimit = 50;
5171
5172 /**
5173 * Limit password attempts to X attempts per Y seconds per IP per account.
5174 *
5175 * @warning Requires memcached.
5176 */
5177 $wgPasswordAttemptThrottle = array( 'count' => 5, 'seconds' => 300 );
5178
5179 /** @} */ # end of user rights settings
5180
5181 /************************************************************************//**
5182 * @name Proxy scanner settings
5183 * @{
5184 */
5185
5186 /**
5187 * This should always be customised in LocalSettings.php
5188 */
5189 $wgSecretKey = false;
5190
5191 /**
5192 * Big list of banned IP addresses.
5193 *
5194 * This can have the following formats:
5195 * - An array of addresses, either in the values
5196 * or the keys (for backward compatibility)
5197 * - A string, in that case this is the path to a file
5198 * containing the list of IP addresses, one per line
5199 */
5200 $wgProxyList = array();
5201
5202 /** @} */ # end of proxy scanner settings
5203
5204 /************************************************************************//**
5205 * @name Cookie settings
5206 * @{
5207 */
5208
5209 /**
5210 * Default cookie lifetime, in seconds. Setting to 0 makes all cookies session-only.
5211 */
5212 $wgCookieExpiration = 180 * 86400;
5213
5214 /**
5215 * Set to set an explicit domain on the login cookies eg, "justthis.domain.org"
5216 * or ".any.subdomain.net"
5217 */
5218 $wgCookieDomain = '';
5219
5220 /**
5221 * Set this variable if you want to restrict cookies to a certain path within
5222 * the domain specified by $wgCookieDomain.
5223 */
5224 $wgCookiePath = '/';
5225
5226 /**
5227 * Whether the "secure" flag should be set on the cookie. This can be:
5228 * - true: Set secure flag
5229 * - false: Don't set secure flag
5230 * - "detect": Set the secure flag if $wgServer is set to an HTTPS URL
5231 */
5232 $wgCookieSecure = 'detect';
5233
5234 /**
5235 * By default, MediaWiki checks if the client supports cookies during the
5236 * login process, so that it can display an informative error message if
5237 * cookies are disabled. Set this to true if you want to disable this cookie
5238 * check.
5239 */
5240 $wgDisableCookieCheck = false;
5241
5242 /**
5243 * Cookies generated by MediaWiki have names starting with this prefix. Set it
5244 * to a string to use a custom prefix. Setting it to false causes the database
5245 * name to be used as a prefix.
5246 */
5247 $wgCookiePrefix = false;
5248
5249 /**
5250 * Set authentication cookies to HttpOnly to prevent access by JavaScript,
5251 * in browsers that support this feature. This can mitigates some classes of
5252 * XSS attack.
5253 */
5254 $wgCookieHttpOnly = true;
5255
5256 /**
5257 * A list of cookies that vary the cache (for use by extensions)
5258 */
5259 $wgCacheVaryCookies = array();
5260
5261 /**
5262 * Override to customise the session name
5263 */
5264 $wgSessionName = false;
5265
5266 /** @} */ # end of cookie settings }
5267
5268 /************************************************************************//**
5269 * @name LaTeX (mathematical formulas)
5270 * @{
5271 */
5272
5273 /**
5274 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
5275 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
5276 * (ImageMagick) installed and available in the PATH.
5277 * Please see math/README for more information.
5278 */
5279 $wgUseTeX = false;
5280
5281 /** @} */ # end LaTeX }
5282
5283 /************************************************************************//**
5284 * @name Profiling, testing and debugging
5285 *
5286 * To enable profiling, edit StartProfiler.php
5287 *
5288 * @{
5289 */
5290
5291 /**
5292 * Filename for debug logging. See https://www.mediawiki.org/wiki/How_to_debug
5293 * The debug log file should be not be publicly accessible if it is used, as it
5294 * may contain private data.
5295 */
5296 $wgDebugLogFile = '';
5297
5298 /**
5299 * Prefix for debug log lines
5300 */
5301 $wgDebugLogPrefix = '';
5302
5303 /**
5304 * If true, instead of redirecting, show a page with a link to the redirect
5305 * destination. This allows for the inspection of PHP error messages, and easy
5306 * resubmission of form data. For developer use only.
5307 */
5308 $wgDebugRedirects = false;
5309
5310 /**
5311 * If true, log debugging data from action=raw and load.php.
5312 * This is normally false to avoid overlapping debug entries due to gen=css
5313 * and gen=js requests.
5314 */
5315 $wgDebugRawPage = false;
5316
5317 /**
5318 * Send debug data to an HTML comment in the output.
5319 *
5320 * This may occasionally be useful when supporting a non-technical end-user.
5321 * It's more secure than exposing the debug log file to the web, since the
5322 * output only contains private data for the current user. But it's not ideal
5323 * for development use since data is lost on fatal errors and redirects.
5324 */
5325 $wgDebugComments = false;
5326
5327 /**
5328 * Extensive database transaction state debugging
5329 *
5330 * @since 1.20
5331 */
5332 $wgDebugDBTransactions = false;
5333
5334 /**
5335 * Write SQL queries to the debug log.
5336 *
5337 * This setting is only used $wgLBFactoryConf['class'] is set to
5338 * 'LBFactorySimple' and $wgDBservers is an empty array; otherwise
5339 * the DBO_DEBUG flag must be set in the 'flags' option of the database
5340 * connection to achieve the same functionality.
5341 */
5342 $wgDebugDumpSql = false;
5343
5344 /**
5345 * Trim logged SQL queries to this many bytes. Set 0/false/null to do no
5346 * trimming.
5347 * @since 1.24
5348 */
5349 $wgDebugDumpSqlLength = 500;
5350
5351 /**
5352 * Performance expectations for DB usage
5353 *
5354 * @since 1.26
5355 */
5356 $wgTrxProfilerLimits = array(
5357 // Basic GET and POST requests
5358 'GET' => array(
5359 'masterConns' => 0,
5360 'writes' => 0,
5361 'readQueryTime' => 5
5362 ),
5363 'POST' => array(
5364 'readQueryTime' => 5,
5365 'writeQueryTime' => 1,
5366 'maxAffected' => 500
5367 ),
5368 // Background job runner
5369 'JobRunner' => array(
5370 'readQueryTime' => 30,
5371 'writeQueryTime' => 5,
5372 'maxAffected' => 500
5373 ),
5374 // Command-line scripts
5375 'Maintenance' => array(
5376 'writeQueryTime' => 5,
5377 'maxAffected' => 1000
5378 )
5379 );
5380
5381 /**
5382 * Map of string log group names to log destinations.
5383 *
5384 * If set, wfDebugLog() output for that group will go to that file instead
5385 * of the regular $wgDebugLogFile. Useful for enabling selective logging
5386 * in production.
5387 *
5388 * Log destinations may be one of the following:
5389 * - false to completely remove from the output, including from $wgDebugLogFile.
5390 * - string values specifying a filename or URI.
5391 * - associative array with keys:
5392 * - 'destination' desired filename or URI.
5393 * - 'sample' an integer value, specifying a sampling factor (optional)
5394 * - 'level' A \Psr\Log\LogLevel constant, indicating the minimum level
5395 * to log (optional, since 1.25)
5396 *
5397 * @par Example:
5398 * @code
5399 * $wgDebugLogGroups['redis'] = '/var/log/mediawiki/redis.log';
5400 * @endcode
5401 *
5402 * @par Advanced example:
5403 * @code
5404 * $wgDebugLogGroups['memcached'] = array(
5405 * 'destination' => '/var/log/mediawiki/memcached.log',
5406 * 'sample' => 1000, // log 1 message out of every 1,000.
5407 * 'level' => \Psr\Log\LogLevel::WARNING
5408 * );
5409 * @endcode
5410 */
5411 $wgDebugLogGroups = array();
5412
5413 /**
5414 * Default service provider for creating Psr\Log\LoggerInterface instances.
5415 *
5416 * The value should be an array suitable for use with
5417 * ObjectFactory::getObjectFromSpec(). The created object is expected to
5418 * implement the MediaWiki\Logger\Spi interface. See ObjectFactory for additional
5419 * details.
5420 *
5421 * Alternately the MediaWiki\Logger\LoggerFactory::registerProvider method can
5422 * be called to inject an MediaWiki\Logger\Spi instance into the LoggerFactory
5423 * and bypass the use of this configuration variable entirely.
5424 *
5425 * @par To completely disable logging:
5426 * @code
5427 * $wgMWLoggerDefaultSpi = array( 'class' => '\\MediaWiki\\Logger\\NullSpi' );
5428 * @endcode
5429 *
5430 * @since 1.25
5431 * @var array $wgMWLoggerDefaultSpi
5432 * @see MwLogger
5433 */
5434 $wgMWLoggerDefaultSpi = array(
5435 'class' => '\\MediaWiki\\Logger\\LegacySpi',
5436 );
5437
5438 /**
5439 * Display debug data at the bottom of the main content area.
5440 *
5441 * Useful for developers and technical users trying to working on a closed wiki.
5442 */
5443 $wgShowDebug = false;
5444
5445 /**
5446 * Prefix debug messages with relative timestamp. Very-poor man's profiler.
5447 * Since 1.19 also includes memory usage.
5448 */
5449 $wgDebugTimestamps = false;
5450
5451 /**
5452 * Print HTTP headers for every request in the debug information.
5453 */
5454 $wgDebugPrintHttpHeaders = true;
5455
5456 /**
5457 * Show the contents of $wgHooks in Special:Version
5458 */
5459 $wgSpecialVersionShowHooks = false;
5460
5461 /**
5462 * Whether to show "we're sorry, but there has been a database error" pages.
5463 * Displaying errors aids in debugging, but may display information useful
5464 * to an attacker.
5465 */
5466 $wgShowSQLErrors = false;
5467
5468 /**
5469 * If set to true, uncaught exceptions will print a complete stack trace
5470 * to output. This should only be used for debugging, as it may reveal
5471 * private information in function parameters due to PHP's backtrace
5472 * formatting.
5473 */
5474 $wgShowExceptionDetails = false;
5475
5476 /**
5477 * If true, show a backtrace for database errors
5478 *
5479 * @note This setting only applies when connection errors and query errors are
5480 * reported in the normal manner. $wgShowExceptionDetails applies in other cases,
5481 * including those in which an uncaught exception is thrown from within the
5482 * exception handler.
5483 */
5484 $wgShowDBErrorBacktrace = false;
5485
5486 /**
5487 * If true, send the exception backtrace to the error log
5488 */
5489 $wgLogExceptionBacktrace = true;
5490
5491 /**
5492 * Expose backend server host names through the API and various HTML comments
5493 */
5494 $wgShowHostnames = false;
5495
5496 /**
5497 * Override server hostname detection with a hardcoded value.
5498 * Should be a string, default false.
5499 * @since 1.20
5500 */
5501 $wgOverrideHostname = false;
5502
5503 /**
5504 * If set to true MediaWiki will throw notices for some possible error
5505 * conditions and for deprecated functions.
5506 */
5507 $wgDevelopmentWarnings = false;
5508
5509 /**
5510 * Release limitation to wfDeprecated warnings, if set to a release number
5511 * development warnings will not be generated for deprecations added in releases
5512 * after the limit.
5513 */
5514 $wgDeprecationReleaseLimit = false;
5515
5516 /**
5517 * Only record profiling info for pages that took longer than this
5518 * @deprecated since 1.25: set $wgProfiler['threshold'] instead.
5519 */
5520 $wgProfileLimit = 0.0;
5521
5522 /**
5523 * Don't put non-profiling info into log file
5524 *
5525 * @deprecated since 1.23, set the log file in
5526 * $wgDebugLogGroups['profileoutput'] instead.
5527 */
5528 $wgProfileOnly = false;
5529
5530 /**
5531 * If true, print a raw call tree instead of per-function report
5532 */
5533 $wgProfileCallTree = false;
5534
5535 /**
5536 * Should application server host be put into profiling table
5537 *
5538 * @deprecated set $wgProfiler['perhost'] = true instead
5539 */
5540 $wgProfilePerHost = null;
5541
5542 /**
5543 * Host for UDP profiler.
5544 *
5545 * The host should be running a daemon which can be obtained from MediaWiki
5546 * Git at:
5547 * http://git.wikimedia.org/tree/operations%2Fsoftware.git/master/udpprofile
5548 *
5549 * @deprecated set $wgProfiler['udphost'] instead
5550 */
5551 $wgUDPProfilerHost = null;
5552
5553 /**
5554 * Port for UDP profiler.
5555 * @see $wgUDPProfilerHost
5556 *
5557 * @deprecated set $wgProfiler['udpport'] instead
5558 */
5559 $wgUDPProfilerPort = null;
5560
5561 /**
5562 * Format string for the UDP profiler. The UDP profiler invokes sprintf() with
5563 * (profile id, count, cpu, cpu_sq, real, real_sq, entry name, memory) as
5564 * arguments. You can use sprintf's argument numbering/swapping capability to
5565 * repeat, re-order or omit fields.
5566 *
5567 * @see $wgStatsFormatString
5568 * @since 1.22
5569 *
5570 * @deprecated set $wgProfiler['udpformat'] instead
5571 */
5572 $wgUDPProfilerFormatString = null;
5573
5574 /**
5575 * Destination for wfIncrStats() data...
5576 * 'cache' to go into the system cache, if enabled (memcached)
5577 * 'udp' to be sent to the UDP profiler (see $wgUDPProfilerHost)
5578 * false to disable
5579 */
5580 $wgStatsMethod = 'cache';
5581
5582 /**
5583 * When $wgStatsMethod is 'udp', setting this to a string allows statistics to
5584 * be aggregated over more than one wiki. The string will be used in place of
5585 * the DB name in outgoing UDP packets. If this is set to false, the DB name
5586 * will be used.
5587 */
5588 $wgAggregateStatsID = false;
5589
5590 /**
5591 * When $wgStatsMethod is 'udp', this variable specifies how stats should be
5592 * formatted. Its value should be a format string suitable for a sprintf()
5593 * invocation with (id, count, key) arguments, where 'id' is either
5594 * $wgAggregateStatsID or the DB name, 'count' is the value by which the metric
5595 * is being incremented, and 'key' is the metric name.
5596 *
5597 * @see $wgUDPProfilerFormatString
5598 * @see $wgAggregateStatsID
5599 * @since 1.22
5600 */
5601 $wgStatsFormatString = "stats/%s - %s 1 1 1 1 %s\n";
5602
5603 /**
5604 * InfoAction retrieves a list of transclusion links (both to and from).
5605 * This number puts a limit on that query in the case of highly transcluded
5606 * templates.
5607 */
5608 $wgPageInfoTransclusionLimit = 50;
5609
5610 /**
5611 * Set this to an integer to only do synchronous site_stats updates
5612 * one every *this many* updates. The other requests go into pending
5613 * delta values in $wgMemc. Make sure that $wgMemc is a global cache.
5614 * If set to -1, updates *only* go to $wgMemc (useful for daemons).
5615 */
5616 $wgSiteStatsAsyncFactor = false;
5617
5618 /**
5619 * Parser test suite files to be run by parserTests.php when no specific
5620 * filename is passed to it.
5621 *
5622 * Extensions may add their own tests to this array, or site-local tests
5623 * may be added via LocalSettings.php
5624 *
5625 * Use full paths.
5626 */
5627 $wgParserTestFiles = array(
5628 "$IP/tests/parser/parserTests.txt",
5629 "$IP/tests/parser/extraParserTests.txt"
5630 );
5631
5632 /**
5633 * Allow running of javascript test suites via [[Special:JavaScriptTest]] (such as QUnit).
5634 */
5635 $wgEnableJavaScriptTest = false;
5636
5637 /**
5638 * Overwrite the caching key prefix with custom value.
5639 * @since 1.19
5640 */
5641 $wgCachePrefix = false;
5642
5643 /**
5644 * Display the new debugging toolbar. This also enables profiling on database
5645 * queries and other useful output.
5646 * Will disable file cache.
5647 *
5648 * @since 1.19
5649 */
5650 $wgDebugToolbar = false;
5651
5652 /** @} */ # end of profiling, testing and debugging }
5653
5654 /************************************************************************//**
5655 * @name Search
5656 * @{
5657 */
5658
5659 /**
5660 * Set this to true to disable the full text search feature.
5661 */
5662 $wgDisableTextSearch = false;
5663
5664 /**
5665 * Set to true to have nicer highlighted text in search results,
5666 * by default off due to execution overhead
5667 */
5668 $wgAdvancedSearchHighlighting = false;
5669
5670 /**
5671 * Regexp to match word boundaries, defaults for non-CJK languages
5672 * should be empty for CJK since the words are not separate
5673 */
5674 $wgSearchHighlightBoundaries = '[\p{Z}\p{P}\p{C}]';
5675
5676 /**
5677 * Template for OpenSearch suggestions, defaults to API action=opensearch
5678 *
5679 * Sites with heavy load would typically have these point to a custom
5680 * PHP wrapper to avoid firing up mediawiki for every keystroke
5681 *
5682 * Placeholders: {searchTerms}
5683 *
5684 * @deprecated since 1.25 Use $wgOpenSearchTemplates['application/x-suggestions+json'] instead
5685 */
5686 $wgOpenSearchTemplate = false;
5687
5688 /**
5689 * Templates for OpenSearch suggestions, defaults to API action=opensearch
5690 *
5691 * Sites with heavy load would typically have these point to a custom
5692 * PHP wrapper to avoid firing up mediawiki for every keystroke
5693 *
5694 * Placeholders: {searchTerms}
5695 */
5696 $wgOpenSearchTemplates = array(
5697 'application/x-suggestions+json' => false,
5698 'application/x-suggestions+xml' => false,
5699 );
5700
5701 /**
5702 * Enable OpenSearch suggestions requested by MediaWiki. Set this to
5703 * false if you've disabled scripts that use api?action=opensearch and
5704 * want reduce load caused by cached scripts still pulling suggestions.
5705 * It will let the API fallback by responding with an empty array.
5706 */
5707 $wgEnableOpenSearchSuggest = true;
5708
5709 /**
5710 * Integer defining default number of entries to show on
5711 * OpenSearch call.
5712 */
5713 $wgOpenSearchDefaultLimit = 10;
5714
5715 /**
5716 * Minimum length of extract in <Description>. Actual extracts will last until the end of sentence.
5717 */
5718 $wgOpenSearchDescriptionLength = 100;
5719
5720 /**
5721 * Expiry time for search suggestion responses
5722 */
5723 $wgSearchSuggestCacheExpiry = 1200;
5724
5725 /**
5726 * If you've disabled search semi-permanently, this also disables updates to the
5727 * table. If you ever re-enable, be sure to rebuild the search table.
5728 */
5729 $wgDisableSearchUpdate = false;
5730
5731 /**
5732 * List of namespaces which are searched by default.
5733 *
5734 * @par Example:
5735 * @code
5736 * $wgNamespacesToBeSearchedDefault[NS_MAIN] = true;
5737 * $wgNamespacesToBeSearchedDefault[NS_PROJECT] = true;
5738 * @endcode
5739 */
5740 $wgNamespacesToBeSearchedDefault = array(
5741 NS_MAIN => true,
5742 );
5743
5744 /**
5745 * Disable the internal MySQL-based search, to allow it to be
5746 * implemented by an extension instead.
5747 */
5748 $wgDisableInternalSearch = false;
5749
5750 /**
5751 * Set this to a URL to forward search requests to some external location.
5752 * If the URL includes '$1', this will be replaced with the URL-encoded
5753 * search term.
5754 *
5755 * @par Example:
5756 * To forward to Google you'd have something like:
5757 * @code
5758 * $wgSearchForwardUrl =
5759 * 'http://www.google.com/search?q=$1' .
5760 * '&domains=http://example.com' .
5761 * '&sitesearch=http://example.com' .
5762 * '&ie=utf-8&oe=utf-8';
5763 * @endcode
5764 */
5765 $wgSearchForwardUrl = null;
5766
5767 /**
5768 * Search form behavior.
5769 * - true = use Go & Search buttons
5770 * - false = use Go button & Advanced search link
5771 */
5772 $wgUseTwoButtonsSearchForm = true;
5773
5774 /**
5775 * Array of namespaces to generate a Google sitemap for when the
5776 * maintenance/generateSitemap.php script is run, or false if one is to be
5777 * generated for all namespaces.
5778 */
5779 $wgSitemapNamespaces = false;
5780
5781 /**
5782 * Custom namespace priorities for sitemaps. Setting this will allow you to
5783 * set custom priorities to namespaces when sitemaps are generated using the
5784 * maintenance/generateSitemap.php script.
5785 *
5786 * This should be a map of namespace IDs to priority
5787 * @par Example:
5788 * @code
5789 * $wgSitemapNamespacesPriorities = array(
5790 * NS_USER => '0.9',
5791 * NS_HELP => '0.0',
5792 * );
5793 * @endcode
5794 */
5795 $wgSitemapNamespacesPriorities = false;
5796
5797 /**
5798 * If true, searches for IP addresses will be redirected to that IP's
5799 * contributions page. E.g. searching for "1.2.3.4" will redirect to
5800 * [[Special:Contributions/1.2.3.4]]
5801 */
5802 $wgEnableSearchContributorsByIP = true;
5803
5804 /** @} */ # end of search settings
5805
5806 /************************************************************************//**
5807 * @name Edit user interface
5808 * @{
5809 */
5810
5811 /**
5812 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
5813 * fall back to the old behavior (no merging).
5814 */
5815 $wgDiff3 = '/usr/bin/diff3';
5816
5817 /**
5818 * Path to the GNU diff utility.
5819 */
5820 $wgDiff = '/usr/bin/diff';
5821
5822 /**
5823 * Which namespaces have special treatment where they should be preview-on-open
5824 * Internally only Category: pages apply, but using this extensions (e.g. Semantic MediaWiki)
5825 * can specify namespaces of pages they have special treatment for
5826 */
5827 $wgPreviewOnOpenNamespaces = array(
5828 NS_CATEGORY => true
5829 );
5830
5831 /**
5832 * Enable the UniversalEditButton for browsers that support it
5833 * (currently only Firefox with an extension)
5834 * See http://universaleditbutton.org for more background information
5835 */
5836 $wgUniversalEditButton = true;
5837
5838 /**
5839 * If user doesn't specify any edit summary when making a an edit, MediaWiki
5840 * will try to automatically create one. This feature can be disabled by set-
5841 * ting this variable false.
5842 */
5843 $wgUseAutomaticEditSummaries = true;
5844
5845 /** @} */ # end edit UI }
5846
5847 /************************************************************************//**
5848 * @name Maintenance
5849 * See also $wgSiteNotice
5850 * @{
5851 */
5852
5853 /**
5854 * @cond file_level_code
5855 * Set $wgCommandLineMode if it's not set already, to avoid notices
5856 */
5857 if ( !isset( $wgCommandLineMode ) ) {
5858 $wgCommandLineMode = false;
5859 }
5860 /** @endcond */
5861
5862 /**
5863 * For colorized maintenance script output, is your terminal background dark ?
5864 */
5865 $wgCommandLineDarkBg = false;
5866
5867 /**
5868 * Set this to a string to put the wiki into read-only mode. The text will be
5869 * used as an explanation to users.
5870 *
5871 * This prevents most write operations via the web interface. Cache updates may
5872 * still be possible. To prevent database writes completely, use the read_only
5873 * option in MySQL.
5874 */
5875 $wgReadOnly = null;
5876
5877 /**
5878 * If this lock file exists (size > 0), the wiki will be forced into read-only mode.
5879 * Its contents will be shown to users as part of the read-only warning
5880 * message.
5881 *
5882 * Will default to "{$wgUploadDirectory}/lock_yBgMBwiR" in Setup.php
5883 */
5884 $wgReadOnlyFile = false;
5885
5886 /**
5887 * When you run the web-based upgrade utility, it will tell you what to set
5888 * this to in order to authorize the upgrade process. It will subsequently be
5889 * used as a password, to authorize further upgrades.
5890 *
5891 * For security, do not set this to a guessable string. Use the value supplied
5892 * by the install/upgrade process. To cause the upgrader to generate a new key,
5893 * delete the old key from LocalSettings.php.
5894 */
5895 $wgUpgradeKey = false;
5896
5897 /**
5898 * Fully specified path to git binary
5899 */
5900 $wgGitBin = '/usr/bin/git';
5901
5902 /**
5903 * Map GIT repository URLs to viewer URLs to provide links in Special:Version
5904 *
5905 * Key is a pattern passed to preg_match() and preg_replace(),
5906 * without the delimiters (which are #) and must match the whole URL.
5907 * The value is the replacement for the key (it can contain $1, etc.)
5908 * %h will be replaced by the short SHA-1 (7 first chars) and %H by the
5909 * full SHA-1 of the HEAD revision.
5910 * %r will be replaced with a URL-encoded version of $1.
5911 *
5912 * @since 1.20
5913 */
5914 $wgGitRepositoryViewers = array(
5915 'https://(?:[a-z0-9_]+@)?gerrit.wikimedia.org/r/(?:p/)?(.*)' =>
5916 'https://git.wikimedia.org/tree/%r/%H',
5917 'ssh://(?:[a-z0-9_]+@)?gerrit.wikimedia.org:29418/(.*)' =>
5918 'https://git.wikimedia.org/tree/%r/%H',
5919 );
5920
5921 /** @} */ # End of maintenance }
5922
5923 /************************************************************************//**
5924 * @name Recent changes, new pages, watchlist and history
5925 * @{
5926 */
5927
5928 /**
5929 * Recentchanges items are periodically purged; entries older than this many
5930 * seconds will go.
5931 * Default: 90 days = about three months
5932 */
5933 $wgRCMaxAge = 90 * 24 * 3600;
5934
5935 /**
5936 * Filter $wgRCLinkDays by $wgRCMaxAge to avoid showing links for numbers
5937 * higher than what will be stored. Note that this is disabled by default
5938 * because we sometimes do have RC data which is beyond the limit for some
5939 * reason, and some users may use the high numbers to display that data which
5940 * is still there.
5941 */
5942 $wgRCFilterByAge = false;
5943
5944 /**
5945 * List of Limits options to list in the Special:Recentchanges and
5946 * Special:Recentchangeslinked pages.
5947 */
5948 $wgRCLinkLimits = array( 50, 100, 250, 500 );
5949
5950 /**
5951 * List of Days options to list in the Special:Recentchanges and
5952 * Special:Recentchangeslinked pages.
5953 */
5954 $wgRCLinkDays = array( 1, 3, 7, 14, 30 );
5955
5956 /**
5957 * Destinations to which notifications about recent changes
5958 * should be sent.
5959 *
5960 * As of MediaWiki 1.22, there are 2 supported 'engine' parameter option in core:
5961 * * 'UDPRCFeedEngine', which is used to send recent changes over UDP to the
5962 * specified server.
5963 * * 'RedisPubSubFeedEngine', which is used to send recent changes to Redis.
5964 *
5965 * The common options are:
5966 * * 'uri' -- the address to which the notices are to be sent.
5967 * * 'formatter' -- the class name (implementing RCFeedFormatter) which will
5968 * produce the text to send. This can also be an object of the class.
5969 * * 'omit_bots' -- whether the bot edits should be in the feed
5970 * * 'omit_anon' -- whether anonymous edits should be in the feed
5971 * * 'omit_user' -- whether edits by registered users should be in the feed
5972 * * 'omit_minor' -- whether minor edits should be in the feed
5973 * * 'omit_patrolled' -- whether patrolled edits should be in the feed
5974 *
5975 * The IRC-specific options are:
5976 * * 'add_interwiki_prefix' -- whether the titles should be prefixed with
5977 * the first entry in the $wgLocalInterwikis array (or the value of
5978 * $wgLocalInterwiki, if set)
5979 *
5980 * The JSON-specific options are:
5981 * * 'channel' -- if set, the 'channel' parameter is also set in JSON values.
5982 *
5983 * @example $wgRCFeeds['example'] = array(
5984 * 'formatter' => 'JSONRCFeedFormatter',
5985 * 'uri' => "udp://localhost:1336",
5986 * 'add_interwiki_prefix' => false,
5987 * 'omit_bots' => true,
5988 * );
5989 * @example $wgRCFeeds['exampleirc'] = array(
5990 * 'formatter' => 'IRCColourfulRCFeedFormatter',
5991 * 'uri' => "udp://localhost:1338",
5992 * 'add_interwiki_prefix' => false,
5993 * 'omit_bots' => true,
5994 * );
5995 * @since 1.22
5996 */
5997 $wgRCFeeds = array();
5998
5999 /**
6000 * Used by RecentChange::getEngine to find the correct engine to use for a given URI scheme.
6001 * Keys are scheme names, values are names of engine classes.
6002 */
6003 $wgRCEngines = array(
6004 'redis' => 'RedisPubSubFeedEngine',
6005 'udp' => 'UDPRCFeedEngine',
6006 );
6007
6008 /**
6009 * Use RC Patrolling to check for vandalism
6010 */
6011 $wgUseRCPatrol = true;
6012
6013 /**
6014 * Use new page patrolling to check new pages on Special:Newpages
6015 */
6016 $wgUseNPPatrol = true;
6017
6018 /**
6019 * Log autopatrol actions to the log table
6020 */
6021 $wgLogAutopatrol = true;
6022
6023 /**
6024 * Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages
6025 */
6026 $wgFeed = true;
6027
6028 /**
6029 * Set maximum number of results to return in syndication feeds (RSS, Atom) for
6030 * eg Recentchanges, Newpages.
6031 */
6032 $wgFeedLimit = 50;
6033
6034 /**
6035 * _Minimum_ timeout for cached Recentchanges feed, in seconds.
6036 * A cached version will continue to be served out even if changes
6037 * are made, until this many seconds runs out since the last render.
6038 *
6039 * If set to 0, feed caching is disabled. Use this for debugging only;
6040 * feed generation can be pretty slow with diffs.
6041 */
6042 $wgFeedCacheTimeout = 60;
6043
6044 /**
6045 * When generating Recentchanges RSS/Atom feed, diffs will not be generated for
6046 * pages larger than this size.
6047 */
6048 $wgFeedDiffCutoff = 32768;
6049
6050 /**
6051 * Override the site's default RSS/ATOM feed for recentchanges that appears on
6052 * every page. Some sites might have a different feed they'd like to promote
6053 * instead of the RC feed (maybe like a "Recent New Articles" or "Breaking news" one).
6054 * Should be a format as key (either 'rss' or 'atom') and an URL to the feed
6055 * as value.
6056 * @par Example:
6057 * Configure the 'atom' feed to http://example.com/somefeed.xml
6058 * @code
6059 * $wgSiteFeed['atom'] = "http://example.com/somefeed.xml";
6060 * @endcode
6061 */
6062 $wgOverrideSiteFeed = array();
6063
6064 /**
6065 * Available feeds objects.
6066 * Should probably only be defined when a page is syndicated ie when
6067 * $wgOut->isSyndicated() is true.
6068 */
6069 $wgFeedClasses = array(
6070 'rss' => 'RSSFeed',
6071 'atom' => 'AtomFeed',
6072 );
6073
6074 /**
6075 * Which feed types should we provide by default? This can include 'rss',
6076 * 'atom', neither, or both.
6077 */
6078 $wgAdvertisedFeedTypes = array( 'atom' );
6079
6080 /**
6081 * Show watching users in recent changes, watchlist and page history views
6082 */
6083 $wgRCShowWatchingUsers = false; # UPO
6084
6085 /**
6086 * Show the amount of changed characters in recent changes
6087 */
6088 $wgRCShowChangedSize = true;
6089
6090 /**
6091 * If the difference between the character counts of the text
6092 * before and after the edit is below that value, the value will be
6093 * highlighted on the RC page.
6094 */
6095 $wgRCChangedSizeThreshold = 500;
6096
6097 /**
6098 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
6099 * view for watched pages with new changes
6100 */
6101 $wgShowUpdatedMarker = true;
6102
6103 /**
6104 * Disable links to talk pages of anonymous users (IPs) in listings on special
6105 * pages like page history, Special:Recentchanges, etc.
6106 */
6107 $wgDisableAnonTalk = false;
6108
6109 /**
6110 * Enable filtering of categories in Recentchanges
6111 */
6112 $wgAllowCategorizedRecentChanges = false;
6113
6114 /**
6115 * Allow filtering by change tag in recentchanges, history, etc
6116 * Has no effect if no tags are defined in valid_tag.
6117 */
6118 $wgUseTagFilter = true;
6119
6120 /**
6121 * If set to an integer, pages that are watched by this many users or more
6122 * will not require the unwatchedpages permission to view the number of
6123 * watchers.
6124 *
6125 * @since 1.21
6126 */
6127 $wgUnwatchedPageThreshold = false;
6128
6129 /**
6130 * Flags (letter symbols) shown in recent changes and watchlist to indicate
6131 * certain types of edits.
6132 *
6133 * To register a new one:
6134 * @code
6135 * $wgRecentChangesFlags['flag'] => array(
6136 * // message for the letter displayed next to rows on changes lists
6137 * 'letter' => 'letter-msg',
6138 * // message for the tooltip of the letter
6139 * 'title' => 'tooltip-msg',
6140 * // optional (defaults to 'tooltip-msg'), message to use in the legend box
6141 * 'legend' => 'legend-msg',
6142 * // optional (defaults to 'flag'), CSS class to put on changes lists rows
6143 * 'class' => 'css-class',
6144 * );
6145 * @endcode
6146 *
6147 * @since 1.22
6148 */
6149 $wgRecentChangesFlags = array(
6150 'newpage' => array(
6151 'letter' => 'newpageletter',
6152 'title' => 'recentchanges-label-newpage',
6153 'legend' => 'recentchanges-legend-newpage',
6154 ),
6155 'minor' => array(
6156 'letter' => 'minoreditletter',
6157 'title' => 'recentchanges-label-minor',
6158 'legend' => 'recentchanges-legend-minor',
6159 'class' => 'minoredit',
6160 ),
6161 'bot' => array(
6162 'letter' => 'boteditletter',
6163 'title' => 'recentchanges-label-bot',
6164 'legend' => 'recentchanges-legend-bot',
6165 'class' => 'botedit',
6166 ),
6167 'unpatrolled' => array(
6168 'letter' => 'unpatrolledletter',
6169 'title' => 'recentchanges-label-unpatrolled',
6170 'legend' => 'recentchanges-legend-unpatrolled',
6171 ),
6172 );
6173
6174 /** @} */ # end RC/watchlist }
6175
6176 /************************************************************************//**
6177 * @name Copyright and credits settings
6178 * @{
6179 */
6180
6181 /**
6182 * Override for copyright metadata.
6183 *
6184 * This is the name of the page containing information about the wiki's copyright status,
6185 * which will be added as a link in the footer if it is specified. It overrides
6186 * $wgRightsUrl if both are specified.
6187 */
6188 $wgRightsPage = null;
6189
6190 /**
6191 * Set this to specify an external URL containing details about the content license used on your
6192 * wiki.
6193 * If $wgRightsPage is set then this setting is ignored.
6194 */
6195 $wgRightsUrl = null;
6196
6197 /**
6198 * If either $wgRightsUrl or $wgRightsPage is specified then this variable gives the text for the
6199 * link.
6200 * If using $wgRightsUrl then this value must be specified. If using $wgRightsPage then the name
6201 * of the page will also be used as the link if this variable is not set.
6202 */
6203 $wgRightsText = null;
6204
6205 /**
6206 * Override for copyright metadata.
6207 */
6208 $wgRightsIcon = null;
6209
6210 /**
6211 * Set this to some HTML to override the rights icon with an arbitrary logo
6212 * @deprecated since 1.18 Use $wgFooterIcons['copyright']['copyright']
6213 */
6214 $wgCopyrightIcon = null;
6215
6216 /**
6217 * Set this to true if you want detailed copyright information forms on Upload.
6218 */
6219 $wgUseCopyrightUpload = false;
6220
6221 /**
6222 * Set this to the number of authors that you want to be credited below an
6223 * article text. Set it to zero to hide the attribution block, and a negative
6224 * number (like -1) to show all authors. Note that this will require 2-3 extra
6225 * database hits, which can have a not insignificant impact on performance for
6226 * large wikis.
6227 */
6228 $wgMaxCredits = 0;
6229
6230 /**
6231 * If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
6232 * Otherwise, link to a separate credits page.
6233 */
6234 $wgShowCreditsIfMax = true;
6235
6236 /** @} */ # end of copyright and credits settings }
6237
6238 /************************************************************************//**
6239 * @name Import / Export
6240 * @{
6241 */
6242
6243 /**
6244 * List of interwiki prefixes for wikis we'll accept as sources for
6245 * Special:Import (for sysops). Since complete page history can be imported,
6246 * these should be 'trusted'.
6247 *
6248 * This can either be a regular array, or an associative map specifying
6249 * subprojects on the interwiki map of the target wiki, or a mix of the two,
6250 * e.g.
6251 * @code
6252 * $wgImportSources = array(
6253 * 'wikipedia' => array( 'cs', 'en', 'fr', 'zh' ),
6254 * 'wikispecies',
6255 * 'wikia' => array( 'animanga', 'brickipedia', 'desserts' ),
6256 * );
6257 * @endcode
6258 *
6259 * If a user has the 'import' permission but not the 'importupload' permission,
6260 * they will only be able to run imports through this transwiki interface.
6261 */
6262 $wgImportSources = array();
6263
6264 /**
6265 * Optional default target namespace for interwiki imports.
6266 * Can use this to create an incoming "transwiki"-style queue.
6267 * Set to numeric key, not the name.
6268 *
6269 * Users may override this in the Special:Import dialog.
6270 */
6271 $wgImportTargetNamespace = null;
6272
6273 /**
6274 * If set to false, disables the full-history option on Special:Export.
6275 * This is currently poorly optimized for long edit histories, so is
6276 * disabled on Wikimedia's sites.
6277 */
6278 $wgExportAllowHistory = true;
6279
6280 /**
6281 * If set nonzero, Special:Export requests for history of pages with
6282 * more revisions than this will be rejected. On some big sites things
6283 * could get bogged down by very very long pages.
6284 */
6285 $wgExportMaxHistory = 0;
6286
6287 /**
6288 * Return distinct author list (when not returning full history)
6289 */
6290 $wgExportAllowListContributors = false;
6291
6292 /**
6293 * If non-zero, Special:Export accepts a "pagelink-depth" parameter
6294 * up to this specified level, which will cause it to include all
6295 * pages linked to from the pages you specify. Since this number
6296 * can become *insanely large* and could easily break your wiki,
6297 * it's disabled by default for now.
6298 *
6299 * @warning There's a HARD CODED limit of 5 levels of recursion to prevent a
6300 * crazy-big export from being done by someone setting the depth number too
6301 * high. In other words, last resort safety net.
6302 */
6303 $wgExportMaxLinkDepth = 0;
6304
6305 /**
6306 * Whether to allow the "export all pages in namespace" option
6307 */
6308 $wgExportFromNamespaces = false;
6309
6310 /**
6311 * Whether to allow exporting the entire wiki into a single file
6312 */
6313 $wgExportAllowAll = false;
6314
6315 /** @} */ # end of import/export }
6316
6317 /*************************************************************************//**
6318 * @name Extensions
6319 * @{
6320 */
6321
6322 /**
6323 * A list of callback functions which are called once MediaWiki is fully
6324 * initialised
6325 */
6326 $wgExtensionFunctions = array();
6327
6328 /**
6329 * Extension messages files.
6330 *
6331 * Associative array mapping extension name to the filename where messages can be
6332 * found. The file should contain variable assignments. Any of the variables
6333 * present in languages/messages/MessagesEn.php may be defined, but $messages
6334 * is the most common.
6335 *
6336 * Variables defined in extensions will override conflicting variables defined
6337 * in the core.
6338 *
6339 * Since MediaWiki 1.23, use of this variable to define messages is discouraged; instead, store
6340 * messages in JSON format and use $wgMessagesDirs. For setting other variables than
6341 * $messages, $wgExtensionMessagesFiles should still be used. Use a DIFFERENT key because
6342 * any entry having a key that also exists in $wgMessagesDirs will be ignored.
6343 *
6344 * Extensions using the JSON message format can preserve backward compatibility with
6345 * earlier versions of MediaWiki by using a compatibility shim, such as one generated
6346 * by the generateJsonI18n.php maintenance script, listing it under the SAME key
6347 * as for the $wgMessagesDirs entry.
6348 *
6349 * @par Example:
6350 * @code
6351 * $wgExtensionMessagesFiles['ConfirmEdit'] = __DIR__.'/ConfirmEdit.i18n.php';
6352 * @endcode
6353 */
6354 $wgExtensionMessagesFiles = array();
6355
6356 /**
6357 * Extension messages directories.
6358 *
6359 * Associative array mapping extension name to the path of the directory where message files can
6360 * be found. The message files are expected to be JSON files named for their language code, e.g.
6361 * en.json, de.json, etc. Extensions with messages in multiple places may specify an array of
6362 * message directories.
6363 *
6364 * Message directories in core should be added to LocalisationCache::getMessagesDirs()
6365 *
6366 * @par Simple example:
6367 * @code
6368 * $wgMessagesDirs['Example'] = __DIR__ . '/i18n';
6369 * @endcode
6370 *
6371 * @par Complex example:
6372 * @code
6373 * $wgMessagesDirs['Example'] = array(
6374 * __DIR__ . '/lib/ve/i18n',
6375 * __DIR__ . '/lib/oojs-ui/i18n',
6376 * __DIR__ . '/i18n',
6377 * )
6378 * @endcode
6379 * @since 1.23
6380 */
6381 $wgMessagesDirs = array();
6382
6383 /**
6384 * Array of files with list(s) of extension entry points to be used in
6385 * maintenance/mergeMessageFileList.php
6386 * @since 1.22
6387 */
6388 $wgExtensionEntryPointListFiles = array();
6389
6390 /**
6391 * Parser output hooks.
6392 * This is an associative array where the key is an extension-defined tag
6393 * (typically the extension name), and the value is a PHP callback.
6394 * These will be called as an OutputPageParserOutput hook, if the relevant
6395 * tag has been registered with the parser output object.
6396 *
6397 * Registration is done with $pout->addOutputHook( $tag, $data ).
6398 *
6399 * The callback has the form:
6400 * @code
6401 * function outputHook( $outputPage, $parserOutput, $data ) { ... }
6402 * @endcode
6403 */
6404 $wgParserOutputHooks = array();
6405
6406 /**
6407 * Whether to include the NewPP limit report as a HTML comment
6408 */
6409 $wgEnableParserLimitReporting = true;
6410
6411 /**
6412 * List of valid skin names
6413 *
6414 * The key should be the name in all lower case, the value should be a properly
6415 * cased name for the skin. This value will be prefixed with "Skin" to create
6416 * the class name of the skin to load. Use Skin::getSkinNames() as an accessor
6417 * if you wish to have access to the full list.
6418 */
6419 $wgValidSkinNames = array();
6420
6421 /**
6422 * Special page list. This is an associative array mapping the (canonical) names of
6423 * special pages to either a class name to be instantiated, or a callback to use for
6424 * creating the special page object. In both cases, the result must be an instance of
6425 * SpecialPage.
6426 */
6427 $wgSpecialPages = array();
6428
6429 /**
6430 * Array mapping class names to filenames, for autoloading.
6431 */
6432 $wgAutoloadClasses = array();
6433
6434 /**
6435 * Switch controlling legacy case-insensitive classloading.
6436 * Do not disable if your wiki must support data created by PHP4, or by
6437 * MediaWiki 1.4 or earlier.
6438 */
6439 $wgAutoloadAttemptLowercase = true;
6440
6441 /**
6442 * An array of information about installed extensions keyed by their type.
6443 *
6444 * All but 'name', 'path' and 'author' can be omitted.
6445 *
6446 * @code
6447 * $wgExtensionCredits[$type][] = array(
6448 * 'path' => __FILE__,
6449 * 'name' => 'Example extension',
6450 * 'namemsg' => 'exampleextension-name',
6451 * 'author' => array(
6452 * 'Foo Barstein',
6453 * ),
6454 * 'version' => '1.9.0',
6455 * 'url' => 'http://example.org/example-extension/',
6456 * 'descriptionmsg' => 'exampleextension-desc',
6457 * 'license-name' => 'GPL-2.0+',
6458 * );
6459 * @endcode
6460 *
6461 * The extensions are listed on Special:Version. This page also looks for a file
6462 * named COPYING or LICENSE (optional .txt extension) and provides a link to
6463 * view said file. When the 'license-name' key is specified, this file is
6464 * interpreted as wikitext.
6465 *
6466 * - $type: One of 'specialpage', 'parserhook', 'variable', 'media', 'antispam',
6467 * 'skin', 'api', or 'other', or any additional types as specified through the
6468 * ExtensionTypes hook as used in SpecialVersion::getExtensionTypes().
6469 *
6470 * - name: Name of extension as an inline string instead of localizable message.
6471 * Do not omit this even if 'namemsg' is provided, as it is used to override
6472 * the path Special:Version uses to find extension's license info, and is
6473 * required for backwards-compatibility with MediaWiki 1.23 and older.
6474 *
6475 * - namemsg (since MW 1.24): A message key for a message containing the
6476 * extension's name, if the name is localizable. (For example, skin names
6477 * usually are.)
6478 *
6479 * - author: A string or an array of strings. Authors can be linked using
6480 * the regular wikitext link syntax. To have an internationalized version of
6481 * "and others" show, add an element "...". This element can also be linked,
6482 * for instance "[http://example ...]".
6483 *
6484 * - descriptionmsg: A message key or an an array with message key and parameters:
6485 * `'descriptionmsg' => 'exampleextension-desc',`
6486 *
6487 * - description: Description of extension as an inline string instead of
6488 * localizable message (omit in favour of 'descriptionmsg').
6489 *
6490 * - license-name: Short name of the license (used as label for the link), such
6491 * as "GPL-2.0+" or "MIT" (https://spdx.org/licenses/ for a list of identifiers).
6492 */
6493 $wgExtensionCredits = array();
6494
6495 /**
6496 * Authentication plugin.
6497 * @var $wgAuth AuthPlugin
6498 */
6499 $wgAuth = null;
6500
6501 /**
6502 * Global list of hooks.
6503 *
6504 * The key is one of the events made available by MediaWiki, you can find
6505 * a description for most of them in docs/hooks.txt. The array is used
6506 * internally by Hook:run().
6507 *
6508 * The value can be one of:
6509 *
6510 * - A function name:
6511 * @code
6512 * $wgHooks['event_name'][] = $function;
6513 * @endcode
6514 * - A function with some data:
6515 * @code
6516 * $wgHooks['event_name'][] = array( $function, $data );
6517 * @endcode
6518 * - A an object method:
6519 * @code
6520 * $wgHooks['event_name'][] = array( $object, 'method' );
6521 * @endcode
6522 * - A closure:
6523 * @code
6524 * $wgHooks['event_name'][] = function ( $hookParam ) {
6525 * // Handler code goes here.
6526 * };
6527 * @endcode
6528 *
6529 * @warning You should always append to an event array or you will end up
6530 * deleting a previous registered hook.
6531 *
6532 * @warning Hook handlers should be registered at file scope. Registering
6533 * handlers after file scope can lead to unexpected results due to caching.
6534 */
6535 $wgHooks = array();
6536
6537 /**
6538 * Maps jobs to their handling classes; extensions
6539 * can add to this to provide custom jobs
6540 */
6541 $wgJobClasses = array(
6542 'refreshLinks' => 'RefreshLinksJob',
6543 'htmlCacheUpdate' => 'HTMLCacheUpdateJob',
6544 'sendMail' => 'EmaillingJob',
6545 'enotifNotify' => 'EnotifNotifyJob',
6546 'fixDoubleRedirect' => 'DoubleRedirectJob',
6547 'uploadFromUrl' => 'UploadFromUrlJob',
6548 'AssembleUploadChunks' => 'AssembleUploadChunksJob',
6549 'PublishStashedFile' => 'PublishStashedFileJob',
6550 'ThumbnailRender' => 'ThumbnailRenderJob',
6551 'recentChangesUpdate' => 'RecentChangesUpdateJob',
6552 'refreshLinksPrioritized' => 'RefreshLinksJob', // for cascading protection
6553 'activityUpdateJob' => 'ActivityUpdateJob',
6554 'enqueue' => 'EnqueueJob', // local queue for multi-DC setups
6555 'null' => 'NullJob'
6556 );
6557
6558 /**
6559 * Jobs that must be explicitly requested, i.e. aren't run by job runners unless
6560 * special flags are set. The values here are keys of $wgJobClasses.
6561 *
6562 * These can be:
6563 * - Very long-running jobs.
6564 * - Jobs that you would never want to run as part of a page rendering request.
6565 * - Jobs that you want to run on specialized machines ( like transcoding, or a particular
6566 * machine on your cluster has 'outside' web access you could restrict uploadFromUrl )
6567 * These settings should be global to all wikis.
6568 */
6569 $wgJobTypesExcludedFromDefaultQueue = array( 'AssembleUploadChunks', 'PublishStashedFile' );
6570
6571 /**
6572 * Map of job types to how many job "work items" should be run per second
6573 * on each job runner process. The meaning of "work items" varies per job,
6574 * but typically would be something like "pages to update". A single job
6575 * may have a variable number of work items, as is the case with batch jobs.
6576 * This is used by runJobs.php and not jobs run via $wgJobRunRate.
6577 * These settings should be global to all wikis.
6578 * @var float[]
6579 */
6580 $wgJobBackoffThrottling = array();
6581
6582 /**
6583 * Make job runners commit changes for slave-lag prone jobs one job at a time.
6584 * This is useful if there are many job workers that race on slave lag checks.
6585 * If set, jobs taking this many seconds of DB write time have serialized commits.
6586 *
6587 * Note that affected jobs may have worse lock contention. Also, if they affect
6588 * several DBs at once they may have a smaller chance of being atomic due to the
6589 * possibility of connection loss while queueing up to commit. Affected jobs may
6590 * also fail due to the commit lock acquisition timeout.
6591 *
6592 * @var float|bool
6593 * @since 1.26
6594 */
6595 $wgJobSerialCommitThreshold = false;
6596
6597 /**
6598 * Map of job types to configuration arrays.
6599 * This determines which queue class and storage system is used for each job type.
6600 * Job types that do not have explicit configuration will use the 'default' config.
6601 * These settings should be global to all wikis.
6602 */
6603 $wgJobTypeConf = array(
6604 'default' => array( 'class' => 'JobQueueDB', 'order' => 'random' ),
6605 );
6606
6607 /**
6608 * Which aggregator to use for tracking which queues have jobs.
6609 * These settings should be global to all wikis.
6610 */
6611 $wgJobQueueAggregator = array(
6612 'class' => 'JobQueueAggregatorNull'
6613 );
6614
6615 /**
6616 * Additional functions to be performed with updateSpecialPages.
6617 * Expensive Querypages are already updated.
6618 */
6619 $wgSpecialPageCacheUpdates = array(
6620 'Statistics' => array( 'SiteStatsUpdate', 'cacheUpdate' )
6621 );
6622
6623 /**
6624 * Hooks that are used for outputting exceptions. Format is:
6625 * $wgExceptionHooks[] = $funcname
6626 * or:
6627 * $wgExceptionHooks[] = array( $class, $funcname )
6628 * Hooks should return strings or false
6629 */
6630 $wgExceptionHooks = array();
6631
6632 /**
6633 * Page property link table invalidation lists. When a page property
6634 * changes, this may require other link tables to be updated (eg
6635 * adding __HIDDENCAT__ means the hiddencat tracking category will
6636 * have been added, so the categorylinks table needs to be rebuilt).
6637 * This array can be added to by extensions.
6638 */
6639 $wgPagePropLinkInvalidations = array(
6640 'hiddencat' => 'categorylinks',
6641 );
6642
6643 /** @} */ # End extensions }
6644
6645 /*************************************************************************//**
6646 * @name Categories
6647 * @{
6648 */
6649
6650 /**
6651 * Use experimental, DMOZ-like category browser
6652 */
6653 $wgUseCategoryBrowser = false;
6654
6655 /**
6656 * On category pages, show thumbnail gallery for images belonging to that
6657 * category instead of listing them as articles.
6658 */
6659 $wgCategoryMagicGallery = true;
6660
6661 /**
6662 * Paging limit for categories
6663 */
6664 $wgCategoryPagingLimit = 200;
6665
6666 /**
6667 * Specify how category names should be sorted, when listed on a category page.
6668 * A sorting scheme is also known as a collation.
6669 *
6670 * Available values are:
6671 *
6672 * - uppercase: Converts the category name to upper case, and sorts by that.
6673 *
6674 * - identity: Does no conversion. Sorts by binary value of the string.
6675 *
6676 * - uca-default: Provides access to the Unicode Collation Algorithm with
6677 * the default element table. This is a compromise collation which sorts
6678 * all languages in a mediocre way. However, it is better than "uppercase".
6679 *
6680 * To use the uca-default collation, you must have PHP's intl extension
6681 * installed. See http://php.net/manual/en/intl.setup.php . The details of the
6682 * resulting collation will depend on the version of ICU installed on the
6683 * server.
6684 *
6685 * After you change this, you must run maintenance/updateCollation.php to fix
6686 * the sort keys in the database.
6687 *
6688 * Extensions can define there own collations by subclassing Collation
6689 * and using the Collation::factory hook.
6690 */
6691 $wgCategoryCollation = 'uppercase';
6692
6693 /** @} */ # End categories }
6694
6695 /*************************************************************************//**
6696 * @name Logging
6697 * @{
6698 */
6699
6700 /**
6701 * The logging system has two levels: an event type, which describes the
6702 * general category and can be viewed as a named subset of all logs; and
6703 * an action, which is a specific kind of event that can exist in that
6704 * log type.
6705 */
6706 $wgLogTypes = array(
6707 '',
6708 'block',
6709 'protect',
6710 'rights',
6711 'delete',
6712 'upload',
6713 'move',
6714 'import',
6715 'patrol',
6716 'merge',
6717 'suppress',
6718 'tag',
6719 'managetags',
6720 );
6721
6722 /**
6723 * This restricts log access to those who have a certain right
6724 * Users without this will not see it in the option menu and can not view it
6725 * Restricted logs are not added to recent changes
6726 * Logs should remain non-transcludable
6727 * Format: logtype => permissiontype
6728 */
6729 $wgLogRestrictions = array(
6730 'suppress' => 'suppressionlog'
6731 );
6732
6733 /**
6734 * Show/hide links on Special:Log will be shown for these log types.
6735 *
6736 * This is associative array of log type => boolean "hide by default"
6737 *
6738 * See $wgLogTypes for a list of available log types.
6739 *
6740 * @par Example:
6741 * @code
6742 * $wgFilterLogTypes = array(
6743 * 'move' => true,
6744 * 'import' => false,
6745 * );
6746 * @endcode
6747 *
6748 * Will display show/hide links for the move and import logs. Move logs will be
6749 * hidden by default unless the link is clicked. Import logs will be shown by
6750 * default, and hidden when the link is clicked.
6751 *
6752 * A message of the form log-show-hide-[type] should be added, and will be used
6753 * for the link text.
6754 */
6755 $wgFilterLogTypes = array(
6756 'patrol' => true,
6757 'tag' => true,
6758 );
6759
6760 /**
6761 * Lists the message key string for each log type. The localized messages
6762 * will be listed in the user interface.
6763 *
6764 * Extensions with custom log types may add to this array.
6765 *
6766 * @since 1.19, if you follow the naming convention log-name-TYPE,
6767 * where TYPE is your log type, yoy don't need to use this array.
6768 */
6769 $wgLogNames = array(
6770 '' => 'all-logs-page',
6771 'block' => 'blocklogpage',
6772 'protect' => 'protectlogpage',
6773 'rights' => 'rightslog',
6774 'delete' => 'dellogpage',
6775 'upload' => 'uploadlogpage',
6776 'move' => 'movelogpage',
6777 'import' => 'importlogpage',
6778 'patrol' => 'patrol-log-page',
6779 'merge' => 'mergelog',
6780 'suppress' => 'suppressionlog',
6781 );
6782
6783 /**
6784 * Lists the message key string for descriptive text to be shown at the
6785 * top of each log type.
6786 *
6787 * Extensions with custom log types may add to this array.
6788 *
6789 * @since 1.19, if you follow the naming convention log-description-TYPE,
6790 * where TYPE is your log type, yoy don't need to use this array.
6791 */
6792 $wgLogHeaders = array(
6793 '' => 'alllogstext',
6794 'block' => 'blocklogtext',
6795 'protect' => 'protectlogtext',
6796 'rights' => 'rightslogtext',
6797 'delete' => 'dellogpagetext',
6798 'upload' => 'uploadlogpagetext',
6799 'move' => 'movelogpagetext',
6800 'import' => 'importlogpagetext',
6801 'patrol' => 'patrol-log-header',
6802 'merge' => 'mergelogpagetext',
6803 'suppress' => 'suppressionlogtext',
6804 );
6805
6806 /**
6807 * Lists the message key string for formatting individual events of each
6808 * type and action when listed in the logs.
6809 *
6810 * Extensions with custom log types may add to this array.
6811 */
6812 $wgLogActions = array(
6813 'protect/protect' => 'protectedarticle',
6814 'protect/modify' => 'modifiedarticleprotection',
6815 'protect/unprotect' => 'unprotectedarticle',
6816 'protect/move_prot' => 'movedarticleprotection',
6817 );
6818
6819 /**
6820 * The same as above, but here values are names of classes,
6821 * not messages.
6822 * @see LogPage::actionText
6823 * @see LogFormatter
6824 */
6825 $wgLogActionsHandlers = array(
6826 'move/move' => 'MoveLogFormatter',
6827 'move/move_redir' => 'MoveLogFormatter',
6828 'delete/delete' => 'DeleteLogFormatter',
6829 'delete/restore' => 'DeleteLogFormatter',
6830 'delete/revision' => 'DeleteLogFormatter',
6831 'delete/event' => 'DeleteLogFormatter',
6832 'suppress/revision' => 'DeleteLogFormatter',
6833 'suppress/event' => 'DeleteLogFormatter',
6834 'suppress/delete' => 'DeleteLogFormatter',
6835 'patrol/patrol' => 'PatrolLogFormatter',
6836 'rights/rights' => 'RightsLogFormatter',
6837 'rights/autopromote' => 'RightsLogFormatter',
6838 'upload/upload' => 'UploadLogFormatter',
6839 'upload/overwrite' => 'UploadLogFormatter',
6840 'upload/revert' => 'UploadLogFormatter',
6841 'merge/merge' => 'MergeLogFormatter',
6842 'tag/update' => 'TagLogFormatter',
6843 'managetags/create' => 'LogFormatter',
6844 'managetags/delete' => 'LogFormatter',
6845 'managetags/activate' => 'LogFormatter',
6846 'managetags/deactivate' => 'LogFormatter',
6847 'block/block' => 'BlockLogFormatter',
6848 'block/unblock' => 'BlockLogFormatter',
6849 'block/reblock' => 'BlockLogFormatter',
6850 'suppress/block' => 'BlockLogFormatter',
6851 'suppress/reblock' => 'BlockLogFormatter',
6852 'import/upload' => 'LogFormatter',
6853 'import/interwiki' => 'LogFormatter',
6854 );
6855
6856 /**
6857 * Maintain a log of newusers at Log/newusers?
6858 */
6859 $wgNewUserLog = true;
6860
6861 /** @} */ # end logging }
6862
6863 /*************************************************************************//**
6864 * @name Special pages (general and miscellaneous)
6865 * @{
6866 */
6867
6868 /**
6869 * Allow special page inclusions such as {{Special:Allpages}}
6870 */
6871 $wgAllowSpecialInclusion = true;
6872
6873 /**
6874 * Set this to an array of special page names to prevent
6875 * maintenance/updateSpecialPages.php from updating those pages.
6876 */
6877 $wgDisableQueryPageUpdate = false;
6878
6879 /**
6880 * List of special pages, followed by what subtitle they should go under
6881 * at Special:SpecialPages
6882 *
6883 * @deprecated since 1.21 Override SpecialPage::getGroupName instead
6884 */
6885 $wgSpecialPageGroups = array();
6886
6887 /**
6888 * On Special:Unusedimages, consider images "used", if they are put
6889 * into a category. Default (false) is not to count those as used.
6890 */
6891 $wgCountCategorizedImagesAsUsed = false;
6892
6893 /**
6894 * Maximum number of links to a redirect page listed on
6895 * Special:Whatlinkshere/RedirectDestination
6896 */
6897 $wgMaxRedirectLinksRetrieved = 500;
6898
6899 /** @} */ # end special pages }
6900
6901 /*************************************************************************//**
6902 * @name Actions
6903 * @{
6904 */
6905
6906 /**
6907 * Array of allowed values for the "title=foo&action=<action>" parameter. Syntax is:
6908 * 'foo' => 'ClassName' Load the specified class which subclasses Action
6909 * 'foo' => true Load the class FooAction which subclasses Action
6910 * If something is specified in the getActionOverrides()
6911 * of the relevant Page object it will be used
6912 * instead of the default class.
6913 * 'foo' => false The action is disabled; show an error message
6914 * Unsetting core actions will probably cause things to complain loudly.
6915 */
6916 $wgActions = array(
6917 'credits' => true,
6918 'delete' => true,
6919 'edit' => true,
6920 'editchangetags' => 'SpecialPageAction',
6921 'history' => true,
6922 'info' => true,
6923 'markpatrolled' => true,
6924 'protect' => true,
6925 'purge' => true,
6926 'raw' => true,
6927 'render' => true,
6928 'revert' => true,
6929 'revisiondelete' => 'SpecialPageAction',
6930 'rollback' => true,
6931 'submit' => true,
6932 'unprotect' => true,
6933 'unwatch' => true,
6934 'view' => true,
6935 'watch' => true,
6936 );
6937
6938 /** @} */ # end actions }
6939
6940 /*************************************************************************//**
6941 * @name Robot (search engine crawler) policy
6942 * See also $wgNoFollowLinks.
6943 * @{
6944 */
6945
6946 /**
6947 * Default robot policy. The default policy is to encourage indexing and fol-
6948 * lowing of links. It may be overridden on a per-namespace and/or per-page
6949 * basis.
6950 */
6951 $wgDefaultRobotPolicy = 'index,follow';
6952
6953 /**
6954 * Robot policies per namespaces. The default policy is given above, the array
6955 * is made of namespace constants as defined in includes/Defines.php. You can-
6956 * not specify a different default policy for NS_SPECIAL: it is always noindex,
6957 * nofollow. This is because a number of special pages (e.g., ListPages) have
6958 * many permutations of options that display the same data under redundant
6959 * URLs, so search engine spiders risk getting lost in a maze of twisty special
6960 * pages, all alike, and never reaching your actual content.
6961 *
6962 * @par Example:
6963 * @code
6964 * $wgNamespaceRobotPolicies = array( NS_TALK => 'noindex' );
6965 * @endcode
6966 */
6967 $wgNamespaceRobotPolicies = array();
6968
6969 /**
6970 * Robot policies per article. These override the per-namespace robot policies.
6971 * Must be in the form of an array where the key part is a properly canonicalised
6972 * text form title and the value is a robot policy.
6973 *
6974 * @par Example:
6975 * @code
6976 * $wgArticleRobotPolicies = array(
6977 * 'Main Page' => 'noindex,follow',
6978 * 'User:Bob' => 'index,follow',
6979 * );
6980 * @endcode
6981 *
6982 * @par Example that DOES NOT WORK because the names are not canonical text
6983 * forms:
6984 * @code
6985 * $wgArticleRobotPolicies = array(
6986 * # Underscore, not space!
6987 * 'Main_Page' => 'noindex,follow',
6988 * # "Project", not the actual project name!
6989 * 'Project:X' => 'index,follow',
6990 * # Needs to be "Abc", not "abc" (unless $wgCapitalLinks is false for that namespace)!
6991 * 'abc' => 'noindex,nofollow'
6992 * );
6993 * @endcode
6994 */
6995 $wgArticleRobotPolicies = array();
6996
6997 /**
6998 * An array of namespace keys in which the __INDEX__/__NOINDEX__ magic words
6999 * will not function, so users can't decide whether pages in that namespace are
7000 * indexed by search engines. If set to null, default to $wgContentNamespaces.
7001 *
7002 * @par Example:
7003 * @code
7004 * $wgExemptFromUserRobotsControl = array( NS_MAIN, NS_TALK, NS_PROJECT );
7005 * @endcode
7006 */
7007 $wgExemptFromUserRobotsControl = null;
7008
7009 /** @} */ # End robot policy }
7010
7011 /************************************************************************//**
7012 * @name AJAX and API
7013 * Note: The AJAX entry point which this section refers to is gradually being
7014 * replaced by the API entry point, api.php. They are essentially equivalent.
7015 * Both of them are used for dynamic client-side features, via XHR.
7016 * @{
7017 */
7018
7019 /**
7020 * Enable the MediaWiki API for convenient access to
7021 * machine-readable data via api.php
7022 *
7023 * See https://www.mediawiki.org/wiki/API
7024 */
7025 $wgEnableAPI = true;
7026
7027 /**
7028 * Allow the API to be used to perform write operations
7029 * (page edits, rollback, etc.) when an authorised user
7030 * accesses it
7031 */
7032 $wgEnableWriteAPI = true;
7033
7034 /**
7035 *
7036 * WARNING: SECURITY THREAT - debug use only
7037 *
7038 * Disables many security checks in the API for debugging purposes.
7039 * This flag should never be used on the production servers, as it introduces
7040 * a number of potential security holes. Even when enabled, the validation
7041 * will still be performed, but instead of failing, API will return a warning.
7042 * Also, there will always be a warning notifying that this flag is set.
7043 * At this point, the flag allows GET requests to go through for modules
7044 * requiring POST.
7045 *
7046 * @since 1.21
7047 */
7048 $wgDebugAPI = false;
7049
7050 /**
7051 * API module extensions.
7052 *
7053 * Associative array mapping module name to modules specs;
7054 * Each module spec is an associative array containing at least
7055 * the 'class' key for the module's class, and optionally a
7056 * 'factory' key for the factory function to use for the module.
7057 *
7058 * That factory function will be called with two parameters,
7059 * the parent module (an instance of ApiBase, usually ApiMain)
7060 * and the name the module was registered under. The return
7061 * value must be an instance of the class given in the 'class'
7062 * field.
7063 *
7064 * For backward compatibility, the module spec may also be a
7065 * simple string containing the module's class name. In that
7066 * case, the class' constructor will be called with the parent
7067 * module and module name as parameters, as described above.
7068 *
7069 * Examples for registering API modules:
7070 *
7071 * @code
7072 * $wgAPIModules['foo'] = 'ApiFoo';
7073 * $wgAPIModules['bar'] = array(
7074 * 'class' => 'ApiBar',
7075 * 'factory' => function( $main, $name ) { ... }
7076 * );
7077 * $wgAPIModules['xyzzy'] = array(
7078 * 'class' => 'ApiXyzzy',
7079 * 'factory' => array( 'XyzzyFactory', 'newApiModule' )
7080 * );
7081 * @endcode
7082 *
7083 * Extension modules may override the core modules.
7084 * See ApiMain::$Modules for a list of the core modules.
7085 */
7086 $wgAPIModules = array();
7087
7088 /**
7089 * API format module extensions.
7090 * Associative array mapping format module name to module specs (see $wgAPIModules).
7091 * Extension modules may override the core modules.
7092 *
7093 * See ApiMain::$Formats for a list of the core format modules.
7094 */
7095 $wgAPIFormatModules = array();
7096
7097 /**
7098 * API Query meta module extensions.
7099 * Associative array mapping meta module name to module specs (see $wgAPIModules).
7100 * Extension modules may override the core modules.
7101 *
7102 * See ApiQuery::$QueryMetaModules for a list of the core meta modules.
7103 */
7104 $wgAPIMetaModules = array();
7105
7106 /**
7107 * API Query prop module extensions.
7108 * Associative array mapping prop module name to module specs (see $wgAPIModules).
7109 * Extension modules may override the core modules.
7110 *
7111 * See ApiQuery::$QueryPropModules for a list of the core prop modules.
7112 */
7113 $wgAPIPropModules = array();
7114
7115 /**
7116 * API Query list module extensions.
7117 * Associative array mapping list module name to module specs (see $wgAPIModules).
7118 * Extension modules may override the core modules.
7119 *
7120 * See ApiQuery::$QueryListModules for a list of the core list modules.
7121 */
7122 $wgAPIListModules = array();
7123
7124 /**
7125 * This variable is ignored. To add your module to the API, please add it to $wgAPI*Modules
7126 * @deprecated since 1.21
7127 */
7128 $wgAPIGeneratorModules = array();
7129
7130 /**
7131 * Maximum amount of rows to scan in a DB query in the API
7132 * The default value is generally fine
7133 */
7134 $wgAPIMaxDBRows = 5000;
7135
7136 /**
7137 * The maximum size (in bytes) of an API result.
7138 * @warning Do not set this lower than $wgMaxArticleSize*1024
7139 */
7140 $wgAPIMaxResultSize = 8388608;
7141
7142 /**
7143 * The maximum number of uncached diffs that can be retrieved in one API
7144 * request. Set this to 0 to disable API diffs altogether
7145 */
7146 $wgAPIMaxUncachedDiffs = 1;
7147
7148 /**
7149 * Log file or URL (TCP or UDP) to log API requests to, or false to disable
7150 * API request logging
7151 */
7152 $wgAPIRequestLog = false;
7153
7154 /**
7155 * Set the timeout for the API help text cache. If set to 0, caching disabled
7156 */
7157 $wgAPICacheHelpTimeout = 60 * 60;
7158
7159 /**
7160 * The ApiQueryQueryPages module should skip pages that are redundant to true
7161 * API queries.
7162 */
7163 $wgAPIUselessQueryPages = array(
7164 'MIMEsearch', // aiprop=mime
7165 'LinkSearch', // list=exturlusage
7166 'FileDuplicateSearch', // prop=duplicatefiles
7167 );
7168
7169 /**
7170 * Enable AJAX framework
7171 */
7172 $wgUseAjax = true;
7173
7174 /**
7175 * List of Ajax-callable functions.
7176 * Extensions acting as Ajax callbacks must register here
7177 */
7178 $wgAjaxExportList = array();
7179
7180 /**
7181 * Enable watching/unwatching pages using AJAX.
7182 * Requires $wgUseAjax to be true too.
7183 */
7184 $wgAjaxWatch = true;
7185
7186 /**
7187 * Enable AJAX check for file overwrite, pre-upload
7188 */
7189 $wgAjaxUploadDestCheck = true;
7190
7191 /**
7192 * Enable previewing licences via AJAX. Also requires $wgEnableAPI to be true.
7193 */
7194 $wgAjaxLicensePreview = true;
7195
7196 /**
7197 * Have clients send edits to be prepared when filling in edit summaries.
7198 * This gives the server a head start on the expensive parsing operation.
7199 */
7200 $wgAjaxEditStash = true;
7201
7202 /**
7203 * Settings for incoming cross-site AJAX requests:
7204 * Newer browsers support cross-site AJAX when the target resource allows requests
7205 * from the origin domain by the Access-Control-Allow-Origin header.
7206 * This is currently only used by the API (requests to api.php)
7207 * $wgCrossSiteAJAXdomains can be set using a wildcard syntax:
7208 *
7209 * - '*' matches any number of characters
7210 * - '?' matches any 1 character
7211 *
7212 * @par Example:
7213 * @code
7214 * $wgCrossSiteAJAXdomains = array(
7215 * 'www.mediawiki.org',
7216 * '*.wikipedia.org',
7217 * '*.wikimedia.org',
7218 * '*.wiktionary.org',
7219 * );
7220 * @endcode
7221 */
7222 $wgCrossSiteAJAXdomains = array();
7223
7224 /**
7225 * Domains that should not be allowed to make AJAX requests,
7226 * even if they match one of the domains allowed by $wgCrossSiteAJAXdomains
7227 * Uses the same syntax as $wgCrossSiteAJAXdomains
7228 */
7229 $wgCrossSiteAJAXdomainExceptions = array();
7230
7231 /** @} */ # End AJAX and API }
7232
7233 /************************************************************************//**
7234 * @name Shell and process control
7235 * @{
7236 */
7237
7238 /**
7239 * Maximum amount of virtual memory available to shell processes under linux, in KB.
7240 */
7241 $wgMaxShellMemory = 307200;
7242
7243 /**
7244 * Maximum file size created by shell processes under linux, in KB
7245 * ImageMagick convert for example can be fairly hungry for scratch space
7246 */
7247 $wgMaxShellFileSize = 102400;
7248
7249 /**
7250 * Maximum CPU time in seconds for shell processes under Linux
7251 */
7252 $wgMaxShellTime = 180;
7253
7254 /**
7255 * Maximum wall clock time (i.e. real time, of the kind the clock on the wall
7256 * would measure) in seconds for shell processes under Linux
7257 */
7258 $wgMaxShellWallClockTime = 180;
7259
7260 /**
7261 * Under Linux: a cgroup directory used to constrain memory usage of shell
7262 * commands. The directory must be writable by the user which runs MediaWiki.
7263 *
7264 * If specified, this is used instead of ulimit, which is inaccurate, and
7265 * causes malloc() to return NULL, which exposes bugs in C applications, making
7266 * them segfault or deadlock.
7267 *
7268 * A wrapper script will create a cgroup for each shell command that runs, as
7269 * a subgroup of the specified cgroup. If the memory limit is exceeded, the
7270 * kernel will send a SIGKILL signal to a process in the subgroup.
7271 *
7272 * @par Example:
7273 * @code
7274 * mkdir -p /sys/fs/cgroup/memory/mediawiki
7275 * mkdir -m 0777 /sys/fs/cgroup/memory/mediawiki/job
7276 * echo '$wgShellCgroup = "/sys/fs/cgroup/memory/mediawiki/job";' >> LocalSettings.php
7277 * @endcode
7278 *
7279 * The reliability of cgroup cleanup can be improved by installing a
7280 * notify_on_release script in the root cgroup, see e.g.
7281 * https://gerrit.wikimedia.org/r/#/c/40784
7282 */
7283 $wgShellCgroup = false;
7284
7285 /**
7286 * Executable path of the PHP cli binary (php/php5). Should be set up on install.
7287 */
7288 $wgPhpCli = '/usr/bin/php';
7289
7290 /**
7291 * Locale for LC_CTYPE, to work around http://bugs.php.net/bug.php?id=45132
7292 * For Unix-like operating systems, set this to to a locale that has a UTF-8
7293 * character set. Only the character set is relevant.
7294 */
7295 $wgShellLocale = 'en_US.utf8';
7296
7297 /** @} */ # End shell }
7298
7299 /************************************************************************//**
7300 * @name HTTP client
7301 * @{
7302 */
7303
7304 /**
7305 * Timeout for HTTP requests done internally, in seconds.
7306 */
7307 $wgHTTPTimeout = 25;
7308
7309 /**
7310 * Timeout for Asynchronous (background) HTTP requests, in seconds.
7311 */
7312 $wgAsyncHTTPTimeout = 25;
7313
7314 /**
7315 * Proxy to use for CURL requests.
7316 */
7317 $wgHTTPProxy = false;
7318
7319 /**
7320 * Local virtual hosts.
7321 *
7322 * This lists domains that are configured as virtual hosts on the same machine.
7323 * If a request is to be made to a domain listed here, or any subdomain thereof,
7324 * then no proxy will be used.
7325 * Command-line scripts are not affected by this setting and will always use
7326 * proxy if it is configured.
7327 * @since 1.25
7328 */
7329 $wgLocalVirtualHosts = array();
7330
7331 /**
7332 * Timeout for connections done internally (in seconds)
7333 * Only works for curl
7334 */
7335 $wgHTTPConnectTimeout = 5e0;
7336
7337 /** @} */ # End HTTP client }
7338
7339 /************************************************************************//**
7340 * @name Job queue
7341 * See also $wgEnotifUseJobQ.
7342 * @{
7343 */
7344
7345 /**
7346 * Number of jobs to perform per request. May be less than one in which case
7347 * jobs are performed probabalistically. If this is zero, jobs will not be done
7348 * during ordinary apache requests. In this case, maintenance/runJobs.php should
7349 * be run periodically.
7350 */
7351 $wgJobRunRate = 1;
7352
7353 /**
7354 * When $wgJobRunRate > 0, try to run jobs asynchronously, spawning a new process
7355 * to handle the job execution, instead of blocking the request until the job
7356 * execution finishes.
7357 * @since 1.23
7358 */
7359 $wgRunJobsAsync = true;
7360
7361 /**
7362 * Number of rows to update per job
7363 */
7364 $wgUpdateRowsPerJob = 500;
7365
7366 /**
7367 * Number of rows to update per query
7368 */
7369 $wgUpdateRowsPerQuery = 100;
7370
7371 /** @} */ # End job queue }
7372
7373 /************************************************************************//**
7374 * @name Miscellaneous
7375 * @{
7376 */
7377
7378 /**
7379 * Name of the external diff engine to use
7380 */
7381 $wgExternalDiffEngine = false;
7382
7383 /**
7384 * Disable redirects to special pages and interwiki redirects, which use a 302
7385 * and have no "redirected from" link.
7386 *
7387 * @note This is only for articles with #REDIRECT in them. URL's containing a
7388 * local interwiki prefix (or a non-canonical special page name) are still hard
7389 * redirected regardless of this setting.
7390 */
7391 $wgDisableHardRedirects = false;
7392
7393 /**
7394 * LinkHolderArray batch size
7395 * For debugging
7396 */
7397 $wgLinkHolderBatchSize = 1000;
7398
7399 /**
7400 * By default MediaWiki does not register links pointing to same server in
7401 * externallinks dataset, use this value to override:
7402 */
7403 $wgRegisterInternalExternals = false;
7404
7405 /**
7406 * Maximum number of pages to move at once when moving subpages with a page.
7407 */
7408 $wgMaximumMovedPages = 100;
7409
7410 /**
7411 * Fix double redirects after a page move.
7412 * Tends to conflict with page move vandalism, use only on a private wiki.
7413 */
7414 $wgFixDoubleRedirects = false;
7415
7416 /**
7417 * Allow redirection to another page when a user logs in.
7418 * To enable, set to a string like 'Main Page'
7419 */
7420 $wgRedirectOnLogin = null;
7421
7422 /**
7423 * Configuration for processing pool control, for use in high-traffic wikis.
7424 * An implementation is provided in the PoolCounter extension.
7425 *
7426 * This configuration array maps pool types to an associative array. The only
7427 * defined key in the associative array is "class", which gives the class name.
7428 * The remaining elements are passed through to the class as constructor
7429 * parameters.
7430 *
7431 * @par Example:
7432 * @code
7433 * $wgPoolCounterConf = array( 'ArticleView' => array(
7434 * 'class' => 'PoolCounter_Client',
7435 * 'timeout' => 15, // wait timeout in seconds
7436 * 'workers' => 5, // maximum number of active threads in each pool
7437 * 'maxqueue' => 50, // maximum number of total threads in each pool
7438 * ... any extension-specific options...
7439 * );
7440 * @endcode
7441 */
7442 $wgPoolCounterConf = null;
7443
7444 /**
7445 * To disable file delete/restore temporarily
7446 */
7447 $wgUploadMaintenance = false;
7448
7449 /**
7450 * Associative array mapping namespace IDs to the name of the content model pages in that namespace
7451 * should have by default (use the CONTENT_MODEL_XXX constants). If no special content type is
7452 * defined for a given namespace, pages in that namespace will use the CONTENT_MODEL_WIKITEXT
7453 * (except for the special case of JS and CS pages).
7454 *
7455 * @since 1.21
7456 */
7457 $wgNamespaceContentModels = array();
7458
7459 /**
7460 * How to react if a plain text version of a non-text Content object is requested using
7461 * ContentHandler::getContentText():
7462 *
7463 * * 'ignore': return null
7464 * * 'fail': throw an MWException
7465 * * 'serialize': serialize to default format
7466 *
7467 * @since 1.21
7468 */
7469 $wgContentHandlerTextFallback = 'ignore';
7470
7471 /**
7472 * Set to false to disable use of the database fields introduced by the ContentHandler facility.
7473 * This way, the ContentHandler facility can be used without any additional information in the
7474 * database. A page's content model is then derived solely from the page's title. This however
7475 * means that changing a page's default model (e.g. using $wgNamespaceContentModels) will break
7476 * the page and/or make the content inaccessible. This also means that pages can not be moved to
7477 * a title that would default to a different content model.
7478 *
7479 * Overall, with $wgContentHandlerUseDB = false, no database updates are needed, but content
7480 * handling is less robust and less flexible.
7481 *
7482 * @since 1.21
7483 */
7484 $wgContentHandlerUseDB = true;
7485
7486 /**
7487 * Determines which types of text are parsed as wikitext. This does not imply that these kinds
7488 * of texts are also rendered as wikitext, it only means that links, magic words, etc will have
7489 * the effect on the database they would have on a wikitext page.
7490 *
7491 * @todo On the long run, it would be nice to put categories etc into a separate structure,
7492 * or at least parse only the contents of comments in the scripts.
7493 *
7494 * @since 1.21
7495 */
7496 $wgTextModelsToParse = array(
7497 CONTENT_MODEL_WIKITEXT, // Just for completeness, wikitext will always be parsed.
7498 CONTENT_MODEL_JAVASCRIPT, // Make categories etc work, people put them into comments.
7499 CONTENT_MODEL_CSS, // Make categories etc work, people put them into comments.
7500 );
7501
7502 /**
7503 * Whether the user must enter their password to change their e-mail address
7504 *
7505 * @since 1.20
7506 */
7507 $wgRequirePasswordforEmailChange = true;
7508
7509 /**
7510 * Register handlers for specific types of sites.
7511 *
7512 * @since 1.20
7513 */
7514 $wgSiteTypes = array(
7515 'mediawiki' => 'MediaWikiSite',
7516 );
7517
7518 /**
7519 * Whether the page_props table has a pp_sortkey column. Set to false in case
7520 * the respective database schema change was not applied.
7521 * @since 1.23
7522 */
7523 $wgPagePropsHaveSortkey = true;
7524
7525 /**
7526 * Port where you have HTTPS running
7527 * Supports HTTPS on non-standard ports
7528 * @see bug 65184
7529 * @since 1.24
7530 */
7531 $wgHttpsPort = 443;
7532
7533 /**
7534 * Secret for hmac-based key derivation function (fast,
7535 * cryptographically secure random numbers).
7536 * This should be set in LocalSettings.php, otherwise wgSecretKey will
7537 * be used.
7538 * See also: $wgHKDFAlgorithm
7539 * @since 1.24
7540 */
7541 $wgHKDFSecret = false;
7542
7543 /**
7544 * Algorithm for hmac-based key derivation function (fast,
7545 * cryptographically secure random numbers).
7546 * See also: $wgHKDFSecret
7547 * @since 1.24
7548 */
7549 $wgHKDFAlgorithm = 'sha256';
7550
7551 /**
7552 * Enable page language feature
7553 * Allows setting page language in database
7554 * @var bool
7555 * @since 1.24
7556 */
7557 $wgPageLanguageUseDB = false;
7558
7559 /**
7560 * Enable use of the *_namespace fields of the pagelinks, redirect, and templatelinks tables.
7561 * Set this only if the fields are fully populated. This may be removed in 1.25.
7562 * @var bool
7563 * @since 1.24
7564 */
7565 $wgUseLinkNamespaceDBFields = true;
7566
7567 /**
7568 * Global configuration variable for Virtual REST Services.
7569 * Parameters for different services are to be declared inside
7570 * $wgVirtualRestConfig['modules'], which is to be treated as an associative
7571 * array. Global parameters will be merged with service-specific ones. The
7572 * result will then be passed to VirtualRESTService::__construct() in the
7573 * module.
7574 *
7575 * Example config for Parsoid:
7576 *
7577 * $wgVirtualRestConfig['modules']['parsoid'] = array(
7578 * 'url' => 'http://localhost:8000',
7579 * 'prefix' => 'enwiki',
7580 * );
7581 *
7582 * @var array
7583 * @since 1.25
7584 */
7585 $wgVirtualRestConfig = array(
7586 'modules' => array(),
7587 'global' => array(
7588 # Timeout in seconds
7589 'timeout' => 360,
7590 'forwardCookies' => false,
7591 'HTTPProxy' => null
7592 )
7593 );
7594
7595 /**
7596 * For really cool vim folding this needs to be at the end:
7597 * vim: foldmarker=@{,@} foldmethod=marker
7598 * @}
7599 */