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