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