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