Merge "Disable Preferences save button before setting change"
[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 'apc' => array( 'class' => 'APCBagOStuff' ),
2155 'xcache' => array( 'class' => 'XCacheBagOStuff' ),
2156 'wincache' => array( 'class' => 'WinCacheBagOStuff' ),
2157 'memcached-php' => array( 'class' => 'MemcachedPhpBagOStuff', 'loggroup' => 'memcached' ),
2158 'memcached-pecl' => array( 'class' => 'MemcachedPeclBagOStuff', 'loggroup' => 'memcached' ),
2159 'hash' => array( 'class' => 'HashBagOStuff' ),
2160 );
2161
2162 /**
2163 * Main Wide-Area-Network cache type. This should be a cache with fast access,
2164 * but it may have limited space. By default, it is disabled, since the basic stock
2165 * cache is not fast enough to make it worthwhile. For single data-center setups, this can
2166 * simply be pointed to a cache in $wgWANObjectCaches that uses a local $wgObjectCaches
2167 * cache with a relayer of type EventRelayerNull.
2168 *
2169 * The options are:
2170 * - false: Configure the cache using $wgMainCacheType, without using
2171 * a relayer (only matters if there are multiple data-centers)
2172 * - CACHE_NONE: Do not cache
2173 * - (other): A string may be used which identifies a cache
2174 * configuration in $wgWANObjectCaches
2175 * @since 1.26
2176 */
2177 $wgMainWANCache = false;
2178
2179 /**
2180 * Advanced WAN object cache configuration.
2181 *
2182 * Each WAN cache wraps a registered object cache (for the local cluster)
2183 * and it must also be configured to point to a PubSub instance. Subscribers
2184 * must be configured to relay purges to the actual cache servers.
2185 *
2186 * The format is an associative array where the key is a cache identifier, and
2187 * the value is an associative array of parameters. The "cacheId" parameter is
2188 * a cache identifier from $wgObjectCaches. The "relayerConfig" parameter is an
2189 * array used to construct an EventRelayer object. The "pool" parameter is a
2190 * string that is used as a PubSub channel prefix.
2191 *
2192 * @since 1.26
2193 */
2194 $wgWANObjectCaches = array(
2195 CACHE_NONE => array(
2196 'class' => 'WANObjectCache',
2197 'cacheId' => CACHE_NONE,
2198 'pool' => 'mediawiki-main-none',
2199 'relayerConfig' => array( 'class' => 'EventRelayerNull' )
2200 )
2201 /* Example of a simple single data-center cache:
2202 'memcached-php' => array(
2203 'class' => 'WANObjectCache',
2204 'cacheId' => 'memcached-php',
2205 'pool' => 'mediawiki-main-memcached',
2206 'relayerConfig' => array( 'class' => 'EventRelayerNull' )
2207 )
2208 */
2209 );
2210
2211 /**
2212 * Main object stash type. This should be a fast storage system for storing
2213 * lightweight data like hit counters and user activity. Sites with multiple
2214 * data-centers should have this use a store that replicates all writes. The
2215 * store should have enough consistency for CAS operations to be usable.
2216 *
2217 * The options are:
2218 * - db: Store cache objects in the DB
2219 * - (other): A string may be used which identifies a cache
2220 * configuration in $wgObjectCaches
2221 *
2222 * @since 1.26
2223 */
2224 $wgMainStash = 'db';
2225
2226 /**
2227 * The expiry time for the parser cache, in seconds.
2228 * The default is 86400 (one day).
2229 */
2230 $wgParserCacheExpireTime = 86400;
2231
2232 /**
2233 * Deprecated alias for $wgSessionsInObjectCache.
2234 *
2235 * @deprecated since 1.20; Use $wgSessionsInObjectCache
2236 */
2237 $wgSessionsInMemcached = false;
2238
2239 /**
2240 * Store sessions in an object cache, configured by $wgSessionCacheType. This
2241 * can be useful to improve performance, or to avoid the locking behavior of
2242 * PHP's default session handler, which tends to prevent multiple requests for
2243 * the same user from acting concurrently.
2244 */
2245 $wgSessionsInObjectCache = false;
2246
2247 /**
2248 * The expiry time to use for session storage when $wgSessionsInObjectCache is
2249 * enabled, in seconds.
2250 */
2251 $wgObjectCacheSessionExpiry = 3600;
2252
2253 /**
2254 * This is used for setting php's session.save_handler. In practice, you will
2255 * almost never need to change this ever. Other options might be 'user' or
2256 * 'session_mysql.' Setting to null skips setting this entirely (which might be
2257 * useful if you're doing cross-application sessions, see bug 11381)
2258 */
2259 $wgSessionHandler = null;
2260
2261 /**
2262 * If enabled, will send MemCached debugging information to $wgDebugLogFile
2263 */
2264 $wgMemCachedDebug = false;
2265
2266 /**
2267 * The list of MemCached servers and port numbers
2268 */
2269 $wgMemCachedServers = array( '127.0.0.1:11211' );
2270
2271 /**
2272 * Use persistent connections to MemCached, which are shared across multiple
2273 * requests.
2274 */
2275 $wgMemCachedPersistent = false;
2276
2277 /**
2278 * Read/write timeout for MemCached server communication, in microseconds.
2279 */
2280 $wgMemCachedTimeout = 500000;
2281
2282 /**
2283 * Set this to true to make a local copy of the message cache, for use in
2284 * addition to memcached. The files will be put in $wgCacheDirectory.
2285 */
2286 $wgUseLocalMessageCache = false;
2287
2288 /**
2289 * Instead of caching everything, only cache those messages which have
2290 * been customised in the site content language. This means that
2291 * MediaWiki:Foo/ja is ignored if MediaWiki:Foo doesn't exist.
2292 * This option is probably only useful for translatewiki.net.
2293 */
2294 $wgAdaptiveMessageCache = false;
2295
2296 /**
2297 * Localisation cache configuration. Associative array with keys:
2298 * class: The class to use. May be overridden by extensions.
2299 *
2300 * store: The location to store cache data. May be 'files', 'array', 'db' or
2301 * 'detect'. If set to "files", data will be in CDB files. If set
2302 * to "db", data will be stored to the database. If set to
2303 * "detect", files will be used if $wgCacheDirectory is set,
2304 * otherwise the database will be used.
2305 * "array" is an experimental option that uses PHP files that
2306 * store static arrays.
2307 *
2308 * storeClass: The class name for the underlying storage. If set to a class
2309 * name, it overrides the "store" setting.
2310 *
2311 * storeDirectory: If the store class puts its data in files, this is the
2312 * directory it will use. If this is false, $wgCacheDirectory
2313 * will be used.
2314 *
2315 * manualRecache: Set this to true to disable cache updates on web requests.
2316 * Use maintenance/rebuildLocalisationCache.php instead.
2317 */
2318 $wgLocalisationCacheConf = array(
2319 'class' => 'LocalisationCache',
2320 'store' => 'detect',
2321 'storeClass' => false,
2322 'storeDirectory' => false,
2323 'manualRecache' => false,
2324 );
2325
2326 /**
2327 * Allow client-side caching of pages
2328 */
2329 $wgCachePages = true;
2330
2331 /**
2332 * Set this to current time to invalidate all prior cached pages. Affects both
2333 * client-side and server-side caching.
2334 * You can get the current date on your server by using the command:
2335 * @verbatim
2336 * date +%Y%m%d%H%M%S
2337 * @endverbatim
2338 */
2339 $wgCacheEpoch = '20030516000000';
2340
2341 /**
2342 * Directory where GitInfo will look for pre-computed cache files. If false,
2343 * $wgCacheDirectory/gitinfo will be used.
2344 */
2345 $wgGitInfoCacheDirectory = false;
2346
2347 /**
2348 * Bump this number when changing the global style sheets and JavaScript.
2349 *
2350 * It should be appended in the query string of static CSS and JS includes,
2351 * to ensure that client-side caches do not keep obsolete copies of global
2352 * styles.
2353 */
2354 $wgStyleVersion = '303';
2355
2356 /**
2357 * This will cache static pages for non-logged-in users to reduce
2358 * database traffic on public sites.
2359 * Automatically sets $wgShowIPinHeader = false
2360 * ResourceLoader requests to default language and skins are cached
2361 * as well as single module requests.
2362 */
2363 $wgUseFileCache = false;
2364
2365 /**
2366 * Depth of the subdirectory hierarchy to be created under
2367 * $wgFileCacheDirectory. The subdirectories will be named based on
2368 * the MD5 hash of the title. A value of 0 means all cache files will
2369 * be put directly into the main file cache directory.
2370 */
2371 $wgFileCacheDepth = 2;
2372
2373 /**
2374 * Kept for extension compatibility; see $wgParserCacheType
2375 * @deprecated 1.26
2376 */
2377 $wgEnableParserCache = true;
2378
2379 /**
2380 * Append a configured value to the parser cache and the sitenotice key so
2381 * that they can be kept separate for some class of activity.
2382 */
2383 $wgRenderHashAppend = '';
2384
2385 /**
2386 * If on, the sidebar navigation links are cached for users with the
2387 * current language set. This can save a touch of load on a busy site
2388 * by shaving off extra message lookups.
2389 *
2390 * However it is also fragile: changing the site configuration, or
2391 * having a variable $wgArticlePath, can produce broken links that
2392 * don't update as expected.
2393 */
2394 $wgEnableSidebarCache = false;
2395
2396 /**
2397 * Expiry time for the sidebar cache, in seconds
2398 */
2399 $wgSidebarCacheExpiry = 86400;
2400
2401 /**
2402 * When using the file cache, we can store the cached HTML gzipped to save disk
2403 * space. Pages will then also be served compressed to clients that support it.
2404 *
2405 * Requires zlib support enabled in PHP.
2406 */
2407 $wgUseGzip = false;
2408
2409 /**
2410 * Whether MediaWiki should send an ETag header. Seems to cause
2411 * broken behavior with Squid 2.6, see bug 7098.
2412 */
2413 $wgUseETag = false;
2414
2415 /**
2416 * Clock skew or the one-second resolution of time() can occasionally cause cache
2417 * problems when the user requests two pages within a short period of time. This
2418 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
2419 * a grace period.
2420 */
2421 $wgClockSkewFudge = 5;
2422
2423 /**
2424 * Invalidate various caches when LocalSettings.php changes. This is equivalent
2425 * to setting $wgCacheEpoch to the modification time of LocalSettings.php, as
2426 * was previously done in the default LocalSettings.php file.
2427 *
2428 * On high-traffic wikis, this should be set to false, to avoid the need to
2429 * check the file modification time, and to avoid the performance impact of
2430 * unnecessary cache invalidations.
2431 */
2432 $wgInvalidateCacheOnLocalSettingsChange = true;
2433
2434 /**
2435 * When loading extensions through the extension registration system, this
2436 * can be used to invalidate the cache. A good idea would be to set this to
2437 * one file, you can just `touch` that one to invalidate the cache
2438 *
2439 * @par Example:
2440 * @code
2441 * $wgExtensionInfoMtime = filemtime( "$IP/LocalSettings.php" );
2442 * @endcode
2443 *
2444 * If set to false, the mtime for each individual JSON file will be checked,
2445 * which can be slow if a large number of extensions are being loaded.
2446 *
2447 * @var int|bool
2448 */
2449 $wgExtensionInfoMTime = false;
2450
2451 /** @} */ # end of cache settings
2452
2453 /************************************************************************//**
2454 * @name HTTP proxy (Squid) settings
2455 *
2456 * Many of these settings apply to any HTTP proxy used in front of MediaWiki,
2457 * although they are referred to as Squid settings for historical reasons.
2458 *
2459 * Achieving a high hit ratio with an HTTP proxy requires special
2460 * configuration. See https://www.mediawiki.org/wiki/Manual:Squid_caching for
2461 * more details.
2462 *
2463 * @{
2464 */
2465
2466 /**
2467 * Enable/disable Squid.
2468 * See https://www.mediawiki.org/wiki/Manual:Squid_caching
2469 */
2470 $wgUseSquid = false;
2471
2472 /**
2473 * If you run Squid3 with ESI support, enable this (default:false):
2474 */
2475 $wgUseESI = false;
2476
2477 /**
2478 * Send X-Vary-Options header for better caching (requires patched Squid)
2479 */
2480 $wgUseXVO = false;
2481
2482 /**
2483 * Add X-Forwarded-Proto to the Vary and X-Vary-Options headers for API
2484 * requests and RSS/Atom feeds. Use this if you have an SSL termination setup
2485 * and need to split the cache between HTTP and HTTPS for API requests,
2486 * feed requests and HTTP redirect responses in order to prevent cache
2487 * pollution. This does not affect 'normal' requests to index.php other than
2488 * HTTP redirects.
2489 */
2490 $wgVaryOnXFP = false;
2491
2492 /**
2493 * Internal server name as known to Squid, if different.
2494 *
2495 * @par Example:
2496 * @code
2497 * $wgInternalServer = 'http://yourinternal.tld:8000';
2498 * @endcode
2499 */
2500 $wgInternalServer = false;
2501
2502 /**
2503 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
2504 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
2505 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
2506 * days
2507 */
2508 $wgSquidMaxage = 18000;
2509
2510 /**
2511 * Default maximum age for raw CSS/JS accesses
2512 */
2513 $wgForcedRawSMaxage = 300;
2514
2515 /**
2516 * List of proxy servers to purge on changes; default port is 80. Use IP addresses.
2517 *
2518 * When MediaWiki is running behind a proxy, it will trust X-Forwarded-For
2519 * headers sent/modified from these proxies when obtaining the remote IP address
2520 *
2521 * For a list of trusted servers which *aren't* purged, see $wgSquidServersNoPurge.
2522 */
2523 $wgSquidServers = array();
2524
2525 /**
2526 * As above, except these servers aren't purged on page changes; use to set a
2527 * list of trusted proxies, etc. Supports both individual IP addresses and
2528 * CIDR blocks.
2529 * @since 1.23 Supports CIDR ranges
2530 */
2531 $wgSquidServersNoPurge = array();
2532
2533 /**
2534 * Maximum number of titles to purge in any one client operation
2535 */
2536 $wgMaxSquidPurgeTitles = 400;
2537
2538 /**
2539 * Whether to use a Host header in purge requests sent to the proxy servers
2540 * configured in $wgSquidServers. Set this to false to support Squid
2541 * configured in forward-proxy mode.
2542 *
2543 * If this is set to true, a Host header will be sent, and only the path
2544 * component of the URL will appear on the request line, as if the request
2545 * were a non-proxy HTTP 1.1 request. Varnish only supports this style of
2546 * request. Squid supports this style of request only if reverse-proxy mode
2547 * (http_port ... accel) is enabled.
2548 *
2549 * If this is set to false, no Host header will be sent, and the absolute URL
2550 * will be sent in the request line, as is the standard for an HTTP proxy
2551 * request in both HTTP 1.0 and 1.1. This style of request is not supported
2552 * by Varnish, but is supported by Squid in either configuration (forward or
2553 * reverse).
2554 *
2555 * @since 1.21
2556 */
2557 $wgSquidPurgeUseHostHeader = true;
2558
2559 /**
2560 * Routing configuration for HTCP multicast purging. Add elements here to
2561 * enable HTCP and determine which purges are sent where. If set to an empty
2562 * array, HTCP is disabled.
2563 *
2564 * Each key in this array is a regular expression to match against the purged
2565 * URL, or an empty string to match all URLs. The purged URL is matched against
2566 * the regexes in the order specified, and the first rule whose regex matches
2567 * is used, all remaining rules will thus be ignored.
2568 *
2569 * @par Example configuration to send purges for upload.wikimedia.org to one
2570 * multicast group and all other purges to another:
2571 * @code
2572 * $wgHTCPRouting = array(
2573 * '|^https?://upload\.wikimedia\.org|' => array(
2574 * 'host' => '239.128.0.113',
2575 * 'port' => 4827,
2576 * ),
2577 * '' => array(
2578 * 'host' => '239.128.0.112',
2579 * 'port' => 4827,
2580 * ),
2581 * );
2582 * @endcode
2583 *
2584 * You can also pass an array of hosts to send purges too. This is useful when
2585 * you have several multicast groups or unicast address that should receive a
2586 * given purge. Multiple hosts support was introduced in MediaWiki 1.22.
2587 *
2588 * @par Example of sending purges to multiple hosts:
2589 * @code
2590 * $wgHTCPRouting = array(
2591 * '' => array(
2592 * // Purges to text caches using multicast
2593 * array( 'host' => '239.128.0.114', 'port' => '4827' ),
2594 * // Purges to a hardcoded list of caches
2595 * array( 'host' => '10.88.66.1', 'port' => '4827' ),
2596 * array( 'host' => '10.88.66.2', 'port' => '4827' ),
2597 * array( 'host' => '10.88.66.3', 'port' => '4827' ),
2598 * ),
2599 * );
2600 * @endcode
2601 *
2602 * @since 1.22
2603 *
2604 * $wgHTCPRouting replaces $wgHTCPMulticastRouting that was introduced in 1.20.
2605 * For back compatibility purposes, whenever its array is empty
2606 * $wgHTCPMutlicastRouting will be used as a fallback if it not null.
2607 *
2608 * @see $wgHTCPMulticastTTL
2609 */
2610 $wgHTCPRouting = array();
2611
2612 /**
2613 * HTCP multicast TTL.
2614 * @see $wgHTCPRouting
2615 */
2616 $wgHTCPMulticastTTL = 1;
2617
2618 /**
2619 * Should forwarded Private IPs be accepted?
2620 */
2621 $wgUsePrivateIPs = false;
2622
2623 /** @} */ # end of HTTP proxy settings
2624
2625 /************************************************************************//**
2626 * @name Language, regional and character encoding settings
2627 * @{
2628 */
2629
2630 /**
2631 * Site language code. See languages/Names.php for languages supported by
2632 * MediaWiki out of the box. Not all languages listed there have translations,
2633 * see languages/messages/ for the list of languages with some localisation.
2634 *
2635 * Warning: Don't use language codes listed in $wgDummyLanguageCodes like "no"
2636 * for Norwegian (use "nb" instead), or things will break unexpectedly.
2637 *
2638 * This defines the default interface language for all users, but users can
2639 * change it in their preferences.
2640 *
2641 * This also defines the language of pages in the wiki. The content is wrapped
2642 * in a html element with lang=XX attribute. This behavior can be overridden
2643 * via hooks, see Title::getPageLanguage.
2644 */
2645 $wgLanguageCode = 'en';
2646
2647 /**
2648 * Language cache size, or really how many languages can we handle
2649 * simultaneously without degrading to crawl speed.
2650 */
2651 $wgLangObjCacheSize = 10;
2652
2653 /**
2654 * Some languages need different word forms, usually for different cases.
2655 * Used in Language::convertGrammar().
2656 *
2657 * @par Example:
2658 * @code
2659 * $wgGrammarForms['en']['genitive']['car'] = 'car\'s';
2660 * @endcode
2661 */
2662 $wgGrammarForms = array();
2663
2664 /**
2665 * Treat language links as magic connectors, not inline links
2666 */
2667 $wgInterwikiMagic = true;
2668
2669 /**
2670 * Hide interlanguage links from the sidebar
2671 */
2672 $wgHideInterlanguageLinks = false;
2673
2674 /**
2675 * List of additional interwiki prefixes that should be treated as
2676 * interlanguage links (i.e. placed in the sidebar).
2677 * Notes:
2678 * - This will not do anything unless the prefixes are defined in the interwiki
2679 * map.
2680 * - The display text for these custom interlanguage links will be fetched from
2681 * the system message "interlanguage-link-xyz" where xyz is the prefix in
2682 * this array.
2683 * - A friendly name for each site, used for tooltip text, may optionally be
2684 * placed in the system message "interlanguage-link-sitename-xyz" where xyz is
2685 * the prefix in this array.
2686 */
2687 $wgExtraInterlanguageLinkPrefixes = array();
2688
2689 /**
2690 * List of language names or overrides for default names in Names.php
2691 */
2692 $wgExtraLanguageNames = array();
2693
2694 /**
2695 * List of language codes that don't correspond to an actual language.
2696 * These codes are mostly left-offs from renames, or other legacy things.
2697 * This array makes them not appear as a selectable language on the installer,
2698 * and excludes them when running the transstat.php script.
2699 */
2700 $wgDummyLanguageCodes = array(
2701 'als' => 'gsw',
2702 'bat-smg' => 'sgs',
2703 'be-x-old' => 'be-tarask',
2704 'bh' => 'bho',
2705 'fiu-vro' => 'vro',
2706 'no' => 'nb',
2707 'qqq' => 'qqq', # Used for message documentation.
2708 'qqx' => 'qqx', # Used for viewing message keys.
2709 'roa-rup' => 'rup',
2710 'simple' => 'en',
2711 'zh-classical' => 'lzh',
2712 'zh-min-nan' => 'nan',
2713 'zh-yue' => 'yue',
2714 );
2715
2716 /**
2717 * Character set for use in the article edit box. Language-specific encodings
2718 * may be defined.
2719 *
2720 * This historic feature is one of the first that was added by former MediaWiki
2721 * team leader Brion Vibber, and is used to support the Esperanto x-system.
2722 */
2723 $wgEditEncoding = '';
2724
2725 /**
2726 * Set this to true to replace Arabic presentation forms with their standard
2727 * forms in the U+0600-U+06FF block. This only works if $wgLanguageCode is
2728 * set to "ar".
2729 *
2730 * Note that pages with titles containing presentation forms will become
2731 * inaccessible, run maintenance/cleanupTitles.php to fix this.
2732 */
2733 $wgFixArabicUnicode = true;
2734
2735 /**
2736 * Set this to true to replace ZWJ-based chillu sequences in Malayalam text
2737 * with their Unicode 5.1 equivalents. This only works if $wgLanguageCode is
2738 * set to "ml". Note that some clients (even new clients as of 2010) do not
2739 * support these characters.
2740 *
2741 * If you enable this on an existing wiki, run maintenance/cleanupTitles.php to
2742 * fix any ZWJ sequences in existing page titles.
2743 */
2744 $wgFixMalayalamUnicode = true;
2745
2746 /**
2747 * Set this to always convert certain Unicode sequences to modern ones
2748 * regardless of the content language. This has a small performance
2749 * impact.
2750 *
2751 * See $wgFixArabicUnicode and $wgFixMalayalamUnicode for conversion
2752 * details.
2753 *
2754 * @since 1.17
2755 */
2756 $wgAllUnicodeFixes = false;
2757
2758 /**
2759 * Set this to eg 'ISO-8859-1' to perform character set conversion when
2760 * loading old revisions not marked with "utf-8" flag. Use this when
2761 * converting a wiki from MediaWiki 1.4 or earlier to UTF-8 without the
2762 * burdensome mass conversion of old text data.
2763 *
2764 * @note This DOES NOT touch any fields other than old_text. Titles, comments,
2765 * user names, etc still must be converted en masse in the database before
2766 * continuing as a UTF-8 wiki.
2767 */
2768 $wgLegacyEncoding = false;
2769
2770 /**
2771 * Browser Blacklist for unicode non compliant browsers. Contains a list of
2772 * regexps : "/regexp/" matching problematic browsers. These browsers will
2773 * be served encoded unicode in the edit box instead of real unicode.
2774 */
2775 $wgBrowserBlackList = array(
2776 /**
2777 * Netscape 2-4 detection
2778 * The minor version may contain strings such as "Gold" or "SGoldC-SGI"
2779 * Lots of non-netscape user agents have "compatible", so it's useful to check for that
2780 * with a negative assertion. The [UIN] identifier specifies the level of security
2781 * in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
2782 * The language string is unreliable, it is missing on NS4 Mac.
2783 *
2784 * Reference: http://www.psychedelix.com/agents/index.shtml
2785 */
2786 '/^Mozilla\/2\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2787 '/^Mozilla\/3\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2788 '/^Mozilla\/4\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2789
2790 /**
2791 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>,
2792 * Þ to <THORN> and Ð to <ETH>
2793 *
2794 * Known useragents:
2795 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
2796 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
2797 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
2798 * - [...]
2799 *
2800 * @link http://en.wikipedia.org/w/index.php?diff=12356041&oldid=12355864
2801 * @link http://en.wikipedia.org/wiki/Template%3AOS9
2802 */
2803 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
2804
2805 /**
2806 * Google wireless transcoder, seems to eat a lot of chars alive
2807 * http://it.wikipedia.org/w/index.php?title=Luciano_Ligabue&diff=prev&oldid=8857361
2808 */
2809 '/^Mozilla\/4\.0 \(compatible; MSIE 6.0; Windows NT 5.0; Google Wireless Transcoder;\)/'
2810 );
2811
2812 /**
2813 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
2814 * create stub reference rows in the text table instead of copying
2815 * the full text of all current entries from 'cur' to 'text'.
2816 *
2817 * This will speed up the conversion step for large sites, but
2818 * requires that the cur table be kept around for those revisions
2819 * to remain viewable.
2820 *
2821 * This option affects the updaters *only*. Any present cur stub
2822 * revisions will be readable at runtime regardless of this setting.
2823 */
2824 $wgLegacySchemaConversion = false;
2825
2826 /**
2827 * Enable dates like 'May 12' instead of '12 May', if the default date format
2828 * is 'dmy or mdy'.
2829 */
2830 $wgAmericanDates = false;
2831
2832 /**
2833 * For Hindi and Arabic use local numerals instead of Western style (0-9)
2834 * numerals in interface.
2835 */
2836 $wgTranslateNumerals = true;
2837
2838 /**
2839 * Translation using MediaWiki: namespace.
2840 * Interface messages will be loaded from the database.
2841 */
2842 $wgUseDatabaseMessages = true;
2843
2844 /**
2845 * Expiry time for the message cache key
2846 */
2847 $wgMsgCacheExpiry = 86400;
2848
2849 /**
2850 * Maximum entry size in the message cache, in bytes
2851 */
2852 $wgMaxMsgCacheEntrySize = 10000;
2853
2854 /**
2855 * Whether to enable language variant conversion.
2856 */
2857 $wgDisableLangConversion = false;
2858
2859 /**
2860 * Whether to enable language variant conversion for links.
2861 */
2862 $wgDisableTitleConversion = false;
2863
2864 /**
2865 * Default variant code, if false, the default will be the language code
2866 */
2867 $wgDefaultLanguageVariant = false;
2868
2869 /**
2870 * Disabled variants array of language variant conversion.
2871 *
2872 * @par Example:
2873 * @code
2874 * $wgDisabledVariants[] = 'zh-mo';
2875 * $wgDisabledVariants[] = 'zh-my';
2876 * @endcode
2877 */
2878 $wgDisabledVariants = array();
2879
2880 /**
2881 * Like $wgArticlePath, but on multi-variant wikis, this provides a
2882 * path format that describes which parts of the URL contain the
2883 * language variant.
2884 *
2885 * @par Example:
2886 * @code
2887 * $wgLanguageCode = 'sr';
2888 * $wgVariantArticlePath = '/$2/$1';
2889 * $wgArticlePath = '/wiki/$1';
2890 * @endcode
2891 *
2892 * A link to /wiki/ would be redirected to /sr/Главна_страна
2893 *
2894 * It is important that $wgArticlePath not overlap with possible values
2895 * of $wgVariantArticlePath.
2896 */
2897 $wgVariantArticlePath = false;
2898
2899 /**
2900 * Show a bar of language selection links in the user login and user
2901 * registration forms; edit the "loginlanguagelinks" message to
2902 * customise these.
2903 */
2904 $wgLoginLanguageSelector = false;
2905
2906 /**
2907 * When translating messages with wfMessage(), it is not always clear what
2908 * should be considered UI messages and what should be content messages.
2909 *
2910 * For example, for the English Wikipedia, there should be only one 'mainpage',
2911 * so when getting the link for 'mainpage', we should treat it as site content
2912 * and call ->inContentLanguage()->text(), but for rendering the text of the
2913 * link, we call ->text(). The code behaves this way by default. However,
2914 * sites like the Wikimedia Commons do offer different versions of 'mainpage'
2915 * and the like for different languages. This array provides a way to override
2916 * the default behavior.
2917 *
2918 * @par Example:
2919 * To allow language-specific main page and community
2920 * portal:
2921 * @code
2922 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
2923 * @endcode
2924 */
2925 $wgForceUIMsgAsContentMsg = array();
2926
2927 /**
2928 * Fake out the timezone that the server thinks it's in. This will be used for
2929 * date display and not for what's stored in the DB. Leave to null to retain
2930 * your server's OS-based timezone value.
2931 *
2932 * This variable is currently used only for signature formatting and for local
2933 * time/date parser variables ({{LOCALTIME}} etc.)
2934 *
2935 * Timezones can be translated by editing MediaWiki messages of type
2936 * timezone-nameinlowercase like timezone-utc.
2937 *
2938 * A list of usable timezones can found at:
2939 * http://php.net/manual/en/timezones.php
2940 *
2941 * @par Examples:
2942 * @code
2943 * $wgLocaltimezone = 'UTC';
2944 * $wgLocaltimezone = 'GMT';
2945 * $wgLocaltimezone = 'PST8PDT';
2946 * $wgLocaltimezone = 'Europe/Sweden';
2947 * $wgLocaltimezone = 'CET';
2948 * @endcode
2949 */
2950 $wgLocaltimezone = null;
2951
2952 /**
2953 * Set an offset from UTC in minutes to use for the default timezone setting
2954 * for anonymous users and new user accounts.
2955 *
2956 * This setting is used for most date/time displays in the software, and is
2957 * overridable in user preferences. It is *not* used for signature timestamps.
2958 *
2959 * By default, this will be set to match $wgLocaltimezone.
2960 */
2961 $wgLocalTZoffset = null;
2962
2963 /** @} */ # End of language/charset settings
2964
2965 /*************************************************************************//**
2966 * @name Output format and skin settings
2967 * @{
2968 */
2969
2970 /**
2971 * The default Content-Type header.
2972 */
2973 $wgMimeType = 'text/html';
2974
2975 /**
2976 * Previously used as content type in HTML script tags. This is now ignored since
2977 * HTML5 doesn't require a MIME type for script tags (javascript is the default).
2978 * It was also previously used by RawAction to determine the ctype query parameter
2979 * value that will result in a javascript response.
2980 * @deprecated since 1.22
2981 */
2982 $wgJsMimeType = null;
2983
2984 /**
2985 * The default xmlns attribute. The option to define this has been removed.
2986 * The value of this variable is no longer used by core and is set to a fixed
2987 * value in Setup.php for compatibility with extensions that depend on the value
2988 * of this variable being set. Such a dependency however is deprecated.
2989 * @deprecated since 1.22
2990 */
2991 $wgXhtmlDefaultNamespace = null;
2992
2993 /**
2994 * Previously used to determine if we should output an HTML5 doctype.
2995 * This is no longer used as we always output HTML5 now. For compatibility with
2996 * extensions that still check the value of this config it's value is now forced
2997 * to true by Setup.php.
2998 * @deprecated since 1.22
2999 */
3000 $wgHtml5 = true;
3001
3002 /**
3003 * Defines the value of the version attribute in the &lt;html&gt; tag, if any.
3004 * If $wgAllowRdfaAttributes is true, and this evaluates to boolean false
3005 * (like if it's left at the default null value), it will be auto-initialized
3006 * to the correct value for RDFa+HTML5. As such, you should have no reason to
3007 * ever actually set this to anything.
3008 */
3009 $wgHtml5Version = null;
3010
3011 /**
3012 * Temporary variable that allows HTMLForms to be rendered as tables.
3013 * Table based layouts cause various issues when designing for mobile.
3014 * This global allows skins or extensions a means to force non-table based rendering.
3015 * Setting to false forces form components to always render as div elements.
3016 * @since 1.24
3017 */
3018 $wgHTMLFormAllowTableFormat = true;
3019
3020 /**
3021 * Temporary variable that applies MediaWiki UI wherever it can be supported.
3022 * Temporary variable that should be removed when mediawiki ui is more
3023 * stable and change has been communicated.
3024 * @since 1.24
3025 */
3026 $wgUseMediaWikiUIEverywhere = false;
3027
3028 /**
3029 * Enabled RDFa attributes for use in wikitext.
3030 * NOTE: Interaction with HTML5 is somewhat underspecified.
3031 */
3032 $wgAllowRdfaAttributes = false;
3033
3034 /**
3035 * Enabled HTML5 microdata attributes for use in wikitext.
3036 */
3037 $wgAllowMicrodataAttributes = false;
3038
3039 /**
3040 * Should we try to make our HTML output well-formed XML? If set to false,
3041 * output will be a few bytes shorter, and the HTML will arguably be more
3042 * readable. If set to true, life will be much easier for the authors of
3043 * screen-scraping bots, and the HTML will arguably be more readable.
3044 *
3045 * Setting this to false may omit quotation marks on some attributes, omit
3046 * slashes from some self-closing tags, omit some ending tags, etc., where
3047 * permitted by HTML5. Setting it to true will not guarantee that all pages
3048 * will be well-formed, although non-well-formed pages should be rare and it's
3049 * a bug if you find one. Conversely, setting it to false doesn't mean that
3050 * all XML-y constructs will be omitted, just that they might be.
3051 *
3052 * Because of compatibility with screen-scraping bots, and because it's
3053 * controversial, this is currently left to true by default.
3054 */
3055 $wgWellFormedXml = true;
3056
3057 /**
3058 * Permit other namespaces in addition to the w3.org default.
3059 *
3060 * Use the prefix for the key and the namespace for the value.
3061 *
3062 * @par Example:
3063 * @code
3064 * $wgXhtmlNamespaces['svg'] = 'http://www.w3.org/2000/svg';
3065 * @endcode
3066 * Normally we wouldn't have to define this in the root "<html>"
3067 * element, but IE needs it there in some circumstances.
3068 *
3069 * This is ignored if $wgMimeType is set to a non-XML MIME type.
3070 */
3071 $wgXhtmlNamespaces = array();
3072
3073 /**
3074 * Show IP address, for non-logged in users. It's necessary to switch this off
3075 * for some forms of caching.
3076 * @warning Will disable file cache.
3077 */
3078 $wgShowIPinHeader = true;
3079
3080 /**
3081 * Site notice shown at the top of each page
3082 *
3083 * MediaWiki:Sitenotice page, which will override this. You can also
3084 * provide a separate message for logged-out users using the
3085 * MediaWiki:Anonnotice page.
3086 */
3087 $wgSiteNotice = '';
3088
3089 /**
3090 * If this is set, a "donate" link will appear in the sidebar. Set it to a URL.
3091 */
3092 $wgSiteSupportPage = '';
3093
3094 /**
3095 * Validate the overall output using tidy and refuse
3096 * to display the page if it's not valid.
3097 */
3098 $wgValidateAllHtml = false;
3099
3100 /**
3101 * Default skin, for new users and anonymous visitors. Registered users may
3102 * change this to any one of the other available skins in their preferences.
3103 */
3104 $wgDefaultSkin = 'vector';
3105
3106 /**
3107 * Fallback skin used when the skin defined by $wgDefaultSkin can't be found.
3108 *
3109 * @since 1.24
3110 */
3111 $wgFallbackSkin = 'fallback';
3112
3113 /**
3114 * Specify the names of skins that should not be presented in the list of
3115 * available skins in user preferences. If you want to remove a skin entirely,
3116 * remove it from the skins/ directory and its entry from LocalSettings.php.
3117 */
3118 $wgSkipSkins = array();
3119
3120 /**
3121 * @deprecated since 1.23; use $wgSkipSkins instead
3122 */
3123 $wgSkipSkin = '';
3124
3125 /**
3126 * Allow user Javascript page?
3127 * This enables a lot of neat customizations, but may
3128 * increase security risk to users and server load.
3129 */
3130 $wgAllowUserJs = false;
3131
3132 /**
3133 * Allow user Cascading Style Sheets (CSS)?
3134 * This enables a lot of neat customizations, but may
3135 * increase security risk to users and server load.
3136 */
3137 $wgAllowUserCss = false;
3138
3139 /**
3140 * Allow user-preferences implemented in CSS?
3141 * This allows users to customise the site appearance to a greater
3142 * degree; disabling it will improve page load times.
3143 */
3144 $wgAllowUserCssPrefs = true;
3145
3146 /**
3147 * Use the site's Javascript page?
3148 */
3149 $wgUseSiteJs = true;
3150
3151 /**
3152 * Use the site's Cascading Style Sheets (CSS)?
3153 */
3154 $wgUseSiteCss = true;
3155
3156 /**
3157 * Break out of framesets. This can be used to prevent clickjacking attacks,
3158 * or to prevent external sites from framing your site with ads.
3159 */
3160 $wgBreakFrames = false;
3161
3162 /**
3163 * The X-Frame-Options header to send on pages sensitive to clickjacking
3164 * attacks, such as edit pages. This prevents those pages from being displayed
3165 * in a frame or iframe. The options are:
3166 *
3167 * - 'DENY': Do not allow framing. This is recommended for most wikis.
3168 *
3169 * - 'SAMEORIGIN': Allow framing by pages on the same domain. This can be used
3170 * to allow framing within a trusted domain. This is insecure if there
3171 * is a page on the same domain which allows framing of arbitrary URLs.
3172 *
3173 * - false: Allow all framing. This opens up the wiki to XSS attacks and thus
3174 * full compromise of local user accounts. Private wikis behind a
3175 * corporate firewall are especially vulnerable. This is not
3176 * recommended.
3177 *
3178 * For extra safety, set $wgBreakFrames = true, to prevent framing on all pages,
3179 * not just edit pages.
3180 */
3181 $wgEditPageFrameOptions = 'DENY';
3182
3183 /**
3184 * Disallow framing of API pages directly, by setting the X-Frame-Options
3185 * header. Since the API returns CSRF tokens, allowing the results to be
3186 * framed can compromise your user's account security.
3187 * Options are:
3188 * - 'DENY': Do not allow framing. This is recommended for most wikis.
3189 * - 'SAMEORIGIN': Allow framing by pages on the same domain.
3190 * - false: Allow all framing.
3191 * Note: $wgBreakFrames will override this for human formatted API output.
3192 */
3193 $wgApiFrameOptions = 'DENY';
3194
3195 /**
3196 * Disable output compression (enabled by default if zlib is available)
3197 */
3198 $wgDisableOutputCompression = false;
3199
3200 /**
3201 * Should we allow a broader set of characters in id attributes, per HTML5? If
3202 * not, use only HTML 4-compatible IDs. This option is for testing -- when the
3203 * functionality is ready, it will be on by default with no option.
3204 *
3205 * Currently this appears to work fine in all browsers, but it's disabled by
3206 * default because it normalizes id's a bit too aggressively, breaking preexisting
3207 * content (particularly Cite). See bug 27733, bug 27694, bug 27474.
3208 */
3209 $wgExperimentalHtmlIds = false;
3210
3211 /**
3212 * Abstract list of footer icons for skins in place of old copyrightico and poweredbyico code
3213 * You can add new icons to the built in copyright or poweredby, or you can create
3214 * a new block. Though note that you may need to add some custom css to get good styling
3215 * of new blocks in monobook. vector and modern should work without any special css.
3216 *
3217 * $wgFooterIcons itself is a key/value array.
3218 * The key is the name of a block that the icons will be wrapped in. The final id varies
3219 * by skin; Monobook and Vector will turn poweredby into f-poweredbyico while Modern
3220 * turns it into mw_poweredby.
3221 * The value is either key/value array of icons or a string.
3222 * In the key/value array the key may or may not be used by the skin but it can
3223 * be used to find the icon and unset it or change the icon if needed.
3224 * This is useful for disabling icons that are set by extensions.
3225 * The value should be either a string or an array. If it is a string it will be output
3226 * directly as html, however some skins may choose to ignore it. An array is the preferred format
3227 * for the icon, the following keys are used:
3228 * - src: An absolute url to the image to use for the icon, this is recommended
3229 * but not required, however some skins will ignore icons without an image
3230 * - srcset: optional additional-resolution images; see HTML5 specs
3231 * - url: The url to use in the a element around the text or icon, if not set an a element will
3232 * not be outputted
3233 * - alt: This is the text form of the icon, it will be displayed without an image in
3234 * skins like Modern or if src is not set, and will otherwise be used as
3235 * the alt="" for the image. This key is required.
3236 * - width and height: If the icon specified by src is not of the standard size
3237 * you can specify the size of image to use with these keys.
3238 * Otherwise they will default to the standard 88x31.
3239 * @todo Reformat documentation.
3240 */
3241 $wgFooterIcons = array(
3242 "copyright" => array(
3243 "copyright" => array(), // placeholder for the built in copyright icon
3244 ),
3245 "poweredby" => array(
3246 "mediawiki" => array(
3247 // Defaults to point at
3248 // "$wgResourceBasePath/resources/assets/poweredby_mediawiki_88x31.png"
3249 // plus srcset for 1.5x, 2x resolution variants.
3250 "src" => null,
3251 "url" => "//www.mediawiki.org/",
3252 "alt" => "Powered by MediaWiki",
3253 )
3254 ),
3255 );
3256
3257 /**
3258 * Login / create account link behavior when it's possible for anonymous users
3259 * to create an account.
3260 * - true = use a combined login / create account link
3261 * - false = split login and create account into two separate links
3262 */
3263 $wgUseCombinedLoginLink = false;
3264
3265 /**
3266 * Display user edit counts in various prominent places.
3267 */
3268 $wgEdititis = false;
3269
3270 /**
3271 * Some web hosts attempt to rewrite all responses with a 404 (not found)
3272 * status code, mangling or hiding MediaWiki's output. If you are using such a
3273 * host, you should start looking for a better one. While you're doing that,
3274 * set this to false to convert some of MediaWiki's 404 responses to 200 so
3275 * that the generated error pages can be seen.
3276 *
3277 * In cases where for technical reasons it is more important for MediaWiki to
3278 * send the correct status code than for the body to be transmitted intact,
3279 * this configuration variable is ignored.
3280 */
3281 $wgSend404Code = true;
3282
3283 /**
3284 * The $wgShowRollbackEditCount variable is used to show how many edits will be
3285 * rollback. The numeric value of the variable are the limit up to are counted.
3286 * If the value is false or 0, the edits are not counted. Disabling this will
3287 * furthermore prevent MediaWiki from hiding some useless rollback links.
3288 *
3289 * @since 1.20
3290 */
3291 $wgShowRollbackEditCount = 10;
3292
3293 /**
3294 * Output a <link rel="canonical"> tag on every page indicating the canonical
3295 * server which should be used, i.e. $wgServer or $wgCanonicalServer. Since
3296 * detection of the current server is unreliable, the link is sent
3297 * unconditionally.
3298 */
3299 $wgEnableCanonicalServerLink = false;
3300
3301 /**
3302 * When OutputHandler is used, mangle any output that contains
3303 * <cross-domain-policy>. Without this, an attacker can send their own
3304 * cross-domain policy unless it is prevented by the crossdomain.xml file at
3305 * the domain root.
3306 *
3307 * @since 1.25
3308 */
3309 $wgMangleFlashPolicy = true;
3310
3311 /** @} */ # End of output format settings }
3312
3313 /*************************************************************************//**
3314 * @name Resource loader settings
3315 * @{
3316 */
3317
3318 /**
3319 * Client-side resource modules.
3320 *
3321 * Extensions should add their resource loader module definitions
3322 * to the $wgResourceModules variable.
3323 *
3324 * @par Example:
3325 * @code
3326 * $wgResourceModules['ext.myExtension'] = array(
3327 * 'scripts' => 'myExtension.js',
3328 * 'styles' => 'myExtension.css',
3329 * 'dependencies' => array( 'jquery.cookie', 'jquery.tabIndex' ),
3330 * 'localBasePath' => __DIR__,
3331 * 'remoteExtPath' => 'MyExtension',
3332 * );
3333 * @endcode
3334 */
3335 $wgResourceModules = array();
3336
3337 /**
3338 * Skin-specific styles for resource modules.
3339 *
3340 * These are later added to the 'skinStyles' list of the existing module. The 'styles' list can
3341 * not be modified or disabled.
3342 *
3343 * For example, here is a module "bar" and how skin Foo would provide additional styles for it.
3344 *
3345 * @par Example:
3346 * @code
3347 * $wgResourceModules['bar'] = array(
3348 * 'scripts' => 'resources/bar/bar.js',
3349 * 'styles' => 'resources/bar/main.css',
3350 * );
3351 *
3352 * $wgResourceModuleSkinStyles['foo'] = array(
3353 * 'bar' => 'skins/Foo/bar.css',
3354 * );
3355 * @endcode
3356 *
3357 * This is mostly equivalent to:
3358 *
3359 * @par Equivalent:
3360 * @code
3361 * $wgResourceModules['bar'] = array(
3362 * 'scripts' => 'resources/bar/bar.js',
3363 * 'styles' => 'resources/bar/main.css',
3364 * 'skinStyles' => array(
3365 * 'foo' => skins/Foo/bar.css',
3366 * ),
3367 * );
3368 * @endcode
3369 *
3370 * If the module already defines its own entry in `skinStyles` for a given skin, then
3371 * $wgResourceModuleSkinStyles is ignored.
3372 *
3373 * If a module defines a `skinStyles['default']` the skin may want to extend that instead
3374 * of replacing them. This can be done using the `+` prefix.
3375 *
3376 * @par Example:
3377 * @code
3378 * $wgResourceModules['bar'] = array(
3379 * 'scripts' => 'resources/bar/bar.js',
3380 * 'styles' => 'resources/bar/basic.css',
3381 * 'skinStyles' => array(
3382 * 'default' => 'resources/bar/additional.css',
3383 * ),
3384 * );
3385 * // Note the '+' character:
3386 * $wgResourceModuleSkinStyles['foo'] = array(
3387 * '+bar' => 'skins/Foo/bar.css',
3388 * );
3389 * @endcode
3390 *
3391 * This is mostly equivalent to:
3392 *
3393 * @par Equivalent:
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 * 'foo' => array(
3401 * 'resources/bar/additional.css',
3402 * 'skins/Foo/bar.css',
3403 * ),
3404 * ),
3405 * );
3406 * @endcode
3407 *
3408 * In other words, as a module author, use the `styles` list for stylesheets that may not be
3409 * disabled by a skin. To provide default styles that may be extended or replaced,
3410 * use `skinStyles['default']`.
3411 *
3412 * As with $wgResourceModules, paths default to being relative to the MediaWiki root.
3413 * You should always provide a localBasePath and remoteBasePath (or remoteExtPath/remoteSkinPath).
3414 *
3415 * @par Example:
3416 * @code
3417 * $wgResourceModuleSkinStyles['foo'] = array(
3418 * 'bar' => 'bar.css',
3419 * 'quux' => 'quux.css',
3420 * 'remoteSkinPath' => 'Foo',
3421 * 'localBasePath' => __DIR__,
3422 * );
3423 * @endcode
3424 */
3425 $wgResourceModuleSkinStyles = array();
3426
3427 /**
3428 * Extensions should register foreign module sources here. 'local' is a
3429 * built-in source that is not in this array, but defined by
3430 * ResourceLoader::__construct() so that it cannot be unset.
3431 *
3432 * @par Example:
3433 * @code
3434 * $wgResourceLoaderSources['foo'] = 'http://example.org/w/load.php';
3435 * @endcode
3436 */
3437 $wgResourceLoaderSources = array();
3438
3439 /**
3440 * Default 'remoteBasePath' value for instances of ResourceLoaderFileModule.
3441 * If not set, then $wgScriptPath will be used as a fallback.
3442 */
3443 $wgResourceBasePath = null;
3444
3445 /**
3446 * Maximum time in seconds to cache resources served by the resource loader.
3447 * Used to set last modified headers (max-age/s-maxage).
3448 *
3449 * Following options to distinguish:
3450 * - versioned: Used for modules with a version, because changing version
3451 * numbers causes cache misses. This normally has a long expiry time.
3452 * - unversioned: Used for modules without a version to propagate changes
3453 * quickly to clients. Also used for modules with errors to recover quickly.
3454 * This normally has a short expiry time.
3455 *
3456 * Expiry time for the options to distinguish:
3457 * - server: Squid/Varnish but also any other public proxy cache between the
3458 * client and MediaWiki.
3459 * - client: On the client side (e.g. in the browser cache).
3460 */
3461 $wgResourceLoaderMaxage = array(
3462 'versioned' => array(
3463 'server' => 30 * 24 * 60 * 60, // 30 days
3464 'client' => 30 * 24 * 60 * 60, // 30 days
3465 ),
3466 'unversioned' => array(
3467 'server' => 5 * 60, // 5 minutes
3468 'client' => 5 * 60, // 5 minutes
3469 ),
3470 );
3471
3472 /**
3473 * The default debug mode (on/off) for of ResourceLoader requests.
3474 *
3475 * This will still be overridden when the debug URL parameter is used.
3476 */
3477 $wgResourceLoaderDebug = false;
3478
3479 /**
3480 * Enable embedding of certain resources using Edge Side Includes. This will
3481 * improve performance but only works if there is something in front of the
3482 * web server (e..g a Squid or Varnish server) configured to process the ESI.
3483 */
3484 $wgResourceLoaderUseESI = false;
3485
3486 /**
3487 * Put each statement on its own line when minifying JavaScript. This makes
3488 * debugging in non-debug mode a bit easier.
3489 */
3490 $wgResourceLoaderMinifierStatementsOnOwnLine = false;
3491
3492 /**
3493 * Maximum line length when minifying JavaScript. This is not a hard maximum:
3494 * the minifier will try not to produce lines longer than this, but may be
3495 * forced to do so in certain cases.
3496 */
3497 $wgResourceLoaderMinifierMaxLineLength = 1000;
3498
3499 /**
3500 * Whether to include the mediawiki.legacy JS library (old wikibits.js), and its
3501 * dependencies.
3502 */
3503 $wgIncludeLegacyJavaScript = true;
3504
3505 /**
3506 * Whether to preload the mediawiki.util module as blocking module in the top
3507 * queue.
3508 *
3509 * Before MediaWiki 1.19, modules used to load slower/less asynchronous which
3510 * allowed modules to lack dependencies on 'popular' modules that were likely
3511 * loaded already.
3512 *
3513 * This setting is to aid scripts during migration by providing mediawiki.util
3514 * unconditionally (which was the most commonly missed dependency).
3515 * It doesn't cover all missing dependencies obviously but should fix most of
3516 * them.
3517 *
3518 * This should be removed at some point after site/user scripts have been fixed.
3519 * Enable this if your wiki has a large amount of user/site scripts that are
3520 * lacking dependencies.
3521 * @todo Deprecate
3522 */
3523 $wgPreloadJavaScriptMwUtil = false;
3524
3525 /**
3526 * Whether or not to assign configuration variables to the global window object.
3527 *
3528 * If this is set to false, old code using deprecated variables will no longer
3529 * work.
3530 *
3531 * @par Example of legacy code:
3532 * @code{,js}
3533 * if ( window.wgRestrictionEdit ) { ... }
3534 * @endcode
3535 * or:
3536 * @code{,js}
3537 * if ( wgIsArticle ) { ... }
3538 * @endcode
3539 *
3540 * Instead, one needs to use mw.config.
3541 * @par Example using mw.config global configuration:
3542 * @code{,js}
3543 * if ( mw.config.exists('wgRestrictionEdit') ) { ... }
3544 * @endcode
3545 * or:
3546 * @code{,js}
3547 * if ( mw.config.get('wgIsArticle') ) { ... }
3548 * @endcode
3549 */
3550 $wgLegacyJavaScriptGlobals = true;
3551
3552 /**
3553 * If set to a positive number, ResourceLoader will not generate URLs whose
3554 * query string is more than this many characters long, and will instead use
3555 * multiple requests with shorter query strings. This degrades performance,
3556 * but may be needed if your web server has a low (less than, say 1024)
3557 * query string length limit or a low value for suhosin.get.max_value_length
3558 * that you can't increase.
3559 *
3560 * If set to a negative number, ResourceLoader will assume there is no query
3561 * string length limit.
3562 *
3563 * Defaults to a value based on php configuration.
3564 */
3565 $wgResourceLoaderMaxQueryLength = false;
3566
3567 /**
3568 * If set to true, JavaScript modules loaded from wiki pages will be parsed
3569 * prior to minification to validate it.
3570 *
3571 * Parse errors will result in a JS exception being thrown during module load,
3572 * which avoids breaking other modules loaded in the same request.
3573 */
3574 $wgResourceLoaderValidateJS = true;
3575
3576 /**
3577 * If set to true, statically-sourced (file-backed) JavaScript resources will
3578 * be parsed for validity before being bundled up into ResourceLoader modules.
3579 *
3580 * This can be helpful for development by providing better error messages in
3581 * default (non-debug) mode, but JavaScript parsing is slow and memory hungry
3582 * and may fail on large pre-bundled frameworks.
3583 */
3584 $wgResourceLoaderValidateStaticJS = false;
3585
3586 /**
3587 * If set to true, asynchronous loading of bottom-queue scripts in the "<head>"
3588 * will be enabled. This is an experimental feature that's supposed to make
3589 * JavaScript load faster.
3590 */
3591 $wgResourceLoaderExperimentalAsyncLoading = false;
3592
3593 /**
3594 * Global LESS variables. An associative array binding variable names to
3595 * LESS code snippets representing their values.
3596 *
3597 * Adding an item here is equivalent to writing `@variable: value;`
3598 * at the beginning of all your .less files, with all the consequences.
3599 * In particular, string values must be escaped and quoted.
3600 *
3601 * Changes to LESS variables do not trigger cache invalidation.
3602 *
3603 * If the LESS variables need to be dynamic, you can use the
3604 * ResourceLoaderGetLessVars hook (since 1.25).
3605 *
3606 * @par Example:
3607 * @code
3608 * $wgResourceLoaderLESSVars = array(
3609 * 'baseFontSize' => '1em',
3610 * 'smallFontSize' => '0.75em',
3611 * 'WikimediaBlue' => '#006699',
3612 * );
3613 * @endcode
3614 * @since 1.22
3615 */
3616 $wgResourceLoaderLESSVars = array();
3617
3618 /**
3619 * Custom LESS functions. An associative array mapping function name to PHP
3620 * callable.
3621 *
3622 * Changes to LESS functions do not trigger cache invalidation.
3623 *
3624 * @since 1.22
3625 * @deprecated since 1.24 Questionable usefulness and problematic to support,
3626 * will be removed in the future.
3627 */
3628 $wgResourceLoaderLESSFunctions = array();
3629
3630 /**
3631 * Default import paths for LESS modules. LESS files referenced in @import
3632 * statements will be looked up here first, and relative to the importing file
3633 * second. To avoid collisions, it's important for the LESS files in these
3634 * directories to have a common, predictable file name prefix.
3635 *
3636 * Extensions need not (and should not) register paths in
3637 * $wgResourceLoaderLESSImportPaths. The import path includes the path of the
3638 * currently compiling LESS file, which allows each extension to freely import
3639 * files from its own tree.
3640 *
3641 * @since 1.22
3642 */
3643 $wgResourceLoaderLESSImportPaths = array(
3644 "$IP/resources/src/mediawiki.less/",
3645 );
3646
3647 /**
3648 * Whether ResourceLoader should attempt to persist modules in localStorage on
3649 * browsers that support the Web Storage API.
3650 *
3651 * @since 1.23 - Client-side module persistence is experimental. Exercise care.
3652 */
3653 $wgResourceLoaderStorageEnabled = false;
3654
3655 /**
3656 * Cache version for client-side ResourceLoader module storage. You can trigger
3657 * invalidation of the contents of the module store by incrementing this value.
3658 *
3659 * @since 1.23
3660 */
3661 $wgResourceLoaderStorageVersion = 1;
3662
3663 /**
3664 * Whether to allow site-wide CSS (MediaWiki:Common.css and friends) on
3665 * restricted pages like Special:UserLogin or Special:Preferences where
3666 * JavaScript is disabled for security reasons. As it is possible to
3667 * execute JavaScript through CSS, setting this to true opens up a
3668 * potential security hole. Some sites may "skin" their wiki by using
3669 * site-wide CSS, causing restricted pages to look unstyled and different
3670 * from the rest of the site.
3671 *
3672 * @since 1.25
3673 */
3674 $wgAllowSiteCSSOnRestrictedPages = false;
3675
3676 /** @} */ # End of resource loader settings }
3677
3678 /*************************************************************************//**
3679 * @name Page title and interwiki link settings
3680 * @{
3681 */
3682
3683 /**
3684 * Name of the project namespace. If left set to false, $wgSitename will be
3685 * used instead.
3686 */
3687 $wgMetaNamespace = false;
3688
3689 /**
3690 * Name of the project talk namespace.
3691 *
3692 * Normally you can ignore this and it will be something like
3693 * $wgMetaNamespace . "_talk". In some languages, you may want to set this
3694 * manually for grammatical reasons.
3695 */
3696 $wgMetaNamespaceTalk = false;
3697
3698 /**
3699 * Additional namespaces. If the namespaces defined in Language.php and
3700 * Namespace.php are insufficient, you can create new ones here, for example,
3701 * to import Help files in other languages. You can also override the namespace
3702 * names of existing namespaces. Extensions developers should use
3703 * $wgCanonicalNamespaceNames.
3704 *
3705 * @warning Once you delete a namespace, the pages in that namespace will
3706 * no longer be accessible. If you rename it, then you can access them through
3707 * the new namespace name.
3708 *
3709 * Custom namespaces should start at 100 to avoid conflicting with standard
3710 * namespaces, and should always follow the even/odd main/talk pattern.
3711 *
3712 * @par Example:
3713 * @code
3714 * $wgExtraNamespaces = array(
3715 * 100 => "Hilfe",
3716 * 101 => "Hilfe_Diskussion",
3717 * 102 => "Aide",
3718 * 103 => "Discussion_Aide"
3719 * );
3720 * @endcode
3721 *
3722 * @todo Add a note about maintenance/namespaceDupes.php
3723 */
3724 $wgExtraNamespaces = array();
3725
3726 /**
3727 * Same as above, but for namespaces with gender distinction.
3728 * Note: the default form for the namespace should also be set
3729 * using $wgExtraNamespaces for the same index.
3730 * @since 1.18
3731 */
3732 $wgExtraGenderNamespaces = array();
3733
3734 /**
3735 * Namespace aliases.
3736 *
3737 * These are alternate names for the primary localised namespace names, which
3738 * are defined by $wgExtraNamespaces and the language file. If a page is
3739 * requested with such a prefix, the request will be redirected to the primary
3740 * name.
3741 *
3742 * Set this to a map from namespace names to IDs.
3743 *
3744 * @par Example:
3745 * @code
3746 * $wgNamespaceAliases = array(
3747 * 'Wikipedian' => NS_USER,
3748 * 'Help' => 100,
3749 * );
3750 * @endcode
3751 */
3752 $wgNamespaceAliases = array();
3753
3754 /**
3755 * Allowed title characters -- regex character class
3756 * Don't change this unless you know what you're doing
3757 *
3758 * Problematic punctuation:
3759 * - []{}|# Are needed for link syntax, never enable these
3760 * - <> Causes problems with HTML escaping, don't use
3761 * - % Enabled by default, minor problems with path to query rewrite rules, see below
3762 * - + Enabled by default, but doesn't work with path to query rewrite rules,
3763 * corrupted by apache
3764 * - ? Enabled by default, but doesn't work with path to PATH_INFO rewrites
3765 *
3766 * All three of these punctuation problems can be avoided by using an alias,
3767 * instead of a rewrite rule of either variety.
3768 *
3769 * The problem with % is that when using a path to query rewrite rule, URLs are
3770 * double-unescaped: once by Apache's path conversion code, and again by PHP. So
3771 * %253F, for example, becomes "?". Our code does not double-escape to compensate
3772 * for this, indeed double escaping would break if the double-escaped title was
3773 * passed in the query string rather than the path. This is a minor security issue
3774 * because articles can be created such that they are hard to view or edit.
3775 *
3776 * In some rare cases you may wish to remove + for compatibility with old links.
3777 *
3778 * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
3779 * this breaks interlanguage links
3780 */
3781 $wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+";
3782
3783 /**
3784 * The interwiki prefix of the current wiki, or false if it doesn't have one.
3785 *
3786 * @deprecated since 1.23; use $wgLocalInterwikis instead
3787 */
3788 $wgLocalInterwiki = false;
3789
3790 /**
3791 * Array for multiple $wgLocalInterwiki values, in case there are several
3792 * interwiki prefixes that point to the current wiki. If $wgLocalInterwiki is
3793 * set, its value is prepended to this array, for backwards compatibility.
3794 *
3795 * Note, recent changes feeds use only the first entry in this array (or
3796 * $wgLocalInterwiki, if it is set). See $wgRCFeeds
3797 */
3798 $wgLocalInterwikis = array();
3799
3800 /**
3801 * Expiry time for cache of interwiki table
3802 */
3803 $wgInterwikiExpiry = 10800;
3804
3805 /**
3806 * @name Interwiki caching settings.
3807 * @{
3808 */
3809
3810 /**
3811 *$wgInterwikiCache specifies path to constant database file.
3812 *
3813 * This cdb database is generated by dumpInterwiki from maintenance and has
3814 * such key formats:
3815 * - dbname:key - a simple key (e.g. enwiki:meta)
3816 * - _sitename:key - site-scope key (e.g. wiktionary:meta)
3817 * - __global:key - global-scope key (e.g. __global:meta)
3818 * - __sites:dbname - site mapping (e.g. __sites:enwiki)
3819 *
3820 * Sites mapping just specifies site name, other keys provide "local url"
3821 * data layout.
3822 */
3823 $wgInterwikiCache = false;
3824
3825 /**
3826 * Specify number of domains to check for messages.
3827 * - 1: Just wiki(db)-level
3828 * - 2: wiki and global levels
3829 * - 3: site levels
3830 */
3831 $wgInterwikiScopes = 3;
3832
3833 /**
3834 * Fallback site, if unable to resolve from cache
3835 */
3836 $wgInterwikiFallbackSite = 'wiki';
3837
3838 /** @} */ # end of Interwiki caching settings.
3839
3840 /**
3841 * @name SiteStore caching settings.
3842 * @{
3843 */
3844
3845 /**
3846 * Specify the file location for the Sites json cache file.
3847 */
3848 $wgSitesCacheFile = false;
3849
3850 /** @} */ # end of SiteStore caching settings.
3851
3852 /**
3853 * If local interwikis are set up which allow redirects,
3854 * set this regexp to restrict URLs which will be displayed
3855 * as 'redirected from' links.
3856 *
3857 * @par Example:
3858 * It might look something like this:
3859 * @code
3860 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
3861 * @endcode
3862 *
3863 * Leave at false to avoid displaying any incoming redirect markers.
3864 * This does not affect intra-wiki redirects, which don't change
3865 * the URL.
3866 */
3867 $wgRedirectSources = false;
3868
3869 /**
3870 * Set this to false to avoid forcing the first letter of links to capitals.
3871 *
3872 * @warning may break links! This makes links COMPLETELY case-sensitive. Links
3873 * appearing with a capital at the beginning of a sentence will *not* go to the
3874 * same place as links in the middle of a sentence using a lowercase initial.
3875 */
3876 $wgCapitalLinks = true;
3877
3878 /**
3879 * @since 1.16 - This can now be set per-namespace. Some special namespaces (such
3880 * as Special, see MWNamespace::$alwaysCapitalizedNamespaces for the full list) must be
3881 * true by default (and setting them has no effect), due to various things that
3882 * require them to be so. Also, since Talk namespaces need to directly mirror their
3883 * associated content namespaces, the values for those are ignored in favor of the
3884 * subject namespace's setting. Setting for NS_MEDIA is taken automatically from
3885 * NS_FILE.
3886 *
3887 * @par Example:
3888 * @code
3889 * $wgCapitalLinkOverrides[ NS_FILE ] = false;
3890 * @endcode
3891 */
3892 $wgCapitalLinkOverrides = array();
3893
3894 /**
3895 * Which namespaces should support subpages?
3896 * See Language.php for a list of namespaces.
3897 */
3898 $wgNamespacesWithSubpages = array(
3899 NS_TALK => true,
3900 NS_USER => true,
3901 NS_USER_TALK => true,
3902 NS_PROJECT => true,
3903 NS_PROJECT_TALK => true,
3904 NS_FILE_TALK => true,
3905 NS_MEDIAWIKI => true,
3906 NS_MEDIAWIKI_TALK => true,
3907 NS_TEMPLATE_TALK => true,
3908 NS_HELP => true,
3909 NS_HELP_TALK => true,
3910 NS_CATEGORY_TALK => true
3911 );
3912
3913 /**
3914 * Array holding default tracking category names.
3915 *
3916 * Array contains the system messages for each tracking category.
3917 * Tracking categories allow pages with certain characteristics to be tracked.
3918 * It works by adding any such page to a category automatically.
3919 *
3920 * A message with the suffix '-desc' should be added as a description message
3921 * to have extra information on Special:TrackingCategories.
3922 *
3923 * @deprecated since 1.25 Extensions should now register tracking categories using
3924 * the new extension registration system.
3925 *
3926 * @since 1.23
3927 */
3928 $wgTrackingCategories = array();
3929
3930 /**
3931 * Array of namespaces which can be deemed to contain valid "content", as far
3932 * as the site statistics are concerned. Useful if additional namespaces also
3933 * contain "content" which should be considered when generating a count of the
3934 * number of articles in the wiki.
3935 */
3936 $wgContentNamespaces = array( NS_MAIN );
3937
3938 /**
3939 * Max number of redirects to follow when resolving redirects.
3940 * 1 means only the first redirect is followed (default behavior).
3941 * 0 or less means no redirects are followed.
3942 */
3943 $wgMaxRedirects = 1;
3944
3945 /**
3946 * Array of invalid page redirect targets.
3947 * Attempting to create a redirect to any of the pages in this array
3948 * will make the redirect fail.
3949 * Userlogout is hard-coded, so it does not need to be listed here.
3950 * (bug 10569) Disallow Mypage and Mytalk as well.
3951 *
3952 * As of now, this only checks special pages. Redirects to pages in
3953 * other namespaces cannot be invalidated by this variable.
3954 */
3955 $wgInvalidRedirectTargets = array( 'Filepath', 'Mypage', 'Mytalk', 'Redirect' );
3956
3957 /** @} */ # End of title and interwiki settings }
3958
3959 /************************************************************************//**
3960 * @name Parser settings
3961 * These settings configure the transformation from wikitext to HTML.
3962 * @{
3963 */
3964
3965 /**
3966 * Parser configuration. Associative array with the following members:
3967 *
3968 * class The class name
3969 *
3970 * preprocessorClass The preprocessor class. Two classes are currently available:
3971 * Preprocessor_Hash, which uses plain PHP arrays for temporary
3972 * storage, and Preprocessor_DOM, which uses the DOM module for
3973 * temporary storage. Preprocessor_DOM generally uses less memory;
3974 * the speed of the two is roughly the same.
3975 *
3976 * If this parameter is not given, it uses Preprocessor_DOM if the
3977 * DOM module is available, otherwise it uses Preprocessor_Hash.
3978 *
3979 * The entire associative array will be passed through to the constructor as
3980 * the first parameter. Note that only Setup.php can use this variable --
3981 * the configuration will change at runtime via $wgParser member functions, so
3982 * the contents of this variable will be out-of-date. The variable can only be
3983 * changed during LocalSettings.php, in particular, it can't be changed during
3984 * an extension setup function.
3985 */
3986 $wgParserConf = array(
3987 'class' => 'Parser',
3988 #'preprocessorClass' => 'Preprocessor_Hash',
3989 );
3990
3991 /**
3992 * Maximum indent level of toc.
3993 */
3994 $wgMaxTocLevel = 999;
3995
3996 /**
3997 * A complexity limit on template expansion: the maximum number of nodes visited
3998 * by PPFrame::expand()
3999 */
4000 $wgMaxPPNodeCount = 1000000;
4001
4002 /**
4003 * A complexity limit on template expansion: the maximum number of elements
4004 * generated by Preprocessor::preprocessToObj(). This allows you to limit the
4005 * amount of memory used by the Preprocessor_DOM node cache: testing indicates
4006 * that each element uses about 160 bytes of memory on a 64-bit processor, so
4007 * this default corresponds to about 155 MB.
4008 *
4009 * When the limit is exceeded, an exception is thrown.
4010 */
4011 $wgMaxGeneratedPPNodeCount = 1000000;
4012
4013 /**
4014 * Maximum recursion depth for templates within templates.
4015 * The current parser adds two levels to the PHP call stack for each template,
4016 * and xdebug limits the call stack to 100 by default. So this should hopefully
4017 * stop the parser before it hits the xdebug limit.
4018 */
4019 $wgMaxTemplateDepth = 40;
4020
4021 /**
4022 * @see $wgMaxTemplateDepth
4023 */
4024 $wgMaxPPExpandDepth = 40;
4025
4026 /**
4027 * URL schemes that should be recognized as valid by wfParseUrl().
4028 *
4029 * WARNING: Do not add 'file:' to this or internal file links will be broken.
4030 * Instead, if you want to support file links, add 'file://'. The same applies
4031 * to any other protocols with the same name as a namespace. See bug #44011 for
4032 * more information.
4033 *
4034 * @see wfParseUrl
4035 */
4036 $wgUrlProtocols = array(
4037 'bitcoin:', 'ftp://', 'ftps://', 'geo:', 'git://', 'gopher://', 'http://',
4038 'https://', 'irc://', 'ircs://', 'magnet:', 'mailto:', 'mms://', 'news:',
4039 'nntp://', 'redis://', 'sftp://', 'sip:', 'sips:', 'sms:', 'ssh://',
4040 'svn://', 'tel:', 'telnet://', 'urn:', 'worldwind://', 'xmpp:', '//'
4041 );
4042
4043 /**
4044 * If true, removes (by substituting) templates in signatures.
4045 */
4046 $wgCleanSignatures = true;
4047
4048 /**
4049 * Whether to allow inline image pointing to other websites
4050 */
4051 $wgAllowExternalImages = false;
4052
4053 /**
4054 * If the above is false, you can specify an exception here. Image URLs
4055 * that start with this string are then rendered, while all others are not.
4056 * You can use this to set up a trusted, simple repository of images.
4057 * You may also specify an array of strings to allow multiple sites
4058 *
4059 * @par Examples:
4060 * @code
4061 * $wgAllowExternalImagesFrom = 'http://127.0.0.1/';
4062 * $wgAllowExternalImagesFrom = array( 'http://127.0.0.1/', 'http://example.com' );
4063 * @endcode
4064 */
4065 $wgAllowExternalImagesFrom = '';
4066
4067 /**
4068 * If $wgAllowExternalImages is false, you can allow an on-wiki
4069 * whitelist of regular expression fragments to match the image URL
4070 * against. If the image matches one of the regular expression fragments,
4071 * The image will be displayed.
4072 *
4073 * Set this to true to enable the on-wiki whitelist (MediaWiki:External image whitelist)
4074 * Or false to disable it
4075 */
4076 $wgEnableImageWhitelist = true;
4077
4078 /**
4079 * A different approach to the above: simply allow the "<img>" tag to be used.
4080 * This allows you to specify alt text and other attributes, copy-paste HTML to
4081 * your wiki more easily, etc. However, allowing external images in any manner
4082 * will allow anyone with editing rights to snoop on your visitors' IP
4083 * addresses and so forth, if they wanted to, by inserting links to images on
4084 * sites they control.
4085 */
4086 $wgAllowImageTag = false;
4087
4088 /**
4089 * $wgUseTidy: use tidy to make sure HTML output is sane.
4090 * Tidy is a free tool that fixes broken HTML.
4091 * See http://www.w3.org/People/Raggett/tidy/
4092 *
4093 * - $wgTidyBin should be set to the path of the binary and
4094 * - $wgTidyConf to the path of the configuration file.
4095 * - $wgTidyOpts can include any number of parameters.
4096 * - $wgTidyInternal controls the use of the PECL extension or the
4097 * libtidy (PHP >= 5) extension to use an in-process tidy library instead
4098 * of spawning a separate program.
4099 * Normally you shouldn't need to override the setting except for
4100 * debugging. To install, use 'pear install tidy' and add a line
4101 * 'extension=tidy.so' to php.ini.
4102 */
4103 $wgUseTidy = false;
4104
4105 /**
4106 * @see $wgUseTidy
4107 */
4108 $wgAlwaysUseTidy = false;
4109
4110 /**
4111 * @see $wgUseTidy
4112 */
4113 $wgTidyBin = 'tidy';
4114
4115 /**
4116 * @see $wgUseTidy
4117 */
4118 $wgTidyConf = $IP . '/includes/tidy.conf';
4119
4120 /**
4121 * @see $wgUseTidy
4122 */
4123 $wgTidyOpts = '';
4124
4125 /**
4126 * @see $wgUseTidy
4127 */
4128 $wgTidyInternal = extension_loaded( 'tidy' );
4129
4130 /**
4131 * Put tidy warnings in HTML comments
4132 * Only works for internal tidy.
4133 */
4134 $wgDebugTidy = false;
4135
4136 /**
4137 * Allow raw, unchecked HTML in "<html>...</html>" sections.
4138 * THIS IS VERY DANGEROUS on a publicly editable site, so USE wgGroupPermissions
4139 * TO RESTRICT EDITING to only those that you trust
4140 */
4141 $wgRawHtml = false;
4142
4143 /**
4144 * Set a default target for external links, e.g. _blank to pop up a new window
4145 */
4146 $wgExternalLinkTarget = false;
4147
4148 /**
4149 * If true, external URL links in wiki text will be given the
4150 * rel="nofollow" attribute as a hint to search engines that
4151 * they should not be followed for ranking purposes as they
4152 * are user-supplied and thus subject to spamming.
4153 */
4154 $wgNoFollowLinks = true;
4155
4156 /**
4157 * Namespaces in which $wgNoFollowLinks doesn't apply.
4158 * See Language.php for a list of namespaces.
4159 */
4160 $wgNoFollowNsExceptions = array();
4161
4162 /**
4163 * If this is set to an array of domains, external links to these domain names
4164 * (or any subdomains) will not be set to rel="nofollow" regardless of the
4165 * value of $wgNoFollowLinks. For instance:
4166 *
4167 * $wgNoFollowDomainExceptions = array( 'en.wikipedia.org', 'wiktionary.org',
4168 * 'mediawiki.org' );
4169 *
4170 * This would add rel="nofollow" to links to de.wikipedia.org, but not
4171 * en.wikipedia.org, wiktionary.org, en.wiktionary.org, us.en.wikipedia.org,
4172 * etc.
4173 *
4174 * Defaults to mediawiki.org for the links included in the software by default.
4175 */
4176 $wgNoFollowDomainExceptions = array( 'mediawiki.org' );
4177
4178 /**
4179 * Allow DISPLAYTITLE to change title display
4180 */
4181 $wgAllowDisplayTitle = true;
4182
4183 /**
4184 * For consistency, restrict DISPLAYTITLE to text that normalizes to the same
4185 * canonical DB key. Also disallow some inline CSS rules like display: none;
4186 * which can cause the text to be hidden or unselectable.
4187 */
4188 $wgRestrictDisplayTitle = true;
4189
4190 /**
4191 * Maximum number of calls per parse to expensive parser functions such as
4192 * PAGESINCATEGORY.
4193 */
4194 $wgExpensiveParserFunctionLimit = 100;
4195
4196 /**
4197 * Preprocessor caching threshold
4198 * Setting it to 'false' will disable the preprocessor cache.
4199 */
4200 $wgPreprocessorCacheThreshold = 1000;
4201
4202 /**
4203 * Enable interwiki transcluding. Only when iw_trans=1 in the interwiki table.
4204 */
4205 $wgEnableScaryTranscluding = false;
4206
4207 /**
4208 * Expiry time for transcluded templates cached in transcache database table.
4209 * Only used $wgEnableInterwikiTranscluding is set to true.
4210 */
4211 $wgTranscludeCacheExpiry = 3600;
4212
4213 /** @} */ # end of parser settings }
4214
4215 /************************************************************************//**
4216 * @name Statistics
4217 * @{
4218 */
4219
4220 /**
4221 * Method used to determine if a page in a content namespace should be counted
4222 * as a valid article.
4223 *
4224 * Redirect pages will never be counted as valid articles.
4225 *
4226 * This variable can have the following values:
4227 * - 'any': all pages as considered as valid articles
4228 * - 'comma': the page must contain a comma to be considered valid
4229 * - 'link': the page must contain a [[wiki link]] to be considered valid
4230 *
4231 * See also See https://www.mediawiki.org/wiki/Manual:Article_count
4232 *
4233 * Retroactively changing this variable will not affect the existing count,
4234 * to update it, you will need to run the maintenance/updateArticleCount.php
4235 * script.
4236 */
4237 $wgArticleCountMethod = 'link';
4238
4239 /**
4240 * How many days user must be idle before he is considered inactive. Will affect
4241 * the number shown on Special:Statistics, Special:ActiveUsers, and the
4242 * {{NUMBEROFACTIVEUSERS}} magic word in wikitext.
4243 * You might want to leave this as the default value, to provide comparable
4244 * numbers between different wikis.
4245 */
4246 $wgActiveUserDays = 30;
4247
4248 /** @} */ # End of statistics }
4249
4250 /************************************************************************//**
4251 * @name User accounts, authentication
4252 * @{
4253 */
4254
4255 /**
4256 * Password policy for local wiki users. A user's effective policy
4257 * is the superset of all policy statements from the policies for the
4258 * groups where the user is a member. If more than one group policy
4259 * include the same policy statement, the value is the max() of the
4260 * values. Note true > false. The 'default' policy group is required,
4261 * and serves as the minimum policy for all users. New statements can
4262 * be added by appending to $wgPasswordPolicy['checks'].
4263 * Statements:
4264 * - MinimalPasswordLength - minimum length a user can set
4265 * - MinimumPasswordLengthToLogin - passwords shorter than this will
4266 * not be allowed to login, regardless if it is correct.
4267 * - MaximalPasswordLength - maximum length password a user is allowed
4268 * to attempt. Prevents DoS attacks with pbkdf2.
4269 * - PasswordCannotMatchUsername - Password cannot match username to
4270 * - PasswordCannotMatchBlacklist - Username/password combination cannot
4271 * match a specific, hardcoded blacklist.
4272 * @since 1.26
4273 */
4274 $wgPasswordPolicy = array(
4275 'policies' => array(
4276 'bureaucrat' => array(
4277 'MinimalPasswordLength' => 8,
4278 'MinimumPasswordLengthToLogin' => 1,
4279 'PasswordCannotMatchUsername' => true,
4280 ),
4281 'sysop' => array(
4282 'MinimalPasswordLength' => 8,
4283 'MinimumPasswordLengthToLogin' => 1,
4284 'PasswordCannotMatchUsername' => true,
4285 ),
4286 'bot' => array(
4287 'MinimalPasswordLength' => 8,
4288 'MinimumPasswordLengthToLogin' => 1,
4289 'PasswordCannotMatchUsername' => true,
4290 ),
4291 'default' => array(
4292 'MinimalPasswordLength' => 1,
4293 'PasswordCannotMatchUsername' => true,
4294 'PasswordCannotMatchBlacklist' => true,
4295 'MaximalPasswordLength' => 4096,
4296 ),
4297 ),
4298 'checks' => array(
4299 'MinimalPasswordLength' => 'PasswordPolicyChecks::checkMinimalPasswordLength',
4300 'MinimumPasswordLengthToLogin' => 'PasswordPolicyChecks::checkMinimumPasswordLengthToLogin',
4301 'PasswordCannotMatchUsername' => 'PasswordPolicyChecks::checkPasswordCannotMatchUsername',
4302 'PasswordCannotMatchBlacklist' => 'PasswordPolicyChecks::checkPasswordCannotMatchBlacklist',
4303 'MaximalPasswordLength' => 'PasswordPolicyChecks::checkMaximalPasswordLength',
4304 ),
4305 );
4306
4307
4308 /**
4309 * For compatibility with old installations set to false
4310 * @deprecated since 1.24 will be removed in future
4311 */
4312 $wgPasswordSalt = true;
4313
4314 /**
4315 * Specifies the minimal length of a user password. If set to 0, empty pass-
4316 * words are allowed.
4317 * @deprecated since 1.26, use $wgPasswordPolicy's MinimalPasswordLength.
4318 */
4319 $wgMinimalPasswordLength = false;
4320
4321 /**
4322 * Specifies the maximal length of a user password (T64685).
4323 *
4324 * It is not recommended to make this greater than the default, as it can
4325 * allow DoS attacks by users setting really long passwords. In addition,
4326 * this should not be lowered too much, as it enforces weak passwords.
4327 *
4328 * @warning Unlike other password settings, user with passwords greater than
4329 * the maximum will not be able to log in.
4330 * @deprecated since 1.26, use $wgPasswordPolicy's MaximalPasswordLength.
4331 */
4332 $wgMaximalPasswordLength = false;
4333
4334 /**
4335 * Specifies if users should be sent to a password-reset form on login, if their
4336 * password doesn't meet the requirements of User::isValidPassword().
4337 * @since 1.23
4338 */
4339 $wgInvalidPasswordReset = true;
4340
4341 /**
4342 * Default password type to use when hashing user passwords
4343 *
4344 * @since 1.24
4345 */
4346 $wgPasswordDefault = 'pbkdf2';
4347
4348 /**
4349 * Configuration for built-in password types. Maps the password type
4350 * to an array of options. The 'class' option is the Password class to
4351 * use. All other options are class-dependent.
4352 *
4353 * An advanced example:
4354 * @code
4355 * $wgPasswordConfig['bcrypt-peppered'] = array(
4356 * 'class' => 'EncryptedPassword',
4357 * 'underlying' => 'bcrypt',
4358 * 'secrets' => array(),
4359 * 'cipher' => MCRYPT_RIJNDAEL_256,
4360 * 'mode' => MCRYPT_MODE_CBC,
4361 * 'cost' => 5,
4362 * );
4363 * @endcode
4364 *
4365 * @since 1.24
4366 */
4367 $wgPasswordConfig = array(
4368 'A' => array(
4369 'class' => 'MWOldPassword',
4370 ),
4371 'B' => array(
4372 'class' => 'MWSaltedPassword',
4373 ),
4374 'pbkdf2-legacyA' => array(
4375 'class' => 'LayeredParameterizedPassword',
4376 'types' => array(
4377 'A',
4378 'pbkdf2',
4379 ),
4380 ),
4381 'pbkdf2-legacyB' => array(
4382 'class' => 'LayeredParameterizedPassword',
4383 'types' => array(
4384 'B',
4385 'pbkdf2',
4386 ),
4387 ),
4388 'bcrypt' => array(
4389 'class' => 'BcryptPassword',
4390 'cost' => 9,
4391 ),
4392 'pbkdf2' => array(
4393 'class' => 'Pbkdf2Password',
4394 'algo' => 'sha256',
4395 'cost' => '10000',
4396 'length' => '128',
4397 ),
4398 );
4399
4400 /**
4401 * Whether to allow password resets ("enter some identifying data, and we'll send an email
4402 * with a temporary password you can use to get back into the account") identified by
4403 * various bits of data. Setting all of these to false (or the whole variable to false)
4404 * has the effect of disabling password resets entirely
4405 */
4406 $wgPasswordResetRoutes = array(
4407 'username' => true,
4408 'email' => false,
4409 );
4410
4411 /**
4412 * Maximum number of Unicode characters in signature
4413 */
4414 $wgMaxSigChars = 255;
4415
4416 /**
4417 * Maximum number of bytes in username. You want to run the maintenance
4418 * script ./maintenance/checkUsernames.php once you have changed this value.
4419 */
4420 $wgMaxNameChars = 255;
4421
4422 /**
4423 * Array of usernames which may not be registered or logged in from
4424 * Maintenance scripts can still use these
4425 */
4426 $wgReservedUsernames = array(
4427 'MediaWiki default', // Default 'Main Page' and MediaWiki: message pages
4428 'Conversion script', // Used for the old Wikipedia software upgrade
4429 'Maintenance script', // Maintenance scripts which perform editing, image import script
4430 'Template namespace initialisation script', // Used in 1.2->1.3 upgrade
4431 'ScriptImporter', // Default user name used by maintenance/importSiteScripts.php
4432 'msg:double-redirect-fixer', // Automatic double redirect fix
4433 'msg:usermessage-editor', // Default user for leaving user messages
4434 'msg:proxyblocker', // For $wgProxyList and Special:Blockme (removed in 1.22)
4435 'msg:spambot_username', // Used by cleanupSpam.php
4436 );
4437
4438 /**
4439 * Settings added to this array will override the default globals for the user
4440 * preferences used by anonymous visitors and newly created accounts.
4441 * For instance, to disable editing on double clicks:
4442 * $wgDefaultUserOptions ['editondblclick'] = 0;
4443 */
4444 $wgDefaultUserOptions = array(
4445 'ccmeonemails' => 0,
4446 'cols' => 80,
4447 'date' => 'default',
4448 'diffonly' => 0,
4449 'disablemail' => 0,
4450 'editfont' => 'default',
4451 'editondblclick' => 0,
4452 'editsectiononrightclick' => 0,
4453 'enotifminoredits' => 0,
4454 'enotifrevealaddr' => 0,
4455 'enotifusertalkpages' => 1,
4456 'enotifwatchlistpages' => 1,
4457 'extendwatchlist' => 1,
4458 'fancysig' => 0,
4459 'forceeditsummary' => 0,
4460 'gender' => 'unknown',
4461 'hideminor' => 0,
4462 'hidepatrolled' => 0,
4463 'imagesize' => 2,
4464 'math' => 1,
4465 'minordefault' => 0,
4466 'newpageshidepatrolled' => 0,
4467 'nickname' => '',
4468 'norollbackdiff' => 0,
4469 'numberheadings' => 0,
4470 'previewonfirst' => 0,
4471 'previewontop' => 1,
4472 'rcdays' => 7,
4473 'rclimit' => 50,
4474 'rows' => 25,
4475 'showhiddencats' => 0,
4476 'shownumberswatching' => 1,
4477 'showtoolbar' => 1,
4478 'skin' => false,
4479 'stubthreshold' => 0,
4480 'thumbsize' => 5,
4481 'underline' => 2,
4482 'uselivepreview' => 0,
4483 'usenewrc' => 1,
4484 'watchcreations' => 1,
4485 'watchdefault' => 1,
4486 'watchdeletion' => 0,
4487 'watchlistdays' => 3.0,
4488 'watchlisthideanons' => 0,
4489 'watchlisthidebots' => 0,
4490 'watchlisthideliu' => 0,
4491 'watchlisthideminor' => 0,
4492 'watchlisthideown' => 0,
4493 'watchlisthidepatrolled' => 0,
4494 'watchmoves' => 0,
4495 'watchrollback' => 0,
4496 'wllimit' => 250,
4497 'useeditwarning' => 1,
4498 'prefershttps' => 1,
4499 );
4500
4501 /**
4502 * An array of preferences to not show for the user
4503 */
4504 $wgHiddenPrefs = array();
4505
4506 /**
4507 * Characters to prevent during new account creations.
4508 * This is used in a regular expression character class during
4509 * registration (regex metacharacters like / are escaped).
4510 */
4511 $wgInvalidUsernameCharacters = '@:';
4512
4513 /**
4514 * Character used as a delimiter when testing for interwiki userrights
4515 * (In Special:UserRights, it is possible to modify users on different
4516 * databases if the delimiter is used, e.g. "Someuser@enwiki").
4517 *
4518 * It is recommended that you have this delimiter in
4519 * $wgInvalidUsernameCharacters above, or you will not be able to
4520 * modify the user rights of those users via Special:UserRights
4521 */
4522 $wgUserrightsInterwikiDelimiter = '@';
4523
4524 /**
4525 * This is to let user authenticate using https when they come from http.
4526 * Based on an idea by George Herbert on wikitech-l:
4527 * http://lists.wikimedia.org/pipermail/wikitech-l/2010-October/050039.html
4528 * @since 1.17
4529 */
4530 $wgSecureLogin = false;
4531
4532 /** @} */ # end user accounts }
4533
4534 /************************************************************************//**
4535 * @name User rights, access control and monitoring
4536 * @{
4537 */
4538
4539 /**
4540 * Number of seconds before autoblock entries expire. Default 86400 = 1 day.
4541 */
4542 $wgAutoblockExpiry = 86400;
4543
4544 /**
4545 * Set this to true to allow blocked users to edit their own user talk page.
4546 */
4547 $wgBlockAllowsUTEdit = false;
4548
4549 /**
4550 * Allow sysops to ban users from accessing Emailuser
4551 */
4552 $wgSysopEmailBans = true;
4553
4554 /**
4555 * Limits on the possible sizes of range blocks.
4556 *
4557 * CIDR notation is hard to understand, it's easy to mistakenly assume that a
4558 * /1 is a small range and a /31 is a large range. For IPv4, setting a limit of
4559 * half the number of bits avoids such errors, and allows entire ISPs to be
4560 * blocked using a small number of range blocks.
4561 *
4562 * For IPv6, RFC 3177 recommends that a /48 be allocated to every residential
4563 * customer, so range blocks larger than /64 (half the number of bits) will
4564 * plainly be required. RFC 4692 implies that a very large ISP may be
4565 * allocated a /19 if a generous HD-Ratio of 0.8 is used, so we will use that
4566 * as our limit. As of 2012, blocking the whole world would require a /4 range.
4567 */
4568 $wgBlockCIDRLimit = array(
4569 'IPv4' => 16, # Blocks larger than a /16 (64k addresses) will not be allowed
4570 'IPv6' => 19,
4571 );
4572
4573 /**
4574 * If true, blocked users will not be allowed to login. When using this with
4575 * a public wiki, the effect of logging out blocked users may actually be
4576 * avers: unless the user's address is also blocked (e.g. auto-block),
4577 * logging the user out will again allow reading and editing, just as for
4578 * anonymous visitors.
4579 */
4580 $wgBlockDisablesLogin = false;
4581
4582 /**
4583 * Pages anonymous user may see, set as an array of pages titles.
4584 *
4585 * @par Example:
4586 * @code
4587 * $wgWhitelistRead = array ( "Main Page", "Wikipedia:Help");
4588 * @endcode
4589 *
4590 * Special:Userlogin and Special:ChangePassword are always whitelisted.
4591 *
4592 * @note This will only work if $wgGroupPermissions['*']['read'] is false --
4593 * see below. Otherwise, ALL pages are accessible, regardless of this setting.
4594 *
4595 * @note Also that this will only protect _pages in the wiki_. Uploaded files
4596 * will remain readable. You can use img_auth.php to protect uploaded files,
4597 * see https://www.mediawiki.org/wiki/Manual:Image_Authorization
4598 */
4599 $wgWhitelistRead = false;
4600
4601 /**
4602 * Pages anonymous user may see, set as an array of regular expressions.
4603 *
4604 * This function will match the regexp against the title name, which
4605 * is without underscore.
4606 *
4607 * @par Example:
4608 * To whitelist [[Main Page]]:
4609 * @code
4610 * $wgWhitelistReadRegexp = array( "/Main Page/" );
4611 * @endcode
4612 *
4613 * @note Unless ^ and/or $ is specified, a regular expression might match
4614 * pages not intended to be whitelisted. The above example will also
4615 * whitelist a page named 'Security Main Page'.
4616 *
4617 * @par Example:
4618 * To allow reading any page starting with 'User' regardless of the case:
4619 * @code
4620 * $wgWhitelistReadRegexp = array( "@^UsEr.*@i" );
4621 * @endcode
4622 * Will allow both [[User is banned]] and [[User:JohnDoe]]
4623 *
4624 * @note This will only work if $wgGroupPermissions['*']['read'] is false --
4625 * see below. Otherwise, ALL pages are accessible, regardless of this setting.
4626 */
4627 $wgWhitelistReadRegexp = false;
4628
4629 /**
4630 * Should editors be required to have a validated e-mail
4631 * address before being allowed to edit?
4632 */
4633 $wgEmailConfirmToEdit = false;
4634
4635 /**
4636 * Permission keys given to users in each group.
4637 *
4638 * This is an array where the keys are all groups and each value is an
4639 * array of the format (right => boolean).
4640 *
4641 * The second format is used to support per-namespace permissions.
4642 * Note that this feature does not fully work for all permission types.
4643 *
4644 * All users are implicitly in the '*' group including anonymous visitors;
4645 * logged-in users are all implicitly in the 'user' group. These will be
4646 * combined with the permissions of all groups that a given user is listed
4647 * in in the user_groups table.
4648 *
4649 * Note: Don't set $wgGroupPermissions = array(); unless you know what you're
4650 * doing! This will wipe all permissions, and may mean that your users are
4651 * unable to perform certain essential tasks or access new functionality
4652 * when new permissions are introduced and default grants established.
4653 *
4654 * Functionality to make pages inaccessible has not been extensively tested
4655 * for security. Use at your own risk!
4656 *
4657 * This replaces $wgWhitelistAccount and $wgWhitelistEdit
4658 */
4659 $wgGroupPermissions = array();
4660
4661 /** @cond file_level_code */
4662 // Implicit group for all visitors
4663 $wgGroupPermissions['*']['createaccount'] = true;
4664 $wgGroupPermissions['*']['read'] = true;
4665 $wgGroupPermissions['*']['edit'] = true;
4666 $wgGroupPermissions['*']['createpage'] = true;
4667 $wgGroupPermissions['*']['createtalk'] = true;
4668 $wgGroupPermissions['*']['writeapi'] = true;
4669 $wgGroupPermissions['*']['editmyusercss'] = true;
4670 $wgGroupPermissions['*']['editmyuserjs'] = true;
4671 $wgGroupPermissions['*']['viewmywatchlist'] = true;
4672 $wgGroupPermissions['*']['editmywatchlist'] = true;
4673 $wgGroupPermissions['*']['viewmyprivateinfo'] = true;
4674 $wgGroupPermissions['*']['editmyprivateinfo'] = true;
4675 $wgGroupPermissions['*']['editmyoptions'] = true;
4676 #$wgGroupPermissions['*']['patrolmarks'] = false; // let anons see what was patrolled
4677
4678 // Implicit group for all logged-in accounts
4679 $wgGroupPermissions['user']['move'] = true;
4680 $wgGroupPermissions['user']['move-subpages'] = true;
4681 $wgGroupPermissions['user']['move-rootuserpages'] = true; // can move root userpages
4682 $wgGroupPermissions['user']['move-categorypages'] = true;
4683 $wgGroupPermissions['user']['movefile'] = true;
4684 $wgGroupPermissions['user']['read'] = true;
4685 $wgGroupPermissions['user']['edit'] = true;
4686 $wgGroupPermissions['user']['createpage'] = true;
4687 $wgGroupPermissions['user']['createtalk'] = true;
4688 $wgGroupPermissions['user']['writeapi'] = true;
4689 $wgGroupPermissions['user']['upload'] = true;
4690 $wgGroupPermissions['user']['reupload'] = true;
4691 $wgGroupPermissions['user']['reupload-shared'] = true;
4692 $wgGroupPermissions['user']['minoredit'] = true;
4693 $wgGroupPermissions['user']['purge'] = true; // can use ?action=purge without clicking "ok"
4694 $wgGroupPermissions['user']['sendemail'] = true;
4695 $wgGroupPermissions['user']['applychangetags'] = true;
4696 $wgGroupPermissions['user']['changetags'] = true;
4697
4698 // Implicit group for accounts that pass $wgAutoConfirmAge
4699 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
4700 $wgGroupPermissions['autoconfirmed']['editsemiprotected'] = true;
4701
4702 // Users with bot privilege can have their edits hidden
4703 // from various log pages by default
4704 $wgGroupPermissions['bot']['bot'] = true;
4705 $wgGroupPermissions['bot']['autoconfirmed'] = true;
4706 $wgGroupPermissions['bot']['editsemiprotected'] = true;
4707 $wgGroupPermissions['bot']['nominornewtalk'] = true;
4708 $wgGroupPermissions['bot']['autopatrol'] = true;
4709 $wgGroupPermissions['bot']['suppressredirect'] = true;
4710 $wgGroupPermissions['bot']['apihighlimits'] = true;
4711 $wgGroupPermissions['bot']['writeapi'] = true;
4712
4713 // Most extra permission abilities go to this group
4714 $wgGroupPermissions['sysop']['block'] = true;
4715 $wgGroupPermissions['sysop']['createaccount'] = true;
4716 $wgGroupPermissions['sysop']['delete'] = true;
4717 // can be separately configured for pages with > $wgDeleteRevisionsLimit revs
4718 $wgGroupPermissions['sysop']['bigdelete'] = true;
4719 // can view deleted history entries, but not see or restore the text
4720 $wgGroupPermissions['sysop']['deletedhistory'] = true;
4721 // can view deleted revision text
4722 $wgGroupPermissions['sysop']['deletedtext'] = true;
4723 $wgGroupPermissions['sysop']['undelete'] = true;
4724 $wgGroupPermissions['sysop']['editinterface'] = true;
4725 $wgGroupPermissions['sysop']['editusercss'] = true;
4726 $wgGroupPermissions['sysop']['edituserjs'] = true;
4727 $wgGroupPermissions['sysop']['import'] = true;
4728 $wgGroupPermissions['sysop']['importupload'] = true;
4729 $wgGroupPermissions['sysop']['move'] = true;
4730 $wgGroupPermissions['sysop']['move-subpages'] = true;
4731 $wgGroupPermissions['sysop']['move-rootuserpages'] = true;
4732 $wgGroupPermissions['sysop']['move-categorypages'] = true;
4733 $wgGroupPermissions['sysop']['patrol'] = true;
4734 $wgGroupPermissions['sysop']['autopatrol'] = true;
4735 $wgGroupPermissions['sysop']['protect'] = true;
4736 $wgGroupPermissions['sysop']['editprotected'] = true;
4737 $wgGroupPermissions['sysop']['proxyunbannable'] = true;
4738 $wgGroupPermissions['sysop']['rollback'] = true;
4739 $wgGroupPermissions['sysop']['upload'] = true;
4740 $wgGroupPermissions['sysop']['reupload'] = true;
4741 $wgGroupPermissions['sysop']['reupload-shared'] = true;
4742 $wgGroupPermissions['sysop']['unwatchedpages'] = true;
4743 $wgGroupPermissions['sysop']['autoconfirmed'] = true;
4744 $wgGroupPermissions['sysop']['editsemiprotected'] = true;
4745 $wgGroupPermissions['sysop']['ipblock-exempt'] = true;
4746 $wgGroupPermissions['sysop']['blockemail'] = true;
4747 $wgGroupPermissions['sysop']['markbotedits'] = true;
4748 $wgGroupPermissions['sysop']['apihighlimits'] = true;
4749 $wgGroupPermissions['sysop']['browsearchive'] = true;
4750 $wgGroupPermissions['sysop']['noratelimit'] = true;
4751 $wgGroupPermissions['sysop']['movefile'] = true;
4752 $wgGroupPermissions['sysop']['unblockself'] = true;
4753 $wgGroupPermissions['sysop']['suppressredirect'] = true;
4754 #$wgGroupPermissions['sysop']['pagelang'] = true;
4755 #$wgGroupPermissions['sysop']['upload_by_url'] = true;
4756 $wgGroupPermissions['sysop']['mergehistory'] = true;
4757 $wgGroupPermissions['sysop']['managechangetags'] = true;
4758
4759 // Permission to change users' group assignments
4760 $wgGroupPermissions['bureaucrat']['userrights'] = true;
4761 $wgGroupPermissions['bureaucrat']['noratelimit'] = true;
4762 // Permission to change users' groups assignments across wikis
4763 #$wgGroupPermissions['bureaucrat']['userrights-interwiki'] = true;
4764 // Permission to export pages including linked pages regardless of $wgExportMaxLinkDepth
4765 #$wgGroupPermissions['bureaucrat']['override-export-depth'] = true;
4766
4767 #$wgGroupPermissions['sysop']['deletelogentry'] = true;
4768 #$wgGroupPermissions['sysop']['deleterevision'] = true;
4769 // To hide usernames from users and Sysops
4770 #$wgGroupPermissions['suppress']['hideuser'] = true;
4771 // To hide revisions/log items from users and Sysops
4772 #$wgGroupPermissions['suppress']['suppressrevision'] = true;
4773 // To view revisions/log items hidden from users and Sysops
4774 #$wgGroupPermissions['suppress']['viewsuppressed'] = true;
4775 // For private suppression log access
4776 #$wgGroupPermissions['suppress']['suppressionlog'] = true;
4777
4778 /**
4779 * The developer group is deprecated, but can be activated if need be
4780 * to use the 'lockdb' and 'unlockdb' special pages. Those require
4781 * that a lock file be defined and creatable/removable by the web
4782 * server.
4783 */
4784 # $wgGroupPermissions['developer']['siteadmin'] = true;
4785
4786 /** @endcond */
4787
4788 /**
4789 * Permission keys revoked from users in each group.
4790 *
4791 * This acts the same way as wgGroupPermissions above, except that
4792 * if the user is in a group here, the permission will be removed from them.
4793 *
4794 * Improperly setting this could mean that your users will be unable to perform
4795 * certain essential tasks, so use at your own risk!
4796 */
4797 $wgRevokePermissions = array();
4798
4799 /**
4800 * Implicit groups, aren't shown on Special:Listusers or somewhere else
4801 */
4802 $wgImplicitGroups = array( '*', 'user', 'autoconfirmed' );
4803
4804 /**
4805 * A map of group names that the user is in, to group names that those users
4806 * are allowed to add or revoke.
4807 *
4808 * Setting the list of groups to add or revoke to true is equivalent to "any
4809 * group".
4810 *
4811 * @par Example:
4812 * To allow sysops to add themselves to the "bot" group:
4813 * @code
4814 * $wgGroupsAddToSelf = array( 'sysop' => array( 'bot' ) );
4815 * @endcode
4816 *
4817 * @par Example:
4818 * Implicit groups may be used for the source group, for instance:
4819 * @code
4820 * $wgGroupsRemoveFromSelf = array( '*' => true );
4821 * @endcode
4822 * This allows users in the '*' group (i.e. any user) to remove themselves from
4823 * any group that they happen to be in.
4824 */
4825 $wgGroupsAddToSelf = array();
4826
4827 /**
4828 * @see $wgGroupsAddToSelf
4829 */
4830 $wgGroupsRemoveFromSelf = array();
4831
4832 /**
4833 * Set of available actions that can be restricted via action=protect
4834 * You probably shouldn't change this.
4835 * Translated through restriction-* messages.
4836 * Title::getRestrictionTypes() will remove restrictions that are not
4837 * applicable to a specific title (create and upload)
4838 */
4839 $wgRestrictionTypes = array( 'create', 'edit', 'move', 'upload' );
4840
4841 /**
4842 * Rights which can be required for each protection level (via action=protect)
4843 *
4844 * You can add a new protection level that requires a specific
4845 * permission by manipulating this array. The ordering of elements
4846 * dictates the order on the protection form's lists.
4847 *
4848 * - '' will be ignored (i.e. unprotected)
4849 * - 'autoconfirmed' is quietly rewritten to 'editsemiprotected' for backwards compatibility
4850 * - 'sysop' is quietly rewritten to 'editprotected' for backwards compatibility
4851 */
4852 $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' );
4853
4854 /**
4855 * Restriction levels that can be used with cascading protection
4856 *
4857 * A page can only be protected with cascading protection if the
4858 * requested restriction level is included in this array.
4859 *
4860 * 'autoconfirmed' is quietly rewritten to 'editsemiprotected' for backwards compatibility.
4861 * 'sysop' is quietly rewritten to 'editprotected' for backwards compatibility.
4862 */
4863 $wgCascadingRestrictionLevels = array( 'sysop' );
4864
4865 /**
4866 * Restriction levels that should be considered "semiprotected"
4867 *
4868 * Certain places in the interface recognize a dichotomy between "protected"
4869 * and "semiprotected", without further distinguishing the specific levels. In
4870 * general, if anyone can be eligible to edit a protection level merely by
4871 * reaching some condition in $wgAutopromote, it should probably be considered
4872 * "semiprotected".
4873 *
4874 * 'autoconfirmed' is quietly rewritten to 'editsemiprotected' for backwards compatibility.
4875 * 'sysop' is not changed, since it really shouldn't be here.
4876 */
4877 $wgSemiprotectedRestrictionLevels = array( 'autoconfirmed' );
4878
4879 /**
4880 * Set the minimum permissions required to edit pages in each
4881 * namespace. If you list more than one permission, a user must
4882 * have all of them to edit pages in that namespace.
4883 *
4884 * @note NS_MEDIAWIKI is implicitly restricted to 'editinterface'.
4885 */
4886 $wgNamespaceProtection = array();
4887
4888 /**
4889 * Pages in namespaces in this array can not be used as templates.
4890 *
4891 * Elements MUST be numeric namespace ids, you can safely use the MediaWiki
4892 * namespaces constants (NS_USER, NS_MAIN...).
4893 *
4894 * Among other things, this may be useful to enforce read-restrictions
4895 * which may otherwise be bypassed by using the template mechanism.
4896 */
4897 $wgNonincludableNamespaces = array();
4898
4899 /**
4900 * Number of seconds an account is required to age before it's given the
4901 * implicit 'autoconfirm' group membership. This can be used to limit
4902 * privileges of new accounts.
4903 *
4904 * Accounts created by earlier versions of the software may not have a
4905 * recorded creation date, and will always be considered to pass the age test.
4906 *
4907 * When left at 0, all registered accounts will pass.
4908 *
4909 * @par Example:
4910 * Set automatic confirmation to 10 minutes (which is 600 seconds):
4911 * @code
4912 * $wgAutoConfirmAge = 600; // ten minutes
4913 * @endcode
4914 * Set age to one day:
4915 * @code
4916 * $wgAutoConfirmAge = 3600*24; // one day
4917 * @endcode
4918 */
4919 $wgAutoConfirmAge = 0;
4920
4921 /**
4922 * Number of edits an account requires before it is autoconfirmed.
4923 * Passing both this AND the time requirement is needed. Example:
4924 *
4925 * @par Example:
4926 * @code
4927 * $wgAutoConfirmCount = 50;
4928 * @endcode
4929 */
4930 $wgAutoConfirmCount = 0;
4931
4932 /**
4933 * Automatically add a usergroup to any user who matches certain conditions.
4934 *
4935 * @todo Redocument $wgAutopromote
4936 *
4937 * The format is
4938 * array( '&' or '|' or '^' or '!', cond1, cond2, ... )
4939 * where cond1, cond2, ... are themselves conditions; *OR*
4940 * APCOND_EMAILCONFIRMED, *OR*
4941 * array( APCOND_EMAILCONFIRMED ), *OR*
4942 * array( APCOND_EDITCOUNT, number of edits ), *OR*
4943 * array( APCOND_AGE, seconds since registration ), *OR*
4944 * array( APCOND_INGROUPS, group1, group2, ... ), *OR*
4945 * array( APCOND_ISIP, ip ), *OR*
4946 * array( APCOND_IPINRANGE, range ), *OR*
4947 * array( APCOND_AGE_FROM_EDIT, seconds since first edit ), *OR*
4948 * array( APCOND_BLOCKED ), *OR*
4949 * array( APCOND_ISBOT ), *OR*
4950 * similar constructs defined by extensions.
4951 *
4952 * If $wgEmailAuthentication is off, APCOND_EMAILCONFIRMED will be true for any
4953 * user who has provided an e-mail address.
4954 */
4955 $wgAutopromote = array(
4956 'autoconfirmed' => array( '&',
4957 array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ),
4958 array( APCOND_AGE, &$wgAutoConfirmAge ),
4959 ),
4960 );
4961
4962 /**
4963 * Automatically add a usergroup to any user who matches certain conditions.
4964 *
4965 * Does not add the user to the group again if it has been removed.
4966 * Also, does not remove the group if the user no longer meets the criteria.
4967 *
4968 * The format is:
4969 * @code
4970 * array( event => criteria, ... )
4971 * @endcode
4972 * Where event is either:
4973 * - 'onEdit' (when user edits)
4974 *
4975 * Criteria has the same format as $wgAutopromote
4976 *
4977 * @see $wgAutopromote
4978 * @since 1.18
4979 */
4980 $wgAutopromoteOnce = array(
4981 'onEdit' => array(),
4982 );
4983
4984 /**
4985 * Put user rights log entries for autopromotion in recent changes?
4986 * @since 1.18
4987 */
4988 $wgAutopromoteOnceLogInRC = true;
4989
4990 /**
4991 * $wgAddGroups and $wgRemoveGroups can be used to give finer control over who
4992 * can assign which groups at Special:Userrights.
4993 *
4994 * @par Example:
4995 * Bureaucrats can add any group:
4996 * @code
4997 * $wgAddGroups['bureaucrat'] = true;
4998 * @endcode
4999 * Bureaucrats can only remove bots and sysops:
5000 * @code
5001 * $wgRemoveGroups['bureaucrat'] = array( 'bot', 'sysop' );
5002 * @endcode
5003 * Sysops can make bots:
5004 * @code
5005 * $wgAddGroups['sysop'] = array( 'bot' );
5006 * @endcode
5007 * Sysops can disable other sysops in an emergency, and disable bots:
5008 * @code
5009 * $wgRemoveGroups['sysop'] = array( 'sysop', 'bot' );
5010 * @endcode
5011 */
5012 $wgAddGroups = array();
5013
5014 /**
5015 * @see $wgAddGroups
5016 */
5017 $wgRemoveGroups = array();
5018
5019 /**
5020 * A list of available rights, in addition to the ones defined by the core.
5021 * For extensions only.
5022 */
5023 $wgAvailableRights = array();
5024
5025 /**
5026 * Optional to restrict deletion of pages with higher revision counts
5027 * to users with the 'bigdelete' permission. (Default given to sysops.)
5028 */
5029 $wgDeleteRevisionsLimit = 0;
5030
5031 /**
5032 * The maximum number of edits a user can have and
5033 * can still be hidden by users with the hideuser permission.
5034 * This is limited for performance reason.
5035 * Set to false to disable the limit.
5036 * @since 1.23
5037 */
5038 $wgHideUserContribLimit = 1000;
5039
5040 /**
5041 * Number of accounts each IP address may create, 0 to disable.
5042 *
5043 * @warning Requires memcached
5044 */
5045 $wgAccountCreationThrottle = 0;
5046
5047 /**
5048 * Edits matching these regular expressions in body text
5049 * will be recognised as spam and rejected automatically.
5050 *
5051 * There's no administrator override on-wiki, so be careful what you set. :)
5052 * May be an array of regexes or a single string for backwards compatibility.
5053 *
5054 * @see http://en.wikipedia.org/wiki/Regular_expression
5055 *
5056 * @note Each regex needs a beginning/end delimiter, eg: # or /
5057 */
5058 $wgSpamRegex = array();
5059
5060 /**
5061 * Same as the above except for edit summaries
5062 */
5063 $wgSummarySpamRegex = array();
5064
5065 /**
5066 * Whether to use DNS blacklists in $wgDnsBlacklistUrls to check for open
5067 * proxies
5068 * @since 1.16
5069 */
5070 $wgEnableDnsBlacklist = false;
5071
5072 /**
5073 * List of DNS blacklists to use, if $wgEnableDnsBlacklist is true.
5074 *
5075 * This is an array of either a URL or an array with the URL and a key (should
5076 * the blacklist require a key).
5077 *
5078 * @par Example:
5079 * @code
5080 * $wgDnsBlacklistUrls = array(
5081 * // String containing URL
5082 * 'http.dnsbl.sorbs.net.',
5083 * // Array with URL and key, for services that require a key
5084 * array( 'dnsbl.httpbl.net.', 'mykey' ),
5085 * // Array with just the URL. While this works, it is recommended that you
5086 * // just use a string as shown above
5087 * array( 'opm.tornevall.org.' )
5088 * );
5089 * @endcode
5090 *
5091 * @note You should end the domain name with a . to avoid searching your
5092 * eventual domain search suffixes.
5093 * @since 1.16
5094 */
5095 $wgDnsBlacklistUrls = array( 'http.dnsbl.sorbs.net.' );
5096
5097 /**
5098 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite
5099 * what the other methods might say.
5100 */
5101 $wgProxyWhitelist = array();
5102
5103 /**
5104 * Whether to look at the X-Forwarded-For header's list of (potentially spoofed)
5105 * IPs and apply IP blocks to them. This allows for IP blocks to work with correctly-configured
5106 * (transparent) proxies without needing to block the proxies themselves.
5107 */
5108 $wgApplyIpBlocksToXff = false;
5109
5110 /**
5111 * Simple rate limiter options to brake edit floods.
5112 *
5113 * Maximum number actions allowed in the given number of seconds; after that
5114 * the violating client receives HTTP 500 error pages until the period
5115 * elapses.
5116 *
5117 * @par Example:
5118 * To set a generic maximum of 4 hits in 60 seconds:
5119 * @code
5120 * $wgRateLimits = array( 4, 60 );
5121 * @endcode
5122 *
5123 * You could also limit per action and then type of users. See the inline
5124 * code for a template to use.
5125 *
5126 * This option set is experimental and likely to change.
5127 *
5128 * @warning Requires memcached.
5129 */
5130 $wgRateLimits = array(
5131 'edit' => array(
5132 'anon' => null, // for any and all anonymous edits (aggregate)
5133 'user' => null, // for each logged-in user
5134 'newbie' => null, // for each recent (autoconfirmed) account; overrides 'user'
5135 'ip' => null, // for each anon and recent account
5136 'subnet' => null, // ... within a /24 subnet in IPv4 or /64 in IPv6
5137 ),
5138 'move' => array(
5139 'user' => null,
5140 'newbie' => null,
5141 'ip' => null,
5142 'subnet' => null,
5143 ),
5144 'mailpassword' => array( // triggering password resets emails
5145 'anon' => null,
5146 ),
5147 'emailuser' => array( // emailing other users using MediaWiki
5148 'user' => null,
5149 ),
5150 'linkpurge' => array( // purges of link tables
5151 'anon' => null,
5152 'user' => null,
5153 'newbie' => null,
5154 'ip' => null,
5155 'subnet' => null,
5156 ),
5157 'renderfile' => array( // files rendered via thumb.php or thumb_handler.php
5158 'anon' => null,
5159 'user' => null,
5160 'newbie' => null,
5161 'ip' => null,
5162 'subnet' => null,
5163 ),
5164 'renderfile-nonstandard' => array( // same as above but for non-standard thumbnails
5165 'anon' => null,
5166 'user' => null,
5167 'newbie' => null,
5168 'ip' => null,
5169 'subnet' => null,
5170 ),
5171 'stashedit' => array( // stashing edits into cache before save
5172 'anon' => null,
5173 'user' => null,
5174 'newbie' => null,
5175 'ip' => null,
5176 'subnet' => null,
5177 ),
5178 'changetag' => array( // adding or removing change tags
5179 'user' => null,
5180 'newbie' => null,
5181 ),
5182 );
5183
5184 /**
5185 * Set to a filename to log rate limiter hits.
5186 *
5187 * @deprecated since 1.23, use $wgDebugLogGroups['ratelimit'] instead
5188 */
5189 $wgRateLimitLog = null;
5190
5191 /**
5192 * Array of IPs which should be excluded from rate limits.
5193 * This may be useful for whitelisting NAT gateways for conferences, etc.
5194 */
5195 $wgRateLimitsExcludedIPs = array();
5196
5197 /**
5198 * Log IP addresses in the recentchanges table; can be accessed only by
5199 * extensions (e.g. CheckUser) or a DB admin
5200 * Used for retroactive autoblocks
5201 */
5202 $wgPutIPinRC = true;
5203
5204 /**
5205 * Integer defining default number of entries to show on
5206 * special pages which are query-pages such as Special:Whatlinkshere.
5207 */
5208 $wgQueryPageDefaultLimit = 50;
5209
5210 /**
5211 * Limit password attempts to X attempts per Y seconds per IP per account.
5212 *
5213 * @warning Requires memcached.
5214 */
5215 $wgPasswordAttemptThrottle = array( 'count' => 5, 'seconds' => 300 );
5216
5217 /** @} */ # end of user rights settings
5218
5219 /************************************************************************//**
5220 * @name Proxy scanner settings
5221 * @{
5222 */
5223
5224 /**
5225 * This should always be customised in LocalSettings.php
5226 */
5227 $wgSecretKey = false;
5228
5229 /**
5230 * Big list of banned IP addresses.
5231 *
5232 * This can have the following formats:
5233 * - An array of addresses, either in the values
5234 * or the keys (for backward compatibility)
5235 * - A string, in that case this is the path to a file
5236 * containing the list of IP addresses, one per line
5237 */
5238 $wgProxyList = array();
5239
5240 /** @} */ # end of proxy scanner settings
5241
5242 /************************************************************************//**
5243 * @name Cookie settings
5244 * @{
5245 */
5246
5247 /**
5248 * Default cookie lifetime, in seconds. Setting to 0 makes all cookies session-only.
5249 */
5250 $wgCookieExpiration = 180 * 86400;
5251
5252 /**
5253 * Set to set an explicit domain on the login cookies eg, "justthis.domain.org"
5254 * or ".any.subdomain.net"
5255 */
5256 $wgCookieDomain = '';
5257
5258 /**
5259 * Set this variable if you want to restrict cookies to a certain path within
5260 * the domain specified by $wgCookieDomain.
5261 */
5262 $wgCookiePath = '/';
5263
5264 /**
5265 * Whether the "secure" flag should be set on the cookie. This can be:
5266 * - true: Set secure flag
5267 * - false: Don't set secure flag
5268 * - "detect": Set the secure flag if $wgServer is set to an HTTPS URL
5269 */
5270 $wgCookieSecure = 'detect';
5271
5272 /**
5273 * By default, MediaWiki checks if the client supports cookies during the
5274 * login process, so that it can display an informative error message if
5275 * cookies are disabled. Set this to true if you want to disable this cookie
5276 * check.
5277 */
5278 $wgDisableCookieCheck = false;
5279
5280 /**
5281 * Cookies generated by MediaWiki have names starting with this prefix. Set it
5282 * to a string to use a custom prefix. Setting it to false causes the database
5283 * name to be used as a prefix.
5284 */
5285 $wgCookiePrefix = false;
5286
5287 /**
5288 * Set authentication cookies to HttpOnly to prevent access by JavaScript,
5289 * in browsers that support this feature. This can mitigates some classes of
5290 * XSS attack.
5291 */
5292 $wgCookieHttpOnly = true;
5293
5294 /**
5295 * A list of cookies that vary the cache (for use by extensions)
5296 */
5297 $wgCacheVaryCookies = array();
5298
5299 /**
5300 * Override to customise the session name
5301 */
5302 $wgSessionName = false;
5303
5304 /** @} */ # end of cookie settings }
5305
5306 /************************************************************************//**
5307 * @name LaTeX (mathematical formulas)
5308 * @{
5309 */
5310
5311 /**
5312 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
5313 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
5314 * (ImageMagick) installed and available in the PATH.
5315 * Please see math/README for more information.
5316 */
5317 $wgUseTeX = false;
5318
5319 /** @} */ # end LaTeX }
5320
5321 /************************************************************************//**
5322 * @name Profiling, testing and debugging
5323 *
5324 * To enable profiling, edit StartProfiler.php
5325 *
5326 * @{
5327 */
5328
5329 /**
5330 * Filename for debug logging. See https://www.mediawiki.org/wiki/How_to_debug
5331 * The debug log file should be not be publicly accessible if it is used, as it
5332 * may contain private data.
5333 */
5334 $wgDebugLogFile = '';
5335
5336 /**
5337 * Prefix for debug log lines
5338 */
5339 $wgDebugLogPrefix = '';
5340
5341 /**
5342 * If true, instead of redirecting, show a page with a link to the redirect
5343 * destination. This allows for the inspection of PHP error messages, and easy
5344 * resubmission of form data. For developer use only.
5345 */
5346 $wgDebugRedirects = false;
5347
5348 /**
5349 * If true, log debugging data from action=raw and load.php.
5350 * This is normally false to avoid overlapping debug entries due to gen=css
5351 * and gen=js requests.
5352 */
5353 $wgDebugRawPage = false;
5354
5355 /**
5356 * Send debug data to an HTML comment in the output.
5357 *
5358 * This may occasionally be useful when supporting a non-technical end-user.
5359 * It's more secure than exposing the debug log file to the web, since the
5360 * output only contains private data for the current user. But it's not ideal
5361 * for development use since data is lost on fatal errors and redirects.
5362 */
5363 $wgDebugComments = false;
5364
5365 /**
5366 * Extensive database transaction state debugging
5367 *
5368 * @since 1.20
5369 */
5370 $wgDebugDBTransactions = false;
5371
5372 /**
5373 * Write SQL queries to the debug log.
5374 *
5375 * This setting is only used $wgLBFactoryConf['class'] is set to
5376 * 'LBFactorySimple' and $wgDBservers is an empty array; otherwise
5377 * the DBO_DEBUG flag must be set in the 'flags' option of the database
5378 * connection to achieve the same functionality.
5379 */
5380 $wgDebugDumpSql = false;
5381
5382 /**
5383 * Trim logged SQL queries to this many bytes. Set 0/false/null to do no
5384 * trimming.
5385 * @since 1.24
5386 */
5387 $wgDebugDumpSqlLength = 500;
5388
5389 /**
5390 * Performance expectations for DB usage
5391 *
5392 * @since 1.26
5393 */
5394 $wgTrxProfilerLimits = array(
5395 // Basic GET and POST requests
5396 'GET' => array(
5397 'masterConns' => 0,
5398 'writes' => 0,
5399 'readQueryTime' => 5
5400 ),
5401 'POST' => array(
5402 'readQueryTime' => 5,
5403 'writeQueryTime' => 1,
5404 'maxAffected' => 500
5405 ),
5406 // Background job runner
5407 'JobRunner' => array(
5408 'readQueryTime' => 30,
5409 'writeQueryTime' => 5,
5410 'maxAffected' => 500
5411 ),
5412 // Command-line scripts
5413 'Maintenance' => array(
5414 'writeQueryTime' => 5,
5415 'maxAffected' => 1000
5416 )
5417 );
5418
5419 /**
5420 * Map of string log group names to log destinations.
5421 *
5422 * If set, wfDebugLog() output for that group will go to that file instead
5423 * of the regular $wgDebugLogFile. Useful for enabling selective logging
5424 * in production.
5425 *
5426 * Log destinations may be one of the following:
5427 * - false to completely remove from the output, including from $wgDebugLogFile.
5428 * - string values specifying a filename or URI.
5429 * - associative array with keys:
5430 * - 'destination' desired filename or URI.
5431 * - 'sample' an integer value, specifying a sampling factor (optional)
5432 * - 'level' A \Psr\Log\LogLevel constant, indicating the minimum level
5433 * to log (optional, since 1.25)
5434 *
5435 * @par Example:
5436 * @code
5437 * $wgDebugLogGroups['redis'] = '/var/log/mediawiki/redis.log';
5438 * @endcode
5439 *
5440 * @par Advanced example:
5441 * @code
5442 * $wgDebugLogGroups['memcached'] = array(
5443 * 'destination' => '/var/log/mediawiki/memcached.log',
5444 * 'sample' => 1000, // log 1 message out of every 1,000.
5445 * 'level' => \Psr\Log\LogLevel::WARNING
5446 * );
5447 * @endcode
5448 */
5449 $wgDebugLogGroups = array();
5450
5451 /**
5452 * Default service provider for creating Psr\Log\LoggerInterface instances.
5453 *
5454 * The value should be an array suitable for use with
5455 * ObjectFactory::getObjectFromSpec(). The created object is expected to
5456 * implement the MediaWiki\Logger\Spi interface. See ObjectFactory for additional
5457 * details.
5458 *
5459 * Alternately the MediaWiki\Logger\LoggerFactory::registerProvider method can
5460 * be called to inject an MediaWiki\Logger\Spi instance into the LoggerFactory
5461 * and bypass the use of this configuration variable entirely.
5462 *
5463 * @par To completely disable logging:
5464 * @code
5465 * $wgMWLoggerDefaultSpi = array( 'class' => '\\MediaWiki\\Logger\\NullSpi' );
5466 * @endcode
5467 *
5468 * @since 1.25
5469 * @var array $wgMWLoggerDefaultSpi
5470 * @see MwLogger
5471 */
5472 $wgMWLoggerDefaultSpi = array(
5473 'class' => '\\MediaWiki\\Logger\\LegacySpi',
5474 );
5475
5476 /**
5477 * Display debug data at the bottom of the main content area.
5478 *
5479 * Useful for developers and technical users trying to working on a closed wiki.
5480 */
5481 $wgShowDebug = false;
5482
5483 /**
5484 * Prefix debug messages with relative timestamp. Very-poor man's profiler.
5485 * Since 1.19 also includes memory usage.
5486 */
5487 $wgDebugTimestamps = false;
5488
5489 /**
5490 * Print HTTP headers for every request in the debug information.
5491 */
5492 $wgDebugPrintHttpHeaders = true;
5493
5494 /**
5495 * Show the contents of $wgHooks in Special:Version
5496 */
5497 $wgSpecialVersionShowHooks = false;
5498
5499 /**
5500 * Whether to show "we're sorry, but there has been a database error" pages.
5501 * Displaying errors aids in debugging, but may display information useful
5502 * to an attacker.
5503 */
5504 $wgShowSQLErrors = false;
5505
5506 /**
5507 * If set to true, uncaught exceptions will print a complete stack trace
5508 * to output. This should only be used for debugging, as it may reveal
5509 * private information in function parameters due to PHP's backtrace
5510 * formatting.
5511 */
5512 $wgShowExceptionDetails = false;
5513
5514 /**
5515 * If true, show a backtrace for database errors
5516 *
5517 * @note This setting only applies when connection errors and query errors are
5518 * reported in the normal manner. $wgShowExceptionDetails applies in other cases,
5519 * including those in which an uncaught exception is thrown from within the
5520 * exception handler.
5521 */
5522 $wgShowDBErrorBacktrace = false;
5523
5524 /**
5525 * If true, send the exception backtrace to the error log
5526 */
5527 $wgLogExceptionBacktrace = true;
5528
5529 /**
5530 * Expose backend server host names through the API and various HTML comments
5531 */
5532 $wgShowHostnames = false;
5533
5534 /**
5535 * Override server hostname detection with a hardcoded value.
5536 * Should be a string, default false.
5537 * @since 1.20
5538 */
5539 $wgOverrideHostname = false;
5540
5541 /**
5542 * If set to true MediaWiki will throw notices for some possible error
5543 * conditions and for deprecated functions.
5544 */
5545 $wgDevelopmentWarnings = false;
5546
5547 /**
5548 * Release limitation to wfDeprecated warnings, if set to a release number
5549 * development warnings will not be generated for deprecations added in releases
5550 * after the limit.
5551 */
5552 $wgDeprecationReleaseLimit = false;
5553
5554 /**
5555 * Only record profiling info for pages that took longer than this
5556 * @deprecated since 1.25: set $wgProfiler['threshold'] instead.
5557 */
5558 $wgProfileLimit = 0.0;
5559
5560 /**
5561 * Don't put non-profiling info into log file
5562 *
5563 * @deprecated since 1.23, set the log file in
5564 * $wgDebugLogGroups['profileoutput'] instead.
5565 */
5566 $wgProfileOnly = false;
5567
5568 /**
5569 * If true, print a raw call tree instead of per-function report
5570 */
5571 $wgProfileCallTree = false;
5572
5573 /**
5574 * Should application server host be put into profiling table
5575 *
5576 * @deprecated set $wgProfiler['perhost'] = true instead
5577 */
5578 $wgProfilePerHost = null;
5579
5580 /**
5581 * Host for UDP profiler.
5582 *
5583 * The host should be running a daemon which can be obtained from MediaWiki
5584 * Git at:
5585 * http://git.wikimedia.org/tree/operations%2Fsoftware.git/master/udpprofile
5586 *
5587 * @deprecated set $wgProfiler['udphost'] instead
5588 */
5589 $wgUDPProfilerHost = null;
5590
5591 /**
5592 * Port for UDP profiler.
5593 * @see $wgUDPProfilerHost
5594 *
5595 * @deprecated set $wgProfiler['udpport'] instead
5596 */
5597 $wgUDPProfilerPort = null;
5598
5599 /**
5600 * Format string for the UDP profiler. The UDP profiler invokes sprintf() with
5601 * (profile id, count, cpu, cpu_sq, real, real_sq, entry name, memory) as
5602 * arguments. You can use sprintf's argument numbering/swapping capability to
5603 * repeat, re-order or omit fields.
5604 *
5605 * @see $wgStatsFormatString
5606 * @since 1.22
5607 *
5608 * @deprecated set $wgProfiler['udpformat'] instead
5609 */
5610 $wgUDPProfilerFormatString = null;
5611
5612 /**
5613 * Destination for wfIncrStats() data...
5614 * 'cache' to go into the system cache, if enabled (memcached)
5615 * 'udp' to be sent to the UDP profiler (see $wgUDPProfilerHost)
5616 * false to disable
5617 */
5618 $wgStatsMethod = 'cache';
5619
5620 /**
5621 * When $wgStatsMethod is 'udp', setting this to a string allows statistics to
5622 * be aggregated over more than one wiki. The string will be used in place of
5623 * the DB name in outgoing UDP packets. If this is set to false, the DB name
5624 * will be used.
5625 */
5626 $wgAggregateStatsID = false;
5627
5628 /**
5629 * When $wgStatsMethod is 'udp', this variable specifies how stats should be
5630 * formatted. Its value should be a format string suitable for a sprintf()
5631 * invocation with (id, count, key) arguments, where 'id' is either
5632 * $wgAggregateStatsID or the DB name, 'count' is the value by which the metric
5633 * is being incremented, and 'key' is the metric name.
5634 *
5635 * @see $wgUDPProfilerFormatString
5636 * @see $wgAggregateStatsID
5637 * @since 1.22
5638 */
5639 $wgStatsFormatString = "stats/%s - %s 1 1 1 1 %s\n";
5640
5641 /**
5642 * InfoAction retrieves a list of transclusion links (both to and from).
5643 * This number puts a limit on that query in the case of highly transcluded
5644 * templates.
5645 */
5646 $wgPageInfoTransclusionLimit = 50;
5647
5648 /**
5649 * Set this to an integer to only do synchronous site_stats updates
5650 * one every *this many* updates. The other requests go into pending
5651 * delta values in $wgMemc. Make sure that $wgMemc is a global cache.
5652 * If set to -1, updates *only* go to $wgMemc (useful for daemons).
5653 */
5654 $wgSiteStatsAsyncFactor = false;
5655
5656 /**
5657 * Parser test suite files to be run by parserTests.php when no specific
5658 * filename is passed to it.
5659 *
5660 * Extensions may add their own tests to this array, or site-local tests
5661 * may be added via LocalSettings.php
5662 *
5663 * Use full paths.
5664 */
5665 $wgParserTestFiles = array(
5666 "$IP/tests/parser/parserTests.txt",
5667 "$IP/tests/parser/extraParserTests.txt"
5668 );
5669
5670 /**
5671 * Allow running of javascript test suites via [[Special:JavaScriptTest]] (such as QUnit).
5672 */
5673 $wgEnableJavaScriptTest = false;
5674
5675 /**
5676 * Overwrite the caching key prefix with custom value.
5677 * @since 1.19
5678 */
5679 $wgCachePrefix = false;
5680
5681 /**
5682 * Display the new debugging toolbar. This also enables profiling on database
5683 * queries and other useful output.
5684 * Will disable file cache.
5685 *
5686 * @since 1.19
5687 */
5688 $wgDebugToolbar = false;
5689
5690 /** @} */ # end of profiling, testing and debugging }
5691
5692 /************************************************************************//**
5693 * @name Search
5694 * @{
5695 */
5696
5697 /**
5698 * Set this to true to disable the full text search feature.
5699 */
5700 $wgDisableTextSearch = false;
5701
5702 /**
5703 * Set to true to have nicer highlighted text in search results,
5704 * by default off due to execution overhead
5705 */
5706 $wgAdvancedSearchHighlighting = false;
5707
5708 /**
5709 * Regexp to match word boundaries, defaults for non-CJK languages
5710 * should be empty for CJK since the words are not separate
5711 */
5712 $wgSearchHighlightBoundaries = '[\p{Z}\p{P}\p{C}]';
5713
5714 /**
5715 * Template for OpenSearch suggestions, defaults to API action=opensearch
5716 *
5717 * Sites with heavy load would typically have these point to a custom
5718 * PHP wrapper to avoid firing up mediawiki for every keystroke
5719 *
5720 * Placeholders: {searchTerms}
5721 *
5722 * @deprecated since 1.25 Use $wgOpenSearchTemplates['application/x-suggestions+json'] instead
5723 */
5724 $wgOpenSearchTemplate = false;
5725
5726 /**
5727 * Templates for OpenSearch suggestions, defaults to API action=opensearch
5728 *
5729 * Sites with heavy load would typically have these point to a custom
5730 * PHP wrapper to avoid firing up mediawiki for every keystroke
5731 *
5732 * Placeholders: {searchTerms}
5733 */
5734 $wgOpenSearchTemplates = array(
5735 'application/x-suggestions+json' => false,
5736 'application/x-suggestions+xml' => false,
5737 );
5738
5739 /**
5740 * Enable OpenSearch suggestions requested by MediaWiki. Set this to
5741 * false if you've disabled scripts that use api?action=opensearch and
5742 * want reduce load caused by cached scripts still pulling suggestions.
5743 * It will let the API fallback by responding with an empty array.
5744 */
5745 $wgEnableOpenSearchSuggest = true;
5746
5747 /**
5748 * Integer defining default number of entries to show on
5749 * OpenSearch call.
5750 */
5751 $wgOpenSearchDefaultLimit = 10;
5752
5753 /**
5754 * Minimum length of extract in <Description>. Actual extracts will last until the end of sentence.
5755 */
5756 $wgOpenSearchDescriptionLength = 100;
5757
5758 /**
5759 * Expiry time for search suggestion responses
5760 */
5761 $wgSearchSuggestCacheExpiry = 1200;
5762
5763 /**
5764 * If you've disabled search semi-permanently, this also disables updates to the
5765 * table. If you ever re-enable, be sure to rebuild the search table.
5766 */
5767 $wgDisableSearchUpdate = false;
5768
5769 /**
5770 * List of namespaces which are searched by default.
5771 *
5772 * @par Example:
5773 * @code
5774 * $wgNamespacesToBeSearchedDefault[NS_MAIN] = true;
5775 * $wgNamespacesToBeSearchedDefault[NS_PROJECT] = true;
5776 * @endcode
5777 */
5778 $wgNamespacesToBeSearchedDefault = array(
5779 NS_MAIN => true,
5780 );
5781
5782 /**
5783 * Disable the internal MySQL-based search, to allow it to be
5784 * implemented by an extension instead.
5785 */
5786 $wgDisableInternalSearch = false;
5787
5788 /**
5789 * Set this to a URL to forward search requests to some external location.
5790 * If the URL includes '$1', this will be replaced with the URL-encoded
5791 * search term.
5792 *
5793 * @par Example:
5794 * To forward to Google you'd have something like:
5795 * @code
5796 * $wgSearchForwardUrl =
5797 * 'http://www.google.com/search?q=$1' .
5798 * '&domains=http://example.com' .
5799 * '&sitesearch=http://example.com' .
5800 * '&ie=utf-8&oe=utf-8';
5801 * @endcode
5802 */
5803 $wgSearchForwardUrl = null;
5804
5805 /**
5806 * Search form behavior.
5807 * - true = use Go & Search buttons
5808 * - false = use Go button & Advanced search link
5809 */
5810 $wgUseTwoButtonsSearchForm = true;
5811
5812 /**
5813 * Array of namespaces to generate a Google sitemap for when the
5814 * maintenance/generateSitemap.php script is run, or false if one is to be
5815 * generated for all namespaces.
5816 */
5817 $wgSitemapNamespaces = false;
5818
5819 /**
5820 * Custom namespace priorities for sitemaps. Setting this will allow you to
5821 * set custom priorities to namespaces when sitemaps are generated using the
5822 * maintenance/generateSitemap.php script.
5823 *
5824 * This should be a map of namespace IDs to priority
5825 * @par Example:
5826 * @code
5827 * $wgSitemapNamespacesPriorities = array(
5828 * NS_USER => '0.9',
5829 * NS_HELP => '0.0',
5830 * );
5831 * @endcode
5832 */
5833 $wgSitemapNamespacesPriorities = false;
5834
5835 /**
5836 * If true, searches for IP addresses will be redirected to that IP's
5837 * contributions page. E.g. searching for "1.2.3.4" will redirect to
5838 * [[Special:Contributions/1.2.3.4]]
5839 */
5840 $wgEnableSearchContributorsByIP = true;
5841
5842 /** @} */ # end of search settings
5843
5844 /************************************************************************//**
5845 * @name Edit user interface
5846 * @{
5847 */
5848
5849 /**
5850 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
5851 * fall back to the old behavior (no merging).
5852 */
5853 $wgDiff3 = '/usr/bin/diff3';
5854
5855 /**
5856 * Path to the GNU diff utility.
5857 */
5858 $wgDiff = '/usr/bin/diff';
5859
5860 /**
5861 * Which namespaces have special treatment where they should be preview-on-open
5862 * Internally only Category: pages apply, but using this extensions (e.g. Semantic MediaWiki)
5863 * can specify namespaces of pages they have special treatment for
5864 */
5865 $wgPreviewOnOpenNamespaces = array(
5866 NS_CATEGORY => true
5867 );
5868
5869 /**
5870 * Enable the UniversalEditButton for browsers that support it
5871 * (currently only Firefox with an extension)
5872 * See http://universaleditbutton.org for more background information
5873 */
5874 $wgUniversalEditButton = true;
5875
5876 /**
5877 * If user doesn't specify any edit summary when making a an edit, MediaWiki
5878 * will try to automatically create one. This feature can be disabled by set-
5879 * ting this variable false.
5880 */
5881 $wgUseAutomaticEditSummaries = true;
5882
5883 /** @} */ # end edit UI }
5884
5885 /************************************************************************//**
5886 * @name Maintenance
5887 * See also $wgSiteNotice
5888 * @{
5889 */
5890
5891 /**
5892 * @cond file_level_code
5893 * Set $wgCommandLineMode if it's not set already, to avoid notices
5894 */
5895 if ( !isset( $wgCommandLineMode ) ) {
5896 $wgCommandLineMode = false;
5897 }
5898 /** @endcond */
5899
5900 /**
5901 * For colorized maintenance script output, is your terminal background dark ?
5902 */
5903 $wgCommandLineDarkBg = false;
5904
5905 /**
5906 * Set this to a string to put the wiki into read-only mode. The text will be
5907 * used as an explanation to users.
5908 *
5909 * This prevents most write operations via the web interface. Cache updates may
5910 * still be possible. To prevent database writes completely, use the read_only
5911 * option in MySQL.
5912 */
5913 $wgReadOnly = null;
5914
5915 /**
5916 * If this lock file exists (size > 0), the wiki will be forced into read-only mode.
5917 * Its contents will be shown to users as part of the read-only warning
5918 * message.
5919 *
5920 * Will default to "{$wgUploadDirectory}/lock_yBgMBwiR" in Setup.php
5921 */
5922 $wgReadOnlyFile = false;
5923
5924 /**
5925 * When you run the web-based upgrade utility, it will tell you what to set
5926 * this to in order to authorize the upgrade process. It will subsequently be
5927 * used as a password, to authorize further upgrades.
5928 *
5929 * For security, do not set this to a guessable string. Use the value supplied
5930 * by the install/upgrade process. To cause the upgrader to generate a new key,
5931 * delete the old key from LocalSettings.php.
5932 */
5933 $wgUpgradeKey = false;
5934
5935 /**
5936 * Fully specified path to git binary
5937 */
5938 $wgGitBin = '/usr/bin/git';
5939
5940 /**
5941 * Map GIT repository URLs to viewer URLs to provide links in Special:Version
5942 *
5943 * Key is a pattern passed to preg_match() and preg_replace(),
5944 * without the delimiters (which are #) and must match the whole URL.
5945 * The value is the replacement for the key (it can contain $1, etc.)
5946 * %h will be replaced by the short SHA-1 (7 first chars) and %H by the
5947 * full SHA-1 of the HEAD revision.
5948 * %r will be replaced with a URL-encoded version of $1.
5949 *
5950 * @since 1.20
5951 */
5952 $wgGitRepositoryViewers = array(
5953 'https://(?:[a-z0-9_]+@)?gerrit.wikimedia.org/r/(?:p/)?(.*)' =>
5954 'https://git.wikimedia.org/tree/%r/%H',
5955 'ssh://(?:[a-z0-9_]+@)?gerrit.wikimedia.org:29418/(.*)' =>
5956 'https://git.wikimedia.org/tree/%r/%H',
5957 );
5958
5959 /** @} */ # End of maintenance }
5960
5961 /************************************************************************//**
5962 * @name Recent changes, new pages, watchlist and history
5963 * @{
5964 */
5965
5966 /**
5967 * Recentchanges items are periodically purged; entries older than this many
5968 * seconds will go.
5969 * Default: 90 days = about three months
5970 */
5971 $wgRCMaxAge = 90 * 24 * 3600;
5972
5973 /**
5974 * Filter $wgRCLinkDays by $wgRCMaxAge to avoid showing links for numbers
5975 * higher than what will be stored. Note that this is disabled by default
5976 * because we sometimes do have RC data which is beyond the limit for some
5977 * reason, and some users may use the high numbers to display that data which
5978 * is still there.
5979 */
5980 $wgRCFilterByAge = false;
5981
5982 /**
5983 * List of Limits options to list in the Special:Recentchanges and
5984 * Special:Recentchangeslinked pages.
5985 */
5986 $wgRCLinkLimits = array( 50, 100, 250, 500 );
5987
5988 /**
5989 * List of Days options to list in the Special:Recentchanges and
5990 * Special:Recentchangeslinked pages.
5991 */
5992 $wgRCLinkDays = array( 1, 3, 7, 14, 30 );
5993
5994 /**
5995 * Destinations to which notifications about recent changes
5996 * should be sent.
5997 *
5998 * As of MediaWiki 1.22, there are 2 supported 'engine' parameter option in core:
5999 * * 'UDPRCFeedEngine', which is used to send recent changes over UDP to the
6000 * specified server.
6001 * * 'RedisPubSubFeedEngine', which is used to send recent changes to Redis.
6002 *
6003 * The common options are:
6004 * * 'uri' -- the address to which the notices are to be sent.
6005 * * 'formatter' -- the class name (implementing RCFeedFormatter) which will
6006 * produce the text to send. This can also be an object of the class.
6007 * * 'omit_bots' -- whether the bot edits should be in the feed
6008 * * 'omit_anon' -- whether anonymous edits should be in the feed
6009 * * 'omit_user' -- whether edits by registered users should be in the feed
6010 * * 'omit_minor' -- whether minor edits should be in the feed
6011 * * 'omit_patrolled' -- whether patrolled edits should be in the feed
6012 *
6013 * The IRC-specific options are:
6014 * * 'add_interwiki_prefix' -- whether the titles should be prefixed with
6015 * the first entry in the $wgLocalInterwikis array (or the value of
6016 * $wgLocalInterwiki, if set)
6017 *
6018 * The JSON-specific options are:
6019 * * 'channel' -- if set, the 'channel' parameter is also set in JSON values.
6020 *
6021 * @example $wgRCFeeds['example'] = array(
6022 * 'formatter' => 'JSONRCFeedFormatter',
6023 * 'uri' => "udp://localhost:1336",
6024 * 'add_interwiki_prefix' => false,
6025 * 'omit_bots' => true,
6026 * );
6027 * @example $wgRCFeeds['exampleirc'] = array(
6028 * 'formatter' => 'IRCColourfulRCFeedFormatter',
6029 * 'uri' => "udp://localhost:1338",
6030 * 'add_interwiki_prefix' => false,
6031 * 'omit_bots' => true,
6032 * );
6033 * @since 1.22
6034 */
6035 $wgRCFeeds = array();
6036
6037 /**
6038 * Used by RecentChange::getEngine to find the correct engine to use for a given URI scheme.
6039 * Keys are scheme names, values are names of engine classes.
6040 */
6041 $wgRCEngines = array(
6042 'redis' => 'RedisPubSubFeedEngine',
6043 'udp' => 'UDPRCFeedEngine',
6044 );
6045
6046 /**
6047 * Use RC Patrolling to check for vandalism
6048 */
6049 $wgUseRCPatrol = true;
6050
6051 /**
6052 * Use new page patrolling to check new pages on Special:Newpages
6053 */
6054 $wgUseNPPatrol = true;
6055
6056 /**
6057 * Log autopatrol actions to the log table
6058 */
6059 $wgLogAutopatrol = true;
6060
6061 /**
6062 * Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages
6063 */
6064 $wgFeed = true;
6065
6066 /**
6067 * Set maximum number of results to return in syndication feeds (RSS, Atom) for
6068 * eg Recentchanges, Newpages.
6069 */
6070 $wgFeedLimit = 50;
6071
6072 /**
6073 * _Minimum_ timeout for cached Recentchanges feed, in seconds.
6074 * A cached version will continue to be served out even if changes
6075 * are made, until this many seconds runs out since the last render.
6076 *
6077 * If set to 0, feed caching is disabled. Use this for debugging only;
6078 * feed generation can be pretty slow with diffs.
6079 */
6080 $wgFeedCacheTimeout = 60;
6081
6082 /**
6083 * When generating Recentchanges RSS/Atom feed, diffs will not be generated for
6084 * pages larger than this size.
6085 */
6086 $wgFeedDiffCutoff = 32768;
6087
6088 /**
6089 * Override the site's default RSS/ATOM feed for recentchanges that appears on
6090 * every page. Some sites might have a different feed they'd like to promote
6091 * instead of the RC feed (maybe like a "Recent New Articles" or "Breaking news" one).
6092 * Should be a format as key (either 'rss' or 'atom') and an URL to the feed
6093 * as value.
6094 * @par Example:
6095 * Configure the 'atom' feed to http://example.com/somefeed.xml
6096 * @code
6097 * $wgSiteFeed['atom'] = "http://example.com/somefeed.xml";
6098 * @endcode
6099 */
6100 $wgOverrideSiteFeed = array();
6101
6102 /**
6103 * Available feeds objects.
6104 * Should probably only be defined when a page is syndicated ie when
6105 * $wgOut->isSyndicated() is true.
6106 */
6107 $wgFeedClasses = array(
6108 'rss' => 'RSSFeed',
6109 'atom' => 'AtomFeed',
6110 );
6111
6112 /**
6113 * Which feed types should we provide by default? This can include 'rss',
6114 * 'atom', neither, or both.
6115 */
6116 $wgAdvertisedFeedTypes = array( 'atom' );
6117
6118 /**
6119 * Show watching users in recent changes, watchlist and page history views
6120 */
6121 $wgRCShowWatchingUsers = false; # UPO
6122
6123 /**
6124 * Show the amount of changed characters in recent changes
6125 */
6126 $wgRCShowChangedSize = true;
6127
6128 /**
6129 * If the difference between the character counts of the text
6130 * before and after the edit is below that value, the value will be
6131 * highlighted on the RC page.
6132 */
6133 $wgRCChangedSizeThreshold = 500;
6134
6135 /**
6136 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
6137 * view for watched pages with new changes
6138 */
6139 $wgShowUpdatedMarker = true;
6140
6141 /**
6142 * Disable links to talk pages of anonymous users (IPs) in listings on special
6143 * pages like page history, Special:Recentchanges, etc.
6144 */
6145 $wgDisableAnonTalk = false;
6146
6147 /**
6148 * Enable filtering of categories in Recentchanges
6149 */
6150 $wgAllowCategorizedRecentChanges = false;
6151
6152 /**
6153 * Allow filtering by change tag in recentchanges, history, etc
6154 * Has no effect if no tags are defined in valid_tag.
6155 */
6156 $wgUseTagFilter = true;
6157
6158 /**
6159 * If set to an integer, pages that are watched by this many users or more
6160 * will not require the unwatchedpages permission to view the number of
6161 * watchers.
6162 *
6163 * @since 1.21
6164 */
6165 $wgUnwatchedPageThreshold = false;
6166
6167 /**
6168 * Flags (letter symbols) shown in recent changes and watchlist to indicate
6169 * certain types of edits.
6170 *
6171 * To register a new one:
6172 * @code
6173 * $wgRecentChangesFlags['flag'] => array(
6174 * // message for the letter displayed next to rows on changes lists
6175 * 'letter' => 'letter-msg',
6176 * // message for the tooltip of the letter
6177 * 'title' => 'tooltip-msg',
6178 * // optional (defaults to 'tooltip-msg'), message to use in the legend box
6179 * 'legend' => 'legend-msg',
6180 * // optional (defaults to 'flag'), CSS class to put on changes lists rows
6181 * 'class' => 'css-class',
6182 * );
6183 * @endcode
6184 *
6185 * @since 1.22
6186 */
6187 $wgRecentChangesFlags = array(
6188 'newpage' => array(
6189 'letter' => 'newpageletter',
6190 'title' => 'recentchanges-label-newpage',
6191 'legend' => 'recentchanges-legend-newpage',
6192 ),
6193 'minor' => array(
6194 'letter' => 'minoreditletter',
6195 'title' => 'recentchanges-label-minor',
6196 'legend' => 'recentchanges-legend-minor',
6197 'class' => 'minoredit',
6198 ),
6199 'bot' => array(
6200 'letter' => 'boteditletter',
6201 'title' => 'recentchanges-label-bot',
6202 'legend' => 'recentchanges-legend-bot',
6203 'class' => 'botedit',
6204 ),
6205 'unpatrolled' => array(
6206 'letter' => 'unpatrolledletter',
6207 'title' => 'recentchanges-label-unpatrolled',
6208 'legend' => 'recentchanges-legend-unpatrolled',
6209 ),
6210 );
6211
6212 /** @} */ # end RC/watchlist }
6213
6214 /************************************************************************//**
6215 * @name Copyright and credits settings
6216 * @{
6217 */
6218
6219 /**
6220 * Override for copyright metadata.
6221 *
6222 * This is the name of the page containing information about the wiki's copyright status,
6223 * which will be added as a link in the footer if it is specified. It overrides
6224 * $wgRightsUrl if both are specified.
6225 */
6226 $wgRightsPage = null;
6227
6228 /**
6229 * Set this to specify an external URL containing details about the content license used on your
6230 * wiki.
6231 * If $wgRightsPage is set then this setting is ignored.
6232 */
6233 $wgRightsUrl = null;
6234
6235 /**
6236 * If either $wgRightsUrl or $wgRightsPage is specified then this variable gives the text for the
6237 * link.
6238 * If using $wgRightsUrl then this value must be specified. If using $wgRightsPage then the name
6239 * of the page will also be used as the link if this variable is not set.
6240 */
6241 $wgRightsText = null;
6242
6243 /**
6244 * Override for copyright metadata.
6245 */
6246 $wgRightsIcon = null;
6247
6248 /**
6249 * Set this to some HTML to override the rights icon with an arbitrary logo
6250 * @deprecated since 1.18 Use $wgFooterIcons['copyright']['copyright']
6251 */
6252 $wgCopyrightIcon = null;
6253
6254 /**
6255 * Set this to true if you want detailed copyright information forms on Upload.
6256 */
6257 $wgUseCopyrightUpload = false;
6258
6259 /**
6260 * Set this to the number of authors that you want to be credited below an
6261 * article text. Set it to zero to hide the attribution block, and a negative
6262 * number (like -1) to show all authors. Note that this will require 2-3 extra
6263 * database hits, which can have a not insignificant impact on performance for
6264 * large wikis.
6265 */
6266 $wgMaxCredits = 0;
6267
6268 /**
6269 * If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
6270 * Otherwise, link to a separate credits page.
6271 */
6272 $wgShowCreditsIfMax = true;
6273
6274 /** @} */ # end of copyright and credits settings }
6275
6276 /************************************************************************//**
6277 * @name Import / Export
6278 * @{
6279 */
6280
6281 /**
6282 * List of interwiki prefixes for wikis we'll accept as sources for
6283 * Special:Import (for sysops). Since complete page history can be imported,
6284 * these should be 'trusted'.
6285 *
6286 * This can either be a regular array, or an associative map specifying
6287 * subprojects on the interwiki map of the target wiki, or a mix of the two,
6288 * e.g.
6289 * @code
6290 * $wgImportSources = array(
6291 * 'wikipedia' => array( 'cs', 'en', 'fr', 'zh' ),
6292 * 'wikispecies',
6293 * 'wikia' => array( 'animanga', 'brickipedia', 'desserts' ),
6294 * );
6295 * @endcode
6296 *
6297 * If a user has the 'import' permission but not the 'importupload' permission,
6298 * they will only be able to run imports through this transwiki interface.
6299 */
6300 $wgImportSources = array();
6301
6302 /**
6303 * Optional default target namespace for interwiki imports.
6304 * Can use this to create an incoming "transwiki"-style queue.
6305 * Set to numeric key, not the name.
6306 *
6307 * Users may override this in the Special:Import dialog.
6308 */
6309 $wgImportTargetNamespace = null;
6310
6311 /**
6312 * If set to false, disables the full-history option on Special:Export.
6313 * This is currently poorly optimized for long edit histories, so is
6314 * disabled on Wikimedia's sites.
6315 */
6316 $wgExportAllowHistory = true;
6317
6318 /**
6319 * If set nonzero, Special:Export requests for history of pages with
6320 * more revisions than this will be rejected. On some big sites things
6321 * could get bogged down by very very long pages.
6322 */
6323 $wgExportMaxHistory = 0;
6324
6325 /**
6326 * Return distinct author list (when not returning full history)
6327 */
6328 $wgExportAllowListContributors = false;
6329
6330 /**
6331 * If non-zero, Special:Export accepts a "pagelink-depth" parameter
6332 * up to this specified level, which will cause it to include all
6333 * pages linked to from the pages you specify. Since this number
6334 * can become *insanely large* and could easily break your wiki,
6335 * it's disabled by default for now.
6336 *
6337 * @warning There's a HARD CODED limit of 5 levels of recursion to prevent a
6338 * crazy-big export from being done by someone setting the depth number too
6339 * high. In other words, last resort safety net.
6340 */
6341 $wgExportMaxLinkDepth = 0;
6342
6343 /**
6344 * Whether to allow the "export all pages in namespace" option
6345 */
6346 $wgExportFromNamespaces = false;
6347
6348 /**
6349 * Whether to allow exporting the entire wiki into a single file
6350 */
6351 $wgExportAllowAll = false;
6352
6353 /** @} */ # end of import/export }
6354
6355 /*************************************************************************//**
6356 * @name Extensions
6357 * @{
6358 */
6359
6360 /**
6361 * A list of callback functions which are called once MediaWiki is fully
6362 * initialised
6363 */
6364 $wgExtensionFunctions = array();
6365
6366 /**
6367 * Extension messages files.
6368 *
6369 * Associative array mapping extension name to the filename where messages can be
6370 * found. The file should contain variable assignments. Any of the variables
6371 * present in languages/messages/MessagesEn.php may be defined, but $messages
6372 * is the most common.
6373 *
6374 * Variables defined in extensions will override conflicting variables defined
6375 * in the core.
6376 *
6377 * Since MediaWiki 1.23, use of this variable to define messages is discouraged; instead, store
6378 * messages in JSON format and use $wgMessagesDirs. For setting other variables than
6379 * $messages, $wgExtensionMessagesFiles should still be used. Use a DIFFERENT key because
6380 * any entry having a key that also exists in $wgMessagesDirs will be ignored.
6381 *
6382 * Extensions using the JSON message format can preserve backward compatibility with
6383 * earlier versions of MediaWiki by using a compatibility shim, such as one generated
6384 * by the generateJsonI18n.php maintenance script, listing it under the SAME key
6385 * as for the $wgMessagesDirs entry.
6386 *
6387 * @par Example:
6388 * @code
6389 * $wgExtensionMessagesFiles['ConfirmEdit'] = __DIR__.'/ConfirmEdit.i18n.php';
6390 * @endcode
6391 */
6392 $wgExtensionMessagesFiles = array();
6393
6394 /**
6395 * Extension messages directories.
6396 *
6397 * Associative array mapping extension name to the path of the directory where message files can
6398 * be found. The message files are expected to be JSON files named for their language code, e.g.
6399 * en.json, de.json, etc. Extensions with messages in multiple places may specify an array of
6400 * message directories.
6401 *
6402 * Message directories in core should be added to LocalisationCache::getMessagesDirs()
6403 *
6404 * @par Simple example:
6405 * @code
6406 * $wgMessagesDirs['Example'] = __DIR__ . '/i18n';
6407 * @endcode
6408 *
6409 * @par Complex example:
6410 * @code
6411 * $wgMessagesDirs['Example'] = array(
6412 * __DIR__ . '/lib/ve/i18n',
6413 * __DIR__ . '/lib/oojs-ui/i18n',
6414 * __DIR__ . '/i18n',
6415 * )
6416 * @endcode
6417 * @since 1.23
6418 */
6419 $wgMessagesDirs = array();
6420
6421 /**
6422 * Array of files with list(s) of extension entry points to be used in
6423 * maintenance/mergeMessageFileList.php
6424 * @since 1.22
6425 */
6426 $wgExtensionEntryPointListFiles = array();
6427
6428 /**
6429 * Parser output hooks.
6430 * This is an associative array where the key is an extension-defined tag
6431 * (typically the extension name), and the value is a PHP callback.
6432 * These will be called as an OutputPageParserOutput hook, if the relevant
6433 * tag has been registered with the parser output object.
6434 *
6435 * Registration is done with $pout->addOutputHook( $tag, $data ).
6436 *
6437 * The callback has the form:
6438 * @code
6439 * function outputHook( $outputPage, $parserOutput, $data ) { ... }
6440 * @endcode
6441 */
6442 $wgParserOutputHooks = array();
6443
6444 /**
6445 * Whether to include the NewPP limit report as a HTML comment
6446 */
6447 $wgEnableParserLimitReporting = true;
6448
6449 /**
6450 * List of valid skin names
6451 *
6452 * The key should be the name in all lower case, the value should be a properly
6453 * cased name for the skin. This value will be prefixed with "Skin" to create
6454 * the class name of the skin to load. Use Skin::getSkinNames() as an accessor
6455 * if you wish to have access to the full list.
6456 */
6457 $wgValidSkinNames = array();
6458
6459 /**
6460 * Special page list. This is an associative array mapping the (canonical) names of
6461 * special pages to either a class name to be instantiated, or a callback to use for
6462 * creating the special page object. In both cases, the result must be an instance of
6463 * SpecialPage.
6464 */
6465 $wgSpecialPages = array();
6466
6467 /**
6468 * Array mapping class names to filenames, for autoloading.
6469 */
6470 $wgAutoloadClasses = array();
6471
6472 /**
6473 * Switch controlling legacy case-insensitive classloading.
6474 * Do not disable if your wiki must support data created by PHP4, or by
6475 * MediaWiki 1.4 or earlier.
6476 */
6477 $wgAutoloadAttemptLowercase = true;
6478
6479 /**
6480 * An array of information about installed extensions keyed by their type.
6481 *
6482 * All but 'name', 'path' and 'author' can be omitted.
6483 *
6484 * @code
6485 * $wgExtensionCredits[$type][] = array(
6486 * 'path' => __FILE__,
6487 * 'name' => 'Example extension',
6488 * 'namemsg' => 'exampleextension-name',
6489 * 'author' => array(
6490 * 'Foo Barstein',
6491 * ),
6492 * 'version' => '1.9.0',
6493 * 'url' => 'http://example.org/example-extension/',
6494 * 'descriptionmsg' => 'exampleextension-desc',
6495 * 'license-name' => 'GPL-2.0+',
6496 * );
6497 * @endcode
6498 *
6499 * The extensions are listed on Special:Version. This page also looks for a file
6500 * named COPYING or LICENSE (optional .txt extension) and provides a link to
6501 * view said file. When the 'license-name' key is specified, this file is
6502 * interpreted as wikitext.
6503 *
6504 * - $type: One of 'specialpage', 'parserhook', 'variable', 'media', 'antispam',
6505 * 'skin', 'api', or 'other', or any additional types as specified through the
6506 * ExtensionTypes hook as used in SpecialVersion::getExtensionTypes().
6507 *
6508 * - name: Name of extension as an inline string instead of localizable message.
6509 * Do not omit this even if 'namemsg' is provided, as it is used to override
6510 * the path Special:Version uses to find extension's license info, and is
6511 * required for backwards-compatibility with MediaWiki 1.23 and older.
6512 *
6513 * - namemsg (since MW 1.24): A message key for a message containing the
6514 * extension's name, if the name is localizable. (For example, skin names
6515 * usually are.)
6516 *
6517 * - author: A string or an array of strings. Authors can be linked using
6518 * the regular wikitext link syntax. To have an internationalized version of
6519 * "and others" show, add an element "...". This element can also be linked,
6520 * for instance "[http://example ...]".
6521 *
6522 * - descriptionmsg: A message key or an an array with message key and parameters:
6523 * `'descriptionmsg' => 'exampleextension-desc',`
6524 *
6525 * - description: Description of extension as an inline string instead of
6526 * localizable message (omit in favour of 'descriptionmsg').
6527 *
6528 * - license-name: Short name of the license (used as label for the link), such
6529 * as "GPL-2.0+" or "MIT" (https://spdx.org/licenses/ for a list of identifiers).
6530 */
6531 $wgExtensionCredits = array();
6532
6533 /**
6534 * Authentication plugin.
6535 * @var $wgAuth AuthPlugin
6536 */
6537 $wgAuth = null;
6538
6539 /**
6540 * Global list of hooks.
6541 *
6542 * The key is one of the events made available by MediaWiki, you can find
6543 * a description for most of them in docs/hooks.txt. The array is used
6544 * internally by Hook:run().
6545 *
6546 * The value can be one of:
6547 *
6548 * - A function name:
6549 * @code
6550 * $wgHooks['event_name'][] = $function;
6551 * @endcode
6552 * - A function with some data:
6553 * @code
6554 * $wgHooks['event_name'][] = array( $function, $data );
6555 * @endcode
6556 * - A an object method:
6557 * @code
6558 * $wgHooks['event_name'][] = array( $object, 'method' );
6559 * @endcode
6560 * - A closure:
6561 * @code
6562 * $wgHooks['event_name'][] = function ( $hookParam ) {
6563 * // Handler code goes here.
6564 * };
6565 * @endcode
6566 *
6567 * @warning You should always append to an event array or you will end up
6568 * deleting a previous registered hook.
6569 *
6570 * @warning Hook handlers should be registered at file scope. Registering
6571 * handlers after file scope can lead to unexpected results due to caching.
6572 */
6573 $wgHooks = array();
6574
6575 /**
6576 * Maps jobs to their handling classes; extensions
6577 * can add to this to provide custom jobs
6578 */
6579 $wgJobClasses = array(
6580 'refreshLinks' => 'RefreshLinksJob',
6581 'htmlCacheUpdate' => 'HTMLCacheUpdateJob',
6582 'sendMail' => 'EmaillingJob',
6583 'enotifNotify' => 'EnotifNotifyJob',
6584 'fixDoubleRedirect' => 'DoubleRedirectJob',
6585 'uploadFromUrl' => 'UploadFromUrlJob',
6586 'AssembleUploadChunks' => 'AssembleUploadChunksJob',
6587 'PublishStashedFile' => 'PublishStashedFileJob',
6588 'ThumbnailRender' => 'ThumbnailRenderJob',
6589 'recentChangesUpdate' => 'RecentChangesUpdateJob',
6590 'refreshLinksPrioritized' => 'RefreshLinksJob', // for cascading protection
6591 'activityUpdateJob' => 'ActivityUpdateJob',
6592 'enqueue' => 'EnqueueJob', // local queue for multi-DC setups
6593 'null' => 'NullJob'
6594 );
6595
6596 /**
6597 * Jobs that must be explicitly requested, i.e. aren't run by job runners unless
6598 * special flags are set. The values here are keys of $wgJobClasses.
6599 *
6600 * These can be:
6601 * - Very long-running jobs.
6602 * - Jobs that you would never want to run as part of a page rendering request.
6603 * - Jobs that you want to run on specialized machines ( like transcoding, or a particular
6604 * machine on your cluster has 'outside' web access you could restrict uploadFromUrl )
6605 * These settings should be global to all wikis.
6606 */
6607 $wgJobTypesExcludedFromDefaultQueue = array( 'AssembleUploadChunks', 'PublishStashedFile' );
6608
6609 /**
6610 * Map of job types to how many job "work items" should be run per second
6611 * on each job runner process. The meaning of "work items" varies per job,
6612 * but typically would be something like "pages to update". A single job
6613 * may have a variable number of work items, as is the case with batch jobs.
6614 * This is used by runJobs.php and not jobs run via $wgJobRunRate.
6615 * These settings should be global to all wikis.
6616 * @var float[]
6617 */
6618 $wgJobBackoffThrottling = array();
6619
6620 /**
6621 * Make job runners commit changes for slave-lag prone jobs one job at a time.
6622 * This is useful if there are many job workers that race on slave lag checks.
6623 * If set, jobs taking this many seconds of DB write time have serialized commits.
6624 *
6625 * Note that affected jobs may have worse lock contention. Also, if they affect
6626 * several DBs at once they may have a smaller chance of being atomic due to the
6627 * possibility of connection loss while queueing up to commit. Affected jobs may
6628 * also fail due to the commit lock acquisition timeout.
6629 *
6630 * @var float|bool
6631 * @since 1.26
6632 */
6633 $wgJobSerialCommitThreshold = false;
6634
6635 /**
6636 * Map of job types to configuration arrays.
6637 * This determines which queue class and storage system is used for each job type.
6638 * Job types that do not have explicit configuration will use the 'default' config.
6639 * These settings should be global to all wikis.
6640 */
6641 $wgJobTypeConf = array(
6642 'default' => array( 'class' => 'JobQueueDB', 'order' => 'random' ),
6643 );
6644
6645 /**
6646 * Which aggregator to use for tracking which queues have jobs.
6647 * These settings should be global to all wikis.
6648 */
6649 $wgJobQueueAggregator = array(
6650 'class' => 'JobQueueAggregatorNull'
6651 );
6652
6653 /**
6654 * Additional functions to be performed with updateSpecialPages.
6655 * Expensive Querypages are already updated.
6656 */
6657 $wgSpecialPageCacheUpdates = array(
6658 'Statistics' => array( 'SiteStatsUpdate', 'cacheUpdate' )
6659 );
6660
6661 /**
6662 * Hooks that are used for outputting exceptions. Format is:
6663 * $wgExceptionHooks[] = $funcname
6664 * or:
6665 * $wgExceptionHooks[] = array( $class, $funcname )
6666 * Hooks should return strings or false
6667 */
6668 $wgExceptionHooks = array();
6669
6670 /**
6671 * Page property link table invalidation lists. When a page property
6672 * changes, this may require other link tables to be updated (eg
6673 * adding __HIDDENCAT__ means the hiddencat tracking category will
6674 * have been added, so the categorylinks table needs to be rebuilt).
6675 * This array can be added to by extensions.
6676 */
6677 $wgPagePropLinkInvalidations = array(
6678 'hiddencat' => 'categorylinks',
6679 );
6680
6681 /** @} */ # End extensions }
6682
6683 /*************************************************************************//**
6684 * @name Categories
6685 * @{
6686 */
6687
6688 /**
6689 * Use experimental, DMOZ-like category browser
6690 */
6691 $wgUseCategoryBrowser = false;
6692
6693 /**
6694 * On category pages, show thumbnail gallery for images belonging to that
6695 * category instead of listing them as articles.
6696 */
6697 $wgCategoryMagicGallery = true;
6698
6699 /**
6700 * Paging limit for categories
6701 */
6702 $wgCategoryPagingLimit = 200;
6703
6704 /**
6705 * Specify how category names should be sorted, when listed on a category page.
6706 * A sorting scheme is also known as a collation.
6707 *
6708 * Available values are:
6709 *
6710 * - uppercase: Converts the category name to upper case, and sorts by that.
6711 *
6712 * - identity: Does no conversion. Sorts by binary value of the string.
6713 *
6714 * - uca-default: Provides access to the Unicode Collation Algorithm with
6715 * the default element table. This is a compromise collation which sorts
6716 * all languages in a mediocre way. However, it is better than "uppercase".
6717 *
6718 * To use the uca-default collation, you must have PHP's intl extension
6719 * installed. See http://php.net/manual/en/intl.setup.php . The details of the
6720 * resulting collation will depend on the version of ICU installed on the
6721 * server.
6722 *
6723 * After you change this, you must run maintenance/updateCollation.php to fix
6724 * the sort keys in the database.
6725 *
6726 * Extensions can define there own collations by subclassing Collation
6727 * and using the Collation::factory hook.
6728 */
6729 $wgCategoryCollation = 'uppercase';
6730
6731 /** @} */ # End categories }
6732
6733 /*************************************************************************//**
6734 * @name Logging
6735 * @{
6736 */
6737
6738 /**
6739 * The logging system has two levels: an event type, which describes the
6740 * general category and can be viewed as a named subset of all logs; and
6741 * an action, which is a specific kind of event that can exist in that
6742 * log type.
6743 */
6744 $wgLogTypes = array(
6745 '',
6746 'block',
6747 'protect',
6748 'rights',
6749 'delete',
6750 'upload',
6751 'move',
6752 'import',
6753 'patrol',
6754 'merge',
6755 'suppress',
6756 'tag',
6757 'managetags',
6758 );
6759
6760 /**
6761 * This restricts log access to those who have a certain right
6762 * Users without this will not see it in the option menu and can not view it
6763 * Restricted logs are not added to recent changes
6764 * Logs should remain non-transcludable
6765 * Format: logtype => permissiontype
6766 */
6767 $wgLogRestrictions = array(
6768 'suppress' => 'suppressionlog'
6769 );
6770
6771 /**
6772 * Show/hide links on Special:Log will be shown for these log types.
6773 *
6774 * This is associative array of log type => boolean "hide by default"
6775 *
6776 * See $wgLogTypes for a list of available log types.
6777 *
6778 * @par Example:
6779 * @code
6780 * $wgFilterLogTypes = array(
6781 * 'move' => true,
6782 * 'import' => false,
6783 * );
6784 * @endcode
6785 *
6786 * Will display show/hide links for the move and import logs. Move logs will be
6787 * hidden by default unless the link is clicked. Import logs will be shown by
6788 * default, and hidden when the link is clicked.
6789 *
6790 * A message of the form log-show-hide-[type] should be added, and will be used
6791 * for the link text.
6792 */
6793 $wgFilterLogTypes = array(
6794 'patrol' => true,
6795 'tag' => true,
6796 );
6797
6798 /**
6799 * Lists the message key string for each log type. The localized messages
6800 * will be listed in the user interface.
6801 *
6802 * Extensions with custom log types may add to this array.
6803 *
6804 * @since 1.19, if you follow the naming convention log-name-TYPE,
6805 * where TYPE is your log type, yoy don't need to use this array.
6806 */
6807 $wgLogNames = array(
6808 '' => 'all-logs-page',
6809 'block' => 'blocklogpage',
6810 'protect' => 'protectlogpage',
6811 'rights' => 'rightslog',
6812 'delete' => 'dellogpage',
6813 'upload' => 'uploadlogpage',
6814 'move' => 'movelogpage',
6815 'import' => 'importlogpage',
6816 'patrol' => 'patrol-log-page',
6817 'merge' => 'mergelog',
6818 'suppress' => 'suppressionlog',
6819 );
6820
6821 /**
6822 * Lists the message key string for descriptive text to be shown at the
6823 * top of each log type.
6824 *
6825 * Extensions with custom log types may add to this array.
6826 *
6827 * @since 1.19, if you follow the naming convention log-description-TYPE,
6828 * where TYPE is your log type, yoy don't need to use this array.
6829 */
6830 $wgLogHeaders = array(
6831 '' => 'alllogstext',
6832 'block' => 'blocklogtext',
6833 'protect' => 'protectlogtext',
6834 'rights' => 'rightslogtext',
6835 'delete' => 'dellogpagetext',
6836 'upload' => 'uploadlogpagetext',
6837 'move' => 'movelogpagetext',
6838 'import' => 'importlogpagetext',
6839 'patrol' => 'patrol-log-header',
6840 'merge' => 'mergelogpagetext',
6841 'suppress' => 'suppressionlogtext',
6842 );
6843
6844 /**
6845 * Lists the message key string for formatting individual events of each
6846 * type and action when listed in the logs.
6847 *
6848 * Extensions with custom log types may add to this array.
6849 */
6850 $wgLogActions = array(
6851 'protect/protect' => 'protectedarticle',
6852 'protect/modify' => 'modifiedarticleprotection',
6853 'protect/unprotect' => 'unprotectedarticle',
6854 'protect/move_prot' => 'movedarticleprotection',
6855 );
6856
6857 /**
6858 * The same as above, but here values are names of classes,
6859 * not messages.
6860 * @see LogPage::actionText
6861 * @see LogFormatter
6862 */
6863 $wgLogActionsHandlers = array(
6864 'move/move' => 'MoveLogFormatter',
6865 'move/move_redir' => 'MoveLogFormatter',
6866 'delete/delete' => 'DeleteLogFormatter',
6867 'delete/restore' => 'DeleteLogFormatter',
6868 'delete/revision' => 'DeleteLogFormatter',
6869 'delete/event' => 'DeleteLogFormatter',
6870 'suppress/revision' => 'DeleteLogFormatter',
6871 'suppress/event' => 'DeleteLogFormatter',
6872 'suppress/delete' => 'DeleteLogFormatter',
6873 'patrol/patrol' => 'PatrolLogFormatter',
6874 'rights/rights' => 'RightsLogFormatter',
6875 'rights/autopromote' => 'RightsLogFormatter',
6876 'upload/upload' => 'UploadLogFormatter',
6877 'upload/overwrite' => 'UploadLogFormatter',
6878 'upload/revert' => 'UploadLogFormatter',
6879 'merge/merge' => 'MergeLogFormatter',
6880 'tag/update' => 'TagLogFormatter',
6881 'managetags/create' => 'LogFormatter',
6882 'managetags/delete' => 'LogFormatter',
6883 'managetags/activate' => 'LogFormatter',
6884 'managetags/deactivate' => 'LogFormatter',
6885 'block/block' => 'BlockLogFormatter',
6886 'block/unblock' => 'BlockLogFormatter',
6887 'block/reblock' => 'BlockLogFormatter',
6888 'suppress/block' => 'BlockLogFormatter',
6889 'suppress/reblock' => 'BlockLogFormatter',
6890 'import/upload' => 'LogFormatter',
6891 'import/interwiki' => 'LogFormatter',
6892 );
6893
6894 /**
6895 * Maintain a log of newusers at Log/newusers?
6896 */
6897 $wgNewUserLog = true;
6898
6899 /** @} */ # end logging }
6900
6901 /*************************************************************************//**
6902 * @name Special pages (general and miscellaneous)
6903 * @{
6904 */
6905
6906 /**
6907 * Allow special page inclusions such as {{Special:Allpages}}
6908 */
6909 $wgAllowSpecialInclusion = true;
6910
6911 /**
6912 * Set this to an array of special page names to prevent
6913 * maintenance/updateSpecialPages.php from updating those pages.
6914 */
6915 $wgDisableQueryPageUpdate = false;
6916
6917 /**
6918 * List of special pages, followed by what subtitle they should go under
6919 * at Special:SpecialPages
6920 *
6921 * @deprecated since 1.21 Override SpecialPage::getGroupName instead
6922 */
6923 $wgSpecialPageGroups = array();
6924
6925 /**
6926 * On Special:Unusedimages, consider images "used", if they are put
6927 * into a category. Default (false) is not to count those as used.
6928 */
6929 $wgCountCategorizedImagesAsUsed = false;
6930
6931 /**
6932 * Maximum number of links to a redirect page listed on
6933 * Special:Whatlinkshere/RedirectDestination
6934 */
6935 $wgMaxRedirectLinksRetrieved = 500;
6936
6937 /** @} */ # end special pages }
6938
6939 /*************************************************************************//**
6940 * @name Actions
6941 * @{
6942 */
6943
6944 /**
6945 * Array of allowed values for the "title=foo&action=<action>" parameter. Syntax is:
6946 * 'foo' => 'ClassName' Load the specified class which subclasses Action
6947 * 'foo' => true Load the class FooAction which subclasses Action
6948 * If something is specified in the getActionOverrides()
6949 * of the relevant Page object it will be used
6950 * instead of the default class.
6951 * 'foo' => false The action is disabled; show an error message
6952 * Unsetting core actions will probably cause things to complain loudly.
6953 */
6954 $wgActions = array(
6955 'credits' => true,
6956 'delete' => true,
6957 'edit' => true,
6958 'editchangetags' => 'SpecialPageAction',
6959 'history' => true,
6960 'info' => true,
6961 'markpatrolled' => true,
6962 'protect' => true,
6963 'purge' => true,
6964 'raw' => true,
6965 'render' => true,
6966 'revert' => true,
6967 'revisiondelete' => 'SpecialPageAction',
6968 'rollback' => true,
6969 'submit' => true,
6970 'unprotect' => true,
6971 'unwatch' => true,
6972 'view' => true,
6973 'watch' => true,
6974 );
6975
6976 /** @} */ # end actions }
6977
6978 /*************************************************************************//**
6979 * @name Robot (search engine crawler) policy
6980 * See also $wgNoFollowLinks.
6981 * @{
6982 */
6983
6984 /**
6985 * Default robot policy. The default policy is to encourage indexing and fol-
6986 * lowing of links. It may be overridden on a per-namespace and/or per-page
6987 * basis.
6988 */
6989 $wgDefaultRobotPolicy = 'index,follow';
6990
6991 /**
6992 * Robot policies per namespaces. The default policy is given above, the array
6993 * is made of namespace constants as defined in includes/Defines.php. You can-
6994 * not specify a different default policy for NS_SPECIAL: it is always noindex,
6995 * nofollow. This is because a number of special pages (e.g., ListPages) have
6996 * many permutations of options that display the same data under redundant
6997 * URLs, so search engine spiders risk getting lost in a maze of twisty special
6998 * pages, all alike, and never reaching your actual content.
6999 *
7000 * @par Example:
7001 * @code
7002 * $wgNamespaceRobotPolicies = array( NS_TALK => 'noindex' );
7003 * @endcode
7004 */
7005 $wgNamespaceRobotPolicies = array();
7006
7007 /**
7008 * Robot policies per article. These override the per-namespace robot policies.
7009 * Must be in the form of an array where the key part is a properly canonicalised
7010 * text form title and the value is a robot policy.
7011 *
7012 * @par Example:
7013 * @code
7014 * $wgArticleRobotPolicies = array(
7015 * 'Main Page' => 'noindex,follow',
7016 * 'User:Bob' => 'index,follow',
7017 * );
7018 * @endcode
7019 *
7020 * @par Example that DOES NOT WORK because the names are not canonical text
7021 * forms:
7022 * @code
7023 * $wgArticleRobotPolicies = array(
7024 * # Underscore, not space!
7025 * 'Main_Page' => 'noindex,follow',
7026 * # "Project", not the actual project name!
7027 * 'Project:X' => 'index,follow',
7028 * # Needs to be "Abc", not "abc" (unless $wgCapitalLinks is false for that namespace)!
7029 * 'abc' => 'noindex,nofollow'
7030 * );
7031 * @endcode
7032 */
7033 $wgArticleRobotPolicies = array();
7034
7035 /**
7036 * An array of namespace keys in which the __INDEX__/__NOINDEX__ magic words
7037 * will not function, so users can't decide whether pages in that namespace are
7038 * indexed by search engines. If set to null, default to $wgContentNamespaces.
7039 *
7040 * @par Example:
7041 * @code
7042 * $wgExemptFromUserRobotsControl = array( NS_MAIN, NS_TALK, NS_PROJECT );
7043 * @endcode
7044 */
7045 $wgExemptFromUserRobotsControl = null;
7046
7047 /** @} */ # End robot policy }
7048
7049 /************************************************************************//**
7050 * @name AJAX and API
7051 * Note: The AJAX entry point which this section refers to is gradually being
7052 * replaced by the API entry point, api.php. They are essentially equivalent.
7053 * Both of them are used for dynamic client-side features, via XHR.
7054 * @{
7055 */
7056
7057 /**
7058 * Enable the MediaWiki API for convenient access to
7059 * machine-readable data via api.php
7060 *
7061 * See https://www.mediawiki.org/wiki/API
7062 */
7063 $wgEnableAPI = true;
7064
7065 /**
7066 * Allow the API to be used to perform write operations
7067 * (page edits, rollback, etc.) when an authorised user
7068 * accesses it
7069 */
7070 $wgEnableWriteAPI = true;
7071
7072 /**
7073 *
7074 * WARNING: SECURITY THREAT - debug use only
7075 *
7076 * Disables many security checks in the API for debugging purposes.
7077 * This flag should never be used on the production servers, as it introduces
7078 * a number of potential security holes. Even when enabled, the validation
7079 * will still be performed, but instead of failing, API will return a warning.
7080 * Also, there will always be a warning notifying that this flag is set.
7081 * At this point, the flag allows GET requests to go through for modules
7082 * requiring POST.
7083 *
7084 * @since 1.21
7085 */
7086 $wgDebugAPI = false;
7087
7088 /**
7089 * API module extensions.
7090 *
7091 * Associative array mapping module name to modules specs;
7092 * Each module spec is an associative array containing at least
7093 * the 'class' key for the module's class, and optionally a
7094 * 'factory' key for the factory function to use for the module.
7095 *
7096 * That factory function will be called with two parameters,
7097 * the parent module (an instance of ApiBase, usually ApiMain)
7098 * and the name the module was registered under. The return
7099 * value must be an instance of the class given in the 'class'
7100 * field.
7101 *
7102 * For backward compatibility, the module spec may also be a
7103 * simple string containing the module's class name. In that
7104 * case, the class' constructor will be called with the parent
7105 * module and module name as parameters, as described above.
7106 *
7107 * Examples for registering API modules:
7108 *
7109 * @code
7110 * $wgAPIModules['foo'] = 'ApiFoo';
7111 * $wgAPIModules['bar'] = array(
7112 * 'class' => 'ApiBar',
7113 * 'factory' => function( $main, $name ) { ... }
7114 * );
7115 * $wgAPIModules['xyzzy'] = array(
7116 * 'class' => 'ApiXyzzy',
7117 * 'factory' => array( 'XyzzyFactory', 'newApiModule' )
7118 * );
7119 * @endcode
7120 *
7121 * Extension modules may override the core modules.
7122 * See ApiMain::$Modules for a list of the core modules.
7123 */
7124 $wgAPIModules = array();
7125
7126 /**
7127 * API format module extensions.
7128 * Associative array mapping format module name to module specs (see $wgAPIModules).
7129 * Extension modules may override the core modules.
7130 *
7131 * See ApiMain::$Formats for a list of the core format modules.
7132 */
7133 $wgAPIFormatModules = array();
7134
7135 /**
7136 * API Query meta module extensions.
7137 * Associative array mapping meta module name to module specs (see $wgAPIModules).
7138 * Extension modules may override the core modules.
7139 *
7140 * See ApiQuery::$QueryMetaModules for a list of the core meta modules.
7141 */
7142 $wgAPIMetaModules = array();
7143
7144 /**
7145 * API Query prop module extensions.
7146 * Associative array mapping prop module name to module specs (see $wgAPIModules).
7147 * Extension modules may override the core modules.
7148 *
7149 * See ApiQuery::$QueryPropModules for a list of the core prop modules.
7150 */
7151 $wgAPIPropModules = array();
7152
7153 /**
7154 * API Query list module extensions.
7155 * Associative array mapping list module name to module specs (see $wgAPIModules).
7156 * Extension modules may override the core modules.
7157 *
7158 * See ApiQuery::$QueryListModules for a list of the core list modules.
7159 */
7160 $wgAPIListModules = array();
7161
7162 /**
7163 * This variable is ignored. To add your module to the API, please add it to $wgAPI*Modules
7164 * @deprecated since 1.21
7165 */
7166 $wgAPIGeneratorModules = array();
7167
7168 /**
7169 * Maximum amount of rows to scan in a DB query in the API
7170 * The default value is generally fine
7171 */
7172 $wgAPIMaxDBRows = 5000;
7173
7174 /**
7175 * The maximum size (in bytes) of an API result.
7176 * @warning Do not set this lower than $wgMaxArticleSize*1024
7177 */
7178 $wgAPIMaxResultSize = 8388608;
7179
7180 /**
7181 * The maximum number of uncached diffs that can be retrieved in one API
7182 * request. Set this to 0 to disable API diffs altogether
7183 */
7184 $wgAPIMaxUncachedDiffs = 1;
7185
7186 /**
7187 * Log file or URL (TCP or UDP) to log API requests to, or false to disable
7188 * API request logging
7189 */
7190 $wgAPIRequestLog = false;
7191
7192 /**
7193 * Set the timeout for the API help text cache. If set to 0, caching disabled
7194 */
7195 $wgAPICacheHelpTimeout = 60 * 60;
7196
7197 /**
7198 * The ApiQueryQueryPages module should skip pages that are redundant to true
7199 * API queries.
7200 */
7201 $wgAPIUselessQueryPages = array(
7202 'MIMEsearch', // aiprop=mime
7203 'LinkSearch', // list=exturlusage
7204 'FileDuplicateSearch', // prop=duplicatefiles
7205 );
7206
7207 /**
7208 * Enable AJAX framework
7209 */
7210 $wgUseAjax = true;
7211
7212 /**
7213 * List of Ajax-callable functions.
7214 * Extensions acting as Ajax callbacks must register here
7215 */
7216 $wgAjaxExportList = array();
7217
7218 /**
7219 * Enable watching/unwatching pages using AJAX.
7220 * Requires $wgUseAjax to be true too.
7221 */
7222 $wgAjaxWatch = true;
7223
7224 /**
7225 * Enable AJAX check for file overwrite, pre-upload
7226 */
7227 $wgAjaxUploadDestCheck = true;
7228
7229 /**
7230 * Enable previewing licences via AJAX. Also requires $wgEnableAPI to be true.
7231 */
7232 $wgAjaxLicensePreview = true;
7233
7234 /**
7235 * Have clients send edits to be prepared when filling in edit summaries.
7236 * This gives the server a head start on the expensive parsing operation.
7237 */
7238 $wgAjaxEditStash = true;
7239
7240 /**
7241 * Settings for incoming cross-site AJAX requests:
7242 * Newer browsers support cross-site AJAX when the target resource allows requests
7243 * from the origin domain by the Access-Control-Allow-Origin header.
7244 * This is currently only used by the API (requests to api.php)
7245 * $wgCrossSiteAJAXdomains can be set using a wildcard syntax:
7246 *
7247 * - '*' matches any number of characters
7248 * - '?' matches any 1 character
7249 *
7250 * @par Example:
7251 * @code
7252 * $wgCrossSiteAJAXdomains = array(
7253 * 'www.mediawiki.org',
7254 * '*.wikipedia.org',
7255 * '*.wikimedia.org',
7256 * '*.wiktionary.org',
7257 * );
7258 * @endcode
7259 */
7260 $wgCrossSiteAJAXdomains = array();
7261
7262 /**
7263 * Domains that should not be allowed to make AJAX requests,
7264 * even if they match one of the domains allowed by $wgCrossSiteAJAXdomains
7265 * Uses the same syntax as $wgCrossSiteAJAXdomains
7266 */
7267 $wgCrossSiteAJAXdomainExceptions = array();
7268
7269 /** @} */ # End AJAX and API }
7270
7271 /************************************************************************//**
7272 * @name Shell and process control
7273 * @{
7274 */
7275
7276 /**
7277 * Maximum amount of virtual memory available to shell processes under linux, in KB.
7278 */
7279 $wgMaxShellMemory = 307200;
7280
7281 /**
7282 * Maximum file size created by shell processes under linux, in KB
7283 * ImageMagick convert for example can be fairly hungry for scratch space
7284 */
7285 $wgMaxShellFileSize = 102400;
7286
7287 /**
7288 * Maximum CPU time in seconds for shell processes under Linux
7289 */
7290 $wgMaxShellTime = 180;
7291
7292 /**
7293 * Maximum wall clock time (i.e. real time, of the kind the clock on the wall
7294 * would measure) in seconds for shell processes under Linux
7295 */
7296 $wgMaxShellWallClockTime = 180;
7297
7298 /**
7299 * Under Linux: a cgroup directory used to constrain memory usage of shell
7300 * commands. The directory must be writable by the user which runs MediaWiki.
7301 *
7302 * If specified, this is used instead of ulimit, which is inaccurate, and
7303 * causes malloc() to return NULL, which exposes bugs in C applications, making
7304 * them segfault or deadlock.
7305 *
7306 * A wrapper script will create a cgroup for each shell command that runs, as
7307 * a subgroup of the specified cgroup. If the memory limit is exceeded, the
7308 * kernel will send a SIGKILL signal to a process in the subgroup.
7309 *
7310 * @par Example:
7311 * @code
7312 * mkdir -p /sys/fs/cgroup/memory/mediawiki
7313 * mkdir -m 0777 /sys/fs/cgroup/memory/mediawiki/job
7314 * echo '$wgShellCgroup = "/sys/fs/cgroup/memory/mediawiki/job";' >> LocalSettings.php
7315 * @endcode
7316 *
7317 * The reliability of cgroup cleanup can be improved by installing a
7318 * notify_on_release script in the root cgroup, see e.g.
7319 * https://gerrit.wikimedia.org/r/#/c/40784
7320 */
7321 $wgShellCgroup = false;
7322
7323 /**
7324 * Executable path of the PHP cli binary (php/php5). Should be set up on install.
7325 */
7326 $wgPhpCli = '/usr/bin/php';
7327
7328 /**
7329 * Locale for LC_CTYPE, to work around http://bugs.php.net/bug.php?id=45132
7330 * For Unix-like operating systems, set this to to a locale that has a UTF-8
7331 * character set. Only the character set is relevant.
7332 */
7333 $wgShellLocale = 'en_US.utf8';
7334
7335 /** @} */ # End shell }
7336
7337 /************************************************************************//**
7338 * @name HTTP client
7339 * @{
7340 */
7341
7342 /**
7343 * Timeout for HTTP requests done internally, in seconds.
7344 */
7345 $wgHTTPTimeout = 25;
7346
7347 /**
7348 * Timeout for Asynchronous (background) HTTP requests, in seconds.
7349 */
7350 $wgAsyncHTTPTimeout = 25;
7351
7352 /**
7353 * Proxy to use for CURL requests.
7354 */
7355 $wgHTTPProxy = false;
7356
7357 /**
7358 * Local virtual hosts.
7359 *
7360 * This lists domains that are configured as virtual hosts on the same machine.
7361 * If a request is to be made to a domain listed here, or any subdomain thereof,
7362 * then no proxy will be used.
7363 * Command-line scripts are not affected by this setting and will always use
7364 * proxy if it is configured.
7365 * @since 1.25
7366 */
7367 $wgLocalVirtualHosts = array();
7368
7369 /**
7370 * Timeout for connections done internally (in seconds)
7371 * Only works for curl
7372 */
7373 $wgHTTPConnectTimeout = 5e0;
7374
7375 /** @} */ # End HTTP client }
7376
7377 /************************************************************************//**
7378 * @name Job queue
7379 * See also $wgEnotifUseJobQ.
7380 * @{
7381 */
7382
7383 /**
7384 * Number of jobs to perform per request. May be less than one in which case
7385 * jobs are performed probabalistically. If this is zero, jobs will not be done
7386 * during ordinary apache requests. In this case, maintenance/runJobs.php should
7387 * be run periodically.
7388 */
7389 $wgJobRunRate = 1;
7390
7391 /**
7392 * When $wgJobRunRate > 0, try to run jobs asynchronously, spawning a new process
7393 * to handle the job execution, instead of blocking the request until the job
7394 * execution finishes.
7395 * @since 1.23
7396 */
7397 $wgRunJobsAsync = true;
7398
7399 /**
7400 * Number of rows to update per job
7401 */
7402 $wgUpdateRowsPerJob = 500;
7403
7404 /**
7405 * Number of rows to update per query
7406 */
7407 $wgUpdateRowsPerQuery = 100;
7408
7409 /** @} */ # End job queue }
7410
7411 /************************************************************************//**
7412 * @name Miscellaneous
7413 * @{
7414 */
7415
7416 /**
7417 * Name of the external diff engine to use
7418 */
7419 $wgExternalDiffEngine = false;
7420
7421 /**
7422 * Disable redirects to special pages and interwiki redirects, which use a 302
7423 * and have no "redirected from" link.
7424 *
7425 * @note This is only for articles with #REDIRECT in them. URL's containing a
7426 * local interwiki prefix (or a non-canonical special page name) are still hard
7427 * redirected regardless of this setting.
7428 */
7429 $wgDisableHardRedirects = false;
7430
7431 /**
7432 * LinkHolderArray batch size
7433 * For debugging
7434 */
7435 $wgLinkHolderBatchSize = 1000;
7436
7437 /**
7438 * By default MediaWiki does not register links pointing to same server in
7439 * externallinks dataset, use this value to override:
7440 */
7441 $wgRegisterInternalExternals = false;
7442
7443 /**
7444 * Maximum number of pages to move at once when moving subpages with a page.
7445 */
7446 $wgMaximumMovedPages = 100;
7447
7448 /**
7449 * Fix double redirects after a page move.
7450 * Tends to conflict with page move vandalism, use only on a private wiki.
7451 */
7452 $wgFixDoubleRedirects = false;
7453
7454 /**
7455 * Allow redirection to another page when a user logs in.
7456 * To enable, set to a string like 'Main Page'
7457 */
7458 $wgRedirectOnLogin = null;
7459
7460 /**
7461 * Configuration for processing pool control, for use in high-traffic wikis.
7462 * An implementation is provided in the PoolCounter extension.
7463 *
7464 * This configuration array maps pool types to an associative array. The only
7465 * defined key in the associative array is "class", which gives the class name.
7466 * The remaining elements are passed through to the class as constructor
7467 * parameters.
7468 *
7469 * @par Example:
7470 * @code
7471 * $wgPoolCounterConf = array( 'ArticleView' => array(
7472 * 'class' => 'PoolCounter_Client',
7473 * 'timeout' => 15, // wait timeout in seconds
7474 * 'workers' => 5, // maximum number of active threads in each pool
7475 * 'maxqueue' => 50, // maximum number of total threads in each pool
7476 * ... any extension-specific options...
7477 * );
7478 * @endcode
7479 */
7480 $wgPoolCounterConf = null;
7481
7482 /**
7483 * To disable file delete/restore temporarily
7484 */
7485 $wgUploadMaintenance = false;
7486
7487 /**
7488 * Associative array mapping namespace IDs to the name of the content model pages in that namespace
7489 * should have by default (use the CONTENT_MODEL_XXX constants). If no special content type is
7490 * defined for a given namespace, pages in that namespace will use the CONTENT_MODEL_WIKITEXT
7491 * (except for the special case of JS and CS pages).
7492 *
7493 * @since 1.21
7494 */
7495 $wgNamespaceContentModels = array();
7496
7497 /**
7498 * How to react if a plain text version of a non-text Content object is requested using
7499 * ContentHandler::getContentText():
7500 *
7501 * * 'ignore': return null
7502 * * 'fail': throw an MWException
7503 * * 'serialize': serialize to default format
7504 *
7505 * @since 1.21
7506 */
7507 $wgContentHandlerTextFallback = 'ignore';
7508
7509 /**
7510 * Set to false to disable use of the database fields introduced by the ContentHandler facility.
7511 * This way, the ContentHandler facility can be used without any additional information in the
7512 * database. A page's content model is then derived solely from the page's title. This however
7513 * means that changing a page's default model (e.g. using $wgNamespaceContentModels) will break
7514 * the page and/or make the content inaccessible. This also means that pages can not be moved to
7515 * a title that would default to a different content model.
7516 *
7517 * Overall, with $wgContentHandlerUseDB = false, no database updates are needed, but content
7518 * handling is less robust and less flexible.
7519 *
7520 * @since 1.21
7521 */
7522 $wgContentHandlerUseDB = true;
7523
7524 /**
7525 * Determines which types of text are parsed as wikitext. This does not imply that these kinds
7526 * of texts are also rendered as wikitext, it only means that links, magic words, etc will have
7527 * the effect on the database they would have on a wikitext page.
7528 *
7529 * @todo On the long run, it would be nice to put categories etc into a separate structure,
7530 * or at least parse only the contents of comments in the scripts.
7531 *
7532 * @since 1.21
7533 */
7534 $wgTextModelsToParse = array(
7535 CONTENT_MODEL_WIKITEXT, // Just for completeness, wikitext will always be parsed.
7536 CONTENT_MODEL_JAVASCRIPT, // Make categories etc work, people put them into comments.
7537 CONTENT_MODEL_CSS, // Make categories etc work, people put them into comments.
7538 );
7539
7540 /**
7541 * Whether the user must enter their password to change their e-mail address
7542 *
7543 * @since 1.20
7544 */
7545 $wgRequirePasswordforEmailChange = true;
7546
7547 /**
7548 * Register handlers for specific types of sites.
7549 *
7550 * @since 1.20
7551 */
7552 $wgSiteTypes = array(
7553 'mediawiki' => 'MediaWikiSite',
7554 );
7555
7556 /**
7557 * Whether the page_props table has a pp_sortkey column. Set to false in case
7558 * the respective database schema change was not applied.
7559 * @since 1.23
7560 */
7561 $wgPagePropsHaveSortkey = true;
7562
7563 /**
7564 * Port where you have HTTPS running
7565 * Supports HTTPS on non-standard ports
7566 * @see bug 65184
7567 * @since 1.24
7568 */
7569 $wgHttpsPort = 443;
7570
7571 /**
7572 * Secret for hmac-based key derivation function (fast,
7573 * cryptographically secure random numbers).
7574 * This should be set in LocalSettings.php, otherwise wgSecretKey will
7575 * be used.
7576 * See also: $wgHKDFAlgorithm
7577 * @since 1.24
7578 */
7579 $wgHKDFSecret = false;
7580
7581 /**
7582 * Algorithm for hmac-based key derivation function (fast,
7583 * cryptographically secure random numbers).
7584 * See also: $wgHKDFSecret
7585 * @since 1.24
7586 */
7587 $wgHKDFAlgorithm = 'sha256';
7588
7589 /**
7590 * Enable page language feature
7591 * Allows setting page language in database
7592 * @var bool
7593 * @since 1.24
7594 */
7595 $wgPageLanguageUseDB = false;
7596
7597 /**
7598 * Enable use of the *_namespace fields of the pagelinks, redirect, and templatelinks tables.
7599 * Set this only if the fields are fully populated. This may be removed in 1.25.
7600 * @var bool
7601 * @since 1.24
7602 */
7603 $wgUseLinkNamespaceDBFields = true;
7604
7605 /**
7606 * Global configuration variable for Virtual REST Services.
7607 * Parameters for different services are to be declared inside
7608 * $wgVirtualRestConfig['modules'], which is to be treated as an associative
7609 * array. Global parameters will be merged with service-specific ones. The
7610 * result will then be passed to VirtualRESTService::__construct() in the
7611 * module.
7612 *
7613 * Example config for Parsoid:
7614 *
7615 * $wgVirtualRestConfig['modules']['parsoid'] = array(
7616 * 'url' => 'http://localhost:8000',
7617 * 'prefix' => 'enwiki',
7618 * );
7619 *
7620 * @var array
7621 * @since 1.25
7622 */
7623 $wgVirtualRestConfig = array(
7624 'modules' => array(),
7625 'global' => array(
7626 # Timeout in seconds
7627 'timeout' => 360,
7628 'forwardCookies' => false,
7629 'HTTPProxy' => null
7630 )
7631 );
7632
7633 /**
7634 * For really cool vim folding this needs to be at the end:
7635 * vim: foldmarker=@{,@} foldmethod=marker
7636 * @}
7637 */