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