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