* Added $wgDisableTitleConversion to disabling the conversion for all pages on the...
[lhc/web/wiklou.git] / includes / DefaultSettings.php
1 <?php
2 /**
3 *
4 * NEVER EDIT THIS FILE
5 *
6 *
7 * To customize your installation, edit "LocalSettings.php". If you make
8 * changes here, they will be lost on next upgrade of MediaWiki!
9 *
10 * Note that since all these string interpolations are expanded
11 * before LocalSettings is included, if you localize something
12 * like $wgScriptPath, you must also localize everything that
13 * depends on it.
14 *
15 * Documentation is in the source and on:
16 * http://www.mediawiki.org/wiki/Manual:Configuration_settings
17 *
18 */
19
20 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
21 if( !defined( 'MEDIAWIKI' ) ) {
22 echo "This file is part of MediaWiki and is not a valid entry point\n";
23 die( 1 );
24 }
25
26 /**
27 * Create a site configuration object
28 * Not used for much in a default install
29 */
30 require_once( "$IP/includes/SiteConfiguration.php" );
31 $wgConf = new SiteConfiguration;
32
33 /** MediaWiki version number */
34 $wgVersion = '1.14alpha';
35
36 /** Name of the site. It must be changed in LocalSettings.php */
37 $wgSitename = 'MediaWiki';
38
39 /**
40 * Name of the project namespace. If left set to false, $wgSitename will be
41 * used instead.
42 */
43 $wgMetaNamespace = false;
44
45 /**
46 * Name of the project talk namespace.
47 *
48 * Normally you can ignore this and it will be something like
49 * $wgMetaNamespace . "_talk". In some languages, you may want to set this
50 * manually for grammatical reasons. It is currently only respected by those
51 * languages where it might be relevant and where no automatic grammar converter
52 * exists.
53 */
54 $wgMetaNamespaceTalk = false;
55
56
57 /** URL of the server. It will be automatically built including https mode */
58 $wgServer = '';
59
60 if( isset( $_SERVER['SERVER_NAME'] ) ) {
61 $wgServerName = $_SERVER['SERVER_NAME'];
62 } elseif( isset( $_SERVER['HOSTNAME'] ) ) {
63 $wgServerName = $_SERVER['HOSTNAME'];
64 } elseif( isset( $_SERVER['HTTP_HOST'] ) ) {
65 $wgServerName = $_SERVER['HTTP_HOST'];
66 } elseif( isset( $_SERVER['SERVER_ADDR'] ) ) {
67 $wgServerName = $_SERVER['SERVER_ADDR'];
68 } else {
69 $wgServerName = 'localhost';
70 }
71
72 # check if server use https:
73 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
74
75 $wgServer = $wgProto.'://' . $wgServerName;
76 # If the port is a non-standard one, add it to the URL
77 if( isset( $_SERVER['SERVER_PORT'] )
78 && !strpos( $wgServerName, ':' )
79 && ( ( $wgProto == 'http' && $_SERVER['SERVER_PORT'] != 80 )
80 || ( $wgProto == 'https' && $_SERVER['SERVER_PORT'] != 443 ) ) ) {
81
82 $wgServer .= ":" . $_SERVER['SERVER_PORT'];
83 }
84
85
86 /**
87 * The path we should point to.
88 * It might be a virtual path in case with use apache mod_rewrite for example
89 *
90 * This *needs* to be set correctly.
91 *
92 * Other paths will be set to defaults based on it unless they are directly
93 * set in LocalSettings.php
94 */
95 $wgScriptPath = '/wiki';
96
97 /**
98 * Whether to support URLs like index.php/Page_title These often break when PHP
99 * is set up in CGI mode. PATH_INFO *may* be correct if cgi.fix_pathinfo is set,
100 * but then again it may not; lighttpd converts incoming path data to lowercase
101 * on systems with case-insensitive filesystems, and there have been reports of
102 * problems on Apache as well.
103 *
104 * To be safe we'll continue to keep it off by default.
105 *
106 * Override this to false if $_SERVER['PATH_INFO'] contains unexpectedly
107 * incorrect garbage, or to true if it is really correct.
108 *
109 * The default $wgArticlePath will be set based on this value at runtime, but if
110 * you have customized it, having this incorrectly set to true can cause
111 * redirect loops when "pretty URLs" are used.
112 */
113 $wgUsePathInfo =
114 ( strpos( php_sapi_name(), 'cgi' ) === false ) &&
115 ( strpos( php_sapi_name(), 'apache2filter' ) === false ) &&
116 ( strpos( php_sapi_name(), 'isapi' ) === false );
117
118
119 /**@{
120 * Script users will request to get articles
121 * ATTN: Old installations used wiki.phtml and redirect.phtml - make sure that
122 * LocalSettings.php is correctly set!
123 *
124 * Will be set based on $wgScriptPath in Setup.php if not overridden in
125 * LocalSettings.php. Generally you should not need to change this unless you
126 * don't like seeing "index.php".
127 */
128 $wgScriptExtension = '.php'; ///< extension to append to script names by default
129 $wgScript = false; ///< defaults to "{$wgScriptPath}/index{$wgScriptExtension}"
130 $wgRedirectScript = false; ///< defaults to "{$wgScriptPath}/redirect{$wgScriptExtension}"
131 /**@}*/
132
133
134 /**@{
135 * These various web and file path variables are set to their defaults
136 * in Setup.php if they are not explicitly set from LocalSettings.php.
137 * If you do override them, be sure to set them all!
138 *
139 * These will relatively rarely need to be set manually, unless you are
140 * splitting style sheets or images outside the main document root.
141 */
142 /**
143 * style path as seen by users
144 */
145 $wgStylePath = false; ///< defaults to "{$wgScriptPath}/skins"
146 /**
147 * filesystem stylesheets directory
148 */
149 $wgStyleDirectory = false; ///< defaults to "{$IP}/skins"
150 $wgStyleSheetPath = &$wgStylePath;
151 $wgArticlePath = false; ///< default to "{$wgScript}/$1" or "{$wgScript}?title=$1", depending on $wgUsePathInfo
152 $wgVariantArticlePath = false;
153 $wgUploadPath = false; ///< defaults to "{$wgScriptPath}/images"
154 $wgUploadDirectory = false; ///< defaults to "{$IP}/images"
155 $wgHashedUploadDirectory = true;
156 $wgLogo = false; ///< defaults to "{$wgStylePath}/common/images/wiki.png"
157 $wgFavicon = '/favicon.ico';
158 $wgAppleTouchIcon = false; ///< This one'll actually default to off. For iPhone and iPod Touch web app bookmarks
159 $wgMathPath = false; ///< defaults to "{$wgUploadPath}/math"
160 $wgMathDirectory = false; ///< defaults to "{$wgUploadDirectory}/math"
161 $wgTmpDirectory = false; ///< defaults to "{$wgUploadDirectory}/tmp"
162 $wgUploadBaseUrl = "";
163 /**@}*/
164
165 /**
166 * Default value for chmoding of new directories.
167 */
168 $wgDirectoryMode = 0777;
169
170 /**
171 * New file storage paths; currently used only for deleted files.
172 * Set it like this:
173 *
174 * $wgFileStore['deleted']['directory'] = '/var/wiki/private/deleted';
175 *
176 */
177 $wgFileStore = array();
178 $wgFileStore['deleted']['directory'] = false;///< Defaults to $wgUploadDirectory/deleted
179 $wgFileStore['deleted']['url'] = null; ///< Private
180 $wgFileStore['deleted']['hash'] = 3; ///< 3-level subdirectory split
181
182 /**@{
183 * File repository structures
184 *
185 * $wgLocalFileRepo is a single repository structure, and $wgForeignFileRepo is
186 * a an array of such structures. Each repository structure is an associative
187 * array of properties configuring the repository.
188 *
189 * Properties required for all repos:
190 * class The class name for the repository. May come from the core or an extension.
191 * The core repository classes are LocalRepo, ForeignDBRepo, FSRepo.
192 *
193 * name A unique name for the repository.
194 *
195 * For all core repos:
196 * url Base public URL
197 * hashLevels The number of directory levels for hash-based division of files
198 * thumbScriptUrl The URL for thumb.php (optional, not recommended)
199 * transformVia404 Whether to skip media file transformation on parse and rely on a 404
200 * handler instead.
201 * initialCapital Equivalent to $wgCapitalLinks, determines whether filenames implicitly
202 * start with a capital letter. The current implementation may give incorrect
203 * description page links when the local $wgCapitalLinks and initialCapital
204 * are mismatched.
205 * pathDisclosureProtection
206 * May be 'paranoid' to remove all parameters from error messages, 'none' to
207 * leave the paths in unchanged, or 'simple' to replace paths with
208 * placeholders. Default for LocalRepo is 'simple'.
209 *
210 * These settings describe a foreign MediaWiki installation. They are optional, and will be ignored
211 * for local repositories:
212 * descBaseUrl URL of image description pages, e.g. http://en.wikipedia.org/wiki/Image:
213 * scriptDirUrl URL of the MediaWiki installation, equivalent to $wgScriptPath, e.g.
214 * http://en.wikipedia.org/w
215 *
216 * articleUrl Equivalent to $wgArticlePath, e.g. http://en.wikipedia.org/wiki/$1
217 * fetchDescription Fetch the text of the remote file description page. Equivalent to
218 * $wgFetchCommonsDescriptions.
219 *
220 * ForeignDBRepo:
221 * dbType, dbServer, dbUser, dbPassword, dbName, dbFlags
222 * equivalent to the corresponding member of $wgDBservers
223 * tablePrefix Table prefix, the foreign wiki's $wgDBprefix
224 * hasSharedCache True if the wiki's shared cache is accessible via the local $wgMemc
225 *
226 * The default is to initialise these arrays from the MW<1.11 backwards compatible settings:
227 * $wgUploadPath, $wgThumbnailScriptPath, $wgSharedUploadDirectory, etc.
228 */
229 $wgLocalFileRepo = false;
230 $wgForeignFileRepos = array();
231 /**@}*/
232
233 /**
234 * Allowed title characters -- regex character class
235 * Don't change this unless you know what you're doing
236 *
237 * Problematic punctuation:
238 * []{}|# Are needed for link syntax, never enable these
239 * <> Causes problems with HTML escaping, don't use
240 * % Enabled by default, minor problems with path to query rewrite rules, see below
241 * + Enabled by default, but doesn't work with path to query rewrite rules, corrupted by apache
242 * ? Enabled by default, but doesn't work with path to PATH_INFO rewrites
243 *
244 * All three of these punctuation problems can be avoided by using an alias, instead of a
245 * rewrite rule of either variety.
246 *
247 * The problem with % is that when using a path to query rewrite rule, URLs are
248 * double-unescaped: once by Apache's path conversion code, and again by PHP. So
249 * %253F, for example, becomes "?". Our code does not double-escape to compensate
250 * for this, indeed double escaping would break if the double-escaped title was
251 * passed in the query string rather than the path. This is a minor security issue
252 * because articles can be created such that they are hard to view or edit.
253 *
254 * In some rare cases you may wish to remove + for compatibility with old links.
255 *
256 * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
257 * this breaks interlanguage links
258 */
259 $wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF+";
260
261
262 /**
263 * The external URL protocols
264 */
265 $wgUrlProtocols = array(
266 'http://',
267 'https://',
268 'ftp://',
269 'irc://',
270 'gopher://',
271 'telnet://', // Well if we're going to support the above.. -ævar
272 'nntp://', // @bug 3808 RFC 1738
273 'worldwind://',
274 'mailto:',
275 'news:'
276 );
277
278 /** internal name of virus scanner. This servers as a key to the $wgAntivirusSetup array.
279 * Set this to NULL to disable virus scanning. If not null, every file uploaded will be scanned for viruses.
280 */
281 $wgAntivirus= NULL;
282
283 /** Configuration for different virus scanners. This an associative array of associative arrays:
284 * it contains on setup array per known scanner type. The entry is selected by $wgAntivirus, i.e.
285 * valid values for $wgAntivirus are the keys defined in this array.
286 *
287 * The configuration array for each scanner contains the following keys: "command", "codemap", "messagepattern";
288 *
289 * "command" is the full command to call the virus scanner - %f will be replaced with the name of the
290 * file to scan. If not present, the filename will be appended to the command. Note that this must be
291 * overwritten if the scanner is not in the system path; in that case, plase set
292 * $wgAntivirusSetup[$wgAntivirus]['command'] to the desired command with full path.
293 *
294 * "codemap" is a mapping of exit code to return codes of the detectVirus function in SpecialUpload.
295 * An exit code mapped to AV_SCAN_FAILED causes the function to consider the scan to be failed. This will pass
296 * the file if $wgAntivirusRequired is not set.
297 * An exit code mapped to AV_SCAN_ABORTED causes the function to consider the file to have an usupported format,
298 * which is probably imune to virusses. This causes the file to pass.
299 * An exit code mapped to AV_NO_VIRUS will cause the file to pass, meaning no virus was found.
300 * All other codes (like AV_VIRUS_FOUND) will cause the function to report a virus.
301 * You may use "*" as a key in the array to catch all exit codes not mapped otherwise.
302 *
303 * "messagepattern" is a perl regular expression to extract the meaningful part of the scanners
304 * output. The relevant part should be matched as group one (\1).
305 * If not defined or the pattern does not match, the full message is shown to the user.
306 */
307 $wgAntivirusSetup = array(
308
309 #setup for clamav
310 'clamav' => array (
311 'command' => "clamscan --no-summary ",
312
313 'codemap' => array (
314 "0" => AV_NO_VIRUS, # no virus
315 "1" => AV_VIRUS_FOUND, # virus found
316 "52" => AV_SCAN_ABORTED, # unsupported file format (probably imune)
317 "*" => AV_SCAN_FAILED, # else scan failed
318 ),
319
320 'messagepattern' => '/.*?:(.*)/sim',
321 ),
322
323 #setup for f-prot
324 'f-prot' => array (
325 'command' => "f-prot ",
326
327 'codemap' => array (
328 "0" => AV_NO_VIRUS, # no virus
329 "3" => AV_VIRUS_FOUND, # virus found
330 "6" => AV_VIRUS_FOUND, # virus found
331 "*" => AV_SCAN_FAILED, # else scan failed
332 ),
333
334 'messagepattern' => '/.*?Infection:(.*)$/m',
335 ),
336 );
337
338
339 /** Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected. */
340 $wgAntivirusRequired= true;
341
342 /** Determines if the mime type of uploaded files should be checked */
343 $wgVerifyMimeType= true;
344
345 /** Sets the mime type definition file to use by MimeMagic.php. */
346 $wgMimeTypeFile= "includes/mime.types";
347 #$wgMimeTypeFile= "/etc/mime.types";
348 #$wgMimeTypeFile= NULL; #use built-in defaults only.
349
350 /** Sets the mime type info file to use by MimeMagic.php. */
351 $wgMimeInfoFile= "includes/mime.info";
352 #$wgMimeInfoFile= NULL; #use built-in defaults only.
353
354 /** Switch for loading the FileInfo extension by PECL at runtime.
355 * This should be used only if fileinfo is installed as a shared object
356 * or a dynamic libary
357 */
358 $wgLoadFileinfoExtension= false;
359
360 /** Sets an external mime detector program. The command must print only
361 * the mime type to standard output.
362 * The name of the file to process will be appended to the command given here.
363 * If not set or NULL, mime_content_type will be used if available.
364 */
365 $wgMimeDetectorCommand= NULL; # use internal mime_content_type function, available since php 4.3.0
366 #$wgMimeDetectorCommand= "file -bi"; #use external mime detector (Linux)
367
368 /** Switch for trivial mime detection. Used by thumb.php to disable all fance
369 * things, because only a few types of images are needed and file extensions
370 * can be trusted.
371 */
372 $wgTrivialMimeDetection= false;
373
374 /**
375 * Additional XML types we can allow via mime-detection.
376 * array = ( 'rootElement' => 'associatedMimeType' )
377 */
378 $wgXMLMimeTypes = array(
379 'http://www.w3.org/2000/svg:svg' => 'image/svg+xml',
380 'svg' => 'image/svg+xml',
381 'http://www.lysator.liu.se/~alla/dia/:diagram' => 'application/x-dia-diagram',
382 'http://www.w3.org/1999/xhtml:html' => 'text/html', // application/xhtml+xml?
383 'html' => 'text/html', // application/xhtml+xml?
384 );
385
386 /**
387 * To set 'pretty' URL paths for actions other than
388 * plain page views, add to this array. For instance:
389 * 'edit' => "$wgScriptPath/edit/$1"
390 *
391 * There must be an appropriate script or rewrite rule
392 * in place to handle these URLs.
393 */
394 $wgActionPaths = array();
395
396 /**
397 * If you operate multiple wikis, you can define a shared upload path here.
398 * Uploads to this wiki will NOT be put there - they will be put into
399 * $wgUploadDirectory.
400 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
401 * no file of the given name is found in the local repository (for [[Image:..]],
402 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
403 * directory.
404 *
405 * Note that these configuration settings can now be defined on a per-
406 * repository basis for an arbitrary number of file repositories, using the
407 * $wgForeignFileRepos variable.
408 */
409 $wgUseSharedUploads = false;
410 /** Full path on the web server where shared uploads can be found */
411 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
412 /** Fetch commons image description pages and display them on the local wiki? */
413 $wgFetchCommonsDescriptions = false;
414 /** Path on the file system where shared uploads can be found. */
415 $wgSharedUploadDirectory = "/var/www/wiki3/images";
416 /** DB name with metadata about shared directory. Set this to false if the uploads do not come from a wiki. */
417 $wgSharedUploadDBname = false;
418 /** Optional table prefix used in database. */
419 $wgSharedUploadDBprefix = '';
420 /** Cache shared metadata in memcached. Don't do this if the commons wiki is in a different memcached domain */
421 $wgCacheSharedUploads = true;
422 /** Allow for upload to be copied from an URL. Requires Special:Upload?source=web */
423 $wgAllowCopyUploads = false;
424 /**
425 * Max size for uploads, in bytes. Currently only works for uploads from URL
426 * via CURL (see $wgAllowCopyUploads). The only way to impose limits on
427 * normal uploads is currently to edit php.ini.
428 */
429 $wgMaxUploadSize = 1024*1024*100; # 100MB
430
431 /**
432 * Point the upload navigation link to an external URL
433 * Useful if you want to use a shared repository by default
434 * without disabling local uploads (use $wgEnableUploads = false for that)
435 * e.g. $wgUploadNavigationUrl = 'http://commons.wikimedia.org/wiki/Special:Upload';
436 */
437 $wgUploadNavigationUrl = false;
438
439 /**
440 * Give a path here to use thumb.php for thumbnail generation on client request, instead of
441 * generating them on render and outputting a static URL. This is necessary if some of your
442 * apache servers don't have read/write access to the thumbnail path.
443 *
444 * Example:
445 * $wgThumbnailScriptPath = "{$wgScriptPath}/thumb{$wgScriptExtension}";
446 */
447 $wgThumbnailScriptPath = false;
448 $wgSharedThumbnailScriptPath = false;
449
450 /**
451 * Set the following to false especially if you have a set of files that need to
452 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
453 * directory layout.
454 */
455 $wgHashedSharedUploadDirectory = true;
456
457 /**
458 * Base URL for a repository wiki. Leave this blank if uploads are just stored
459 * in a shared directory and not meant to be accessible through a separate wiki.
460 * Otherwise the image description pages on the local wiki will link to the
461 * image description page on this wiki.
462 *
463 * Please specify the namespace, as in the example below.
464 */
465 $wgRepositoryBaseUrl = "http://commons.wikimedia.org/wiki/Image:";
466
467 #
468 # Email settings
469 #
470
471 /**
472 * Site admin email address
473 * Default to wikiadmin@SERVER_NAME
474 */
475 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
476
477 /**
478 * Password reminder email address
479 * The address we should use as sender when a user is requesting his password
480 * Default to apache@SERVER_NAME
481 */
482 $wgPasswordSender = 'MediaWiki Mail <apache@' . $wgServerName . '>';
483
484 /**
485 * dummy address which should be accepted during mail send action
486 * It might be necessay to adapt the address or to set it equal
487 * to the $wgEmergencyContact address
488 */
489 #$wgNoReplyAddress = $wgEmergencyContact;
490 $wgNoReplyAddress = 'reply@not.possible';
491
492 /**
493 * Set to true to enable the e-mail basic features:
494 * Password reminders, etc. If sending e-mail on your
495 * server doesn't work, you might want to disable this.
496 */
497 $wgEnableEmail = true;
498
499 /**
500 * Set to true to enable user-to-user e-mail.
501 * This can potentially be abused, as it's hard to track.
502 */
503 $wgEnableUserEmail = true;
504
505 /**
506 * Set to true to put the sending user's email in a Reply-To header
507 * instead of From. ($wgEmergencyContact will be used as From.)
508 *
509 * Some mailers (eg sSMTP) set the SMTP envelope sender to the From value,
510 * which can cause problems with SPF validation and leak recipient addressses
511 * when bounces are sent to the sender.
512 */
513 $wgUserEmailUseReplyTo = false;
514
515 /**
516 * Minimum time, in hours, which must elapse between password reminder
517 * emails for a given account. This is to prevent abuse by mail flooding.
518 */
519 $wgPasswordReminderResendTime = 24;
520
521 /**
522 * SMTP Mode
523 * For using a direct (authenticated) SMTP server connection.
524 * Default to false or fill an array :
525 * <code>
526 * "host" => 'SMTP domain',
527 * "IDHost" => 'domain for MessageID',
528 * "port" => "25",
529 * "auth" => true/false,
530 * "username" => user,
531 * "password" => password
532 * </code>
533 */
534 $wgSMTP = false;
535
536
537 /**@{
538 * Database settings
539 */
540 /** database host name or ip address */
541 $wgDBserver = 'localhost';
542 /** database port number */
543 $wgDBport = '';
544 /** name of the database */
545 $wgDBname = 'wikidb';
546 /** */
547 $wgDBconnection = '';
548 /** Database username */
549 $wgDBuser = 'wikiuser';
550 /** Database user's password */
551 $wgDBpassword = '';
552 /** Database type */
553 $wgDBtype = 'mysql';
554
555 /** Search type
556 * Leave as null to select the default search engine for the
557 * selected database type (eg SearchMySQL), or set to a class
558 * name to override to a custom search engine.
559 */
560 $wgSearchType = null;
561
562 /** Table name prefix */
563 $wgDBprefix = '';
564 /** MySQL table options to use during installation or update */
565 $wgDBTableOptions = 'ENGINE=InnoDB';
566
567 /** Mediawiki schema */
568 $wgDBmwschema = 'mediawiki';
569 /** Tsearch2 schema */
570 $wgDBts2schema = 'public';
571
572 /** To override default SQLite data directory ($docroot/../data) */
573 $wgSQLiteDataDir = '';
574
575 /**
576 * Make all database connections secretly go to localhost. Fool the load balancer
577 * thinking there is an arbitrarily large cluster of servers to connect to.
578 * Useful for debugging.
579 */
580 $wgAllDBsAreLocalhost = false;
581
582 /**@}*/
583
584
585 /** Live high performance sites should disable this - some checks acquire giant mysql locks */
586 $wgCheckDBSchema = true;
587
588
589 /**
590 * Shared database for multiple wikis. Commonly used for storing a user table
591 * for single sign-on. The server for this database must be the same as for the
592 * main database.
593 * For backwards compatibility the shared prefix is set to the same as the local
594 * prefix, and the user table is listed in the default list of shared tables.
595 *
596 * $wgSharedTables may be customized with a list of tables to share in the shared
597 * datbase. However it is advised to limit what tables you do share as many of
598 * MediaWiki's tables may have side effects if you try to share them.
599 * EXPERIMENTAL
600 */
601 $wgSharedDB = null;
602 $wgSharedPrefix = false; # Defaults to $wgDBprefix
603 $wgSharedTables = array( 'user' );
604
605 /**
606 * Database load balancer
607 * This is a two-dimensional array, an array of server info structures
608 * Fields are:
609 * host: Host name
610 * dbname: Default database name
611 * user: DB user
612 * password: DB password
613 * type: "mysql" or "postgres"
614 * load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
615 * groupLoads: array of load ratios, the key is the query group name. A query may belong
616 * to several groups, the most specific group defined here is used.
617 *
618 * flags: bit field
619 * DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
620 * DBO_DEBUG -- equivalent of $wgDebugDumpSql
621 * DBO_TRX -- wrap entire request in a transaction
622 * DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
623 * DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
624 *
625 * max lag: (optional) Maximum replication lag before a slave will taken out of rotation
626 * max threads: (optional) Maximum number of running threads
627 *
628 * These and any other user-defined properties will be assigned to the mLBInfo member
629 * variable of the Database object.
630 *
631 * Leave at false to use the single-server variables above. If you set this
632 * variable, the single-server variables will generally be ignored (except
633 * perhaps in some command-line scripts).
634 *
635 * The first server listed in this array (with key 0) will be the master. The
636 * rest of the servers will be slaves. To prevent writes to your slaves due to
637 * accidental misconfiguration or MediaWiki bugs, set read_only=1 on all your
638 * slaves in my.cnf. You can set read_only mode at runtime using:
639 *
640 * SET @@read_only=1;
641 *
642 * Since the effect of writing to a slave is so damaging and difficult to clean
643 * up, we at Wikimedia set read_only=1 in my.cnf on all our DB servers, even
644 * our masters, and then set read_only=0 on masters at runtime.
645 */
646 $wgDBservers = false;
647
648 /**
649 * Load balancer factory configuration
650 * To set up a multi-master wiki farm, set the class here to something that
651 * can return a LoadBalancer with an appropriate master on a call to getMainLB().
652 * The class identified here is responsible for reading $wgDBservers,
653 * $wgDBserver, etc., so overriding it may cause those globals to be ignored.
654 *
655 * The LBFactory_Multi class is provided for this purpose, please see
656 * includes/db/LBFactory_Multi.php for configuration information.
657 */
658 $wgLBFactoryConf = array( 'class' => 'LBFactory_Simple' );
659
660 /** How long to wait for a slave to catch up to the master */
661 $wgMasterWaitTimeout = 10;
662
663 /** File to log database errors to */
664 $wgDBerrorLog = false;
665
666 /** When to give an error message */
667 $wgDBClusterTimeout = 10;
668
669 /**
670 * Scale load balancer polling time so that under overload conditions, the database server
671 * receives a SHOW STATUS query at an average interval of this many microseconds
672 */
673 $wgDBAvgStatusPoll = 2000;
674
675 /**
676 * wgDBminWordLen :
677 * MySQL 3.x : used to discard words that MySQL will not return any results for
678 * shorter values configure mysql directly.
679 * MySQL 4.x : ignore it and configure mySQL
680 * See: http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html
681 */
682 $wgDBminWordLen = 4;
683 /** Set to true if using InnoDB tables */
684 $wgDBtransactions = false;
685 /** Set to true for compatibility with extensions that might be checking.
686 * MySQL 3.23.x is no longer supported. */
687 $wgDBmysql4 = true;
688
689 /**
690 * Set to true to engage MySQL 4.1/5.0 charset-related features;
691 * for now will just cause sending of 'SET NAMES=utf8' on connect.
692 *
693 * WARNING: THIS IS EXPERIMENTAL!
694 *
695 * May break if you're not using the table defs from mysql5/tables.sql.
696 * May break if you're upgrading an existing wiki if set differently.
697 * Broken symptoms likely to include incorrect behavior with page titles,
698 * usernames, comments etc containing non-ASCII characters.
699 * Might also cause failures on the object cache and other things.
700 *
701 * Even correct usage may cause failures with Unicode supplementary
702 * characters (those not in the Basic Multilingual Plane) unless MySQL
703 * has enhanced their Unicode support.
704 */
705 $wgDBmysql5 = false;
706
707 /**
708 * Other wikis on this site, can be administered from a single developer
709 * account.
710 * Array numeric key => database name
711 */
712 $wgLocalDatabases = array();
713
714 /** @{
715 * Object cache settings
716 * See Defines.php for types
717 */
718 $wgMainCacheType = CACHE_NONE;
719 $wgMessageCacheType = CACHE_ANYTHING;
720 $wgParserCacheType = CACHE_ANYTHING;
721 /**@}*/
722
723 $wgParserCacheExpireTime = 86400;
724
725 $wgSessionsInMemcached = false;
726
727 /**@{
728 * Memcached-specific settings
729 * See docs/memcached.txt
730 */
731 $wgUseMemCached = false;
732 $wgMemCachedDebug = false; ///< Will be set to false in Setup.php, if the server isn't working
733 $wgMemCachedServers = array( '127.0.0.1:11000' );
734 $wgMemCachedPersistent = false;
735 /**@}*/
736
737 /**
738 * Directory for local copy of message cache, for use in addition to memcached
739 */
740 $wgLocalMessageCache = false;
741 /**
742 * Defines format of local cache
743 * true - Serialized object
744 * false - PHP source file (Warning - security risk)
745 */
746 $wgLocalMessageCacheSerialized = true;
747
748 /**
749 * Directory for compiled constant message array databases
750 * WARNING: turning anything on will just break things, aaaaaah!!!!
751 */
752 $wgCachedMessageArrays = false;
753
754 # Language settings
755 #
756 /** Site language code, should be one of ./languages/Language(.*).php */
757 $wgLanguageCode = 'en';
758
759 /**
760 * Some languages need different word forms, usually for different cases.
761 * Used in Language::convertGrammar().
762 */
763 $wgGrammarForms = array();
764 #$wgGrammarForms['en']['genitive']['car'] = 'car\'s';
765
766 /** Treat language links as magic connectors, not inline links */
767 $wgInterwikiMagic = true;
768
769 /** Hide interlanguage links from the sidebar */
770 $wgHideInterlanguageLinks = false;
771
772 /** List of language names or overrides for default names in Names.php */
773 $wgExtraLanguageNames = array();
774
775 /** We speak UTF-8 all the time now, unless some oddities happen */
776 $wgInputEncoding = 'UTF-8';
777 $wgOutputEncoding = 'UTF-8';
778 $wgEditEncoding = '';
779
780 /**
781 * Set this to eg 'ISO-8859-1' to perform character set
782 * conversion when loading old revisions not marked with
783 * "utf-8" flag. Use this when converting wiki to UTF-8
784 * without the burdensome mass conversion of old text data.
785 *
786 * NOTE! This DOES NOT touch any fields other than old_text.
787 * Titles, comments, user names, etc still must be converted
788 * en masse in the database before continuing as a UTF-8 wiki.
789 */
790 $wgLegacyEncoding = false;
791
792 /**
793 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
794 * create stub reference rows in the text table instead of copying
795 * the full text of all current entries from 'cur' to 'text'.
796 *
797 * This will speed up the conversion step for large sites, but
798 * requires that the cur table be kept around for those revisions
799 * to remain viewable.
800 *
801 * maintenance/migrateCurStubs.php can be used to complete the
802 * migration in the background once the wiki is back online.
803 *
804 * This option affects the updaters *only*. Any present cur stub
805 * revisions will be readable at runtime regardless of this setting.
806 */
807 $wgLegacySchemaConversion = false;
808
809 $wgMimeType = 'text/html';
810 $wgJsMimeType = 'text/javascript';
811 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
812 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
813 $wgXhtmlDefaultNamespace = 'http://www.w3.org/1999/xhtml';
814
815 /**
816 * Permit other namespaces in addition to the w3.org default.
817 * Use the prefix for the key and the namespace for the value. For
818 * example:
819 * $wgXhtmlNamespaces['svg'] = 'http://www.w3.org/2000/svg';
820 * Normally we wouldn't have to define this in the root <html>
821 * element, but IE needs it there in some circumstances.
822 */
823 $wgXhtmlNamespaces = array();
824
825 /** Enable to allow rewriting dates in page text.
826 * DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES */
827 $wgUseDynamicDates = false;
828 /** Enable dates like 'May 12' instead of '12 May', this only takes effect if
829 * the interface is set to English
830 */
831 $wgAmericanDates = false;
832 /**
833 * For Hindi and Arabic use local numerals instead of Western style (0-9)
834 * numerals in interface.
835 */
836 $wgTranslateNumerals = true;
837
838 /**
839 * Translation using MediaWiki: namespace.
840 * This will increase load times by 25-60% unless memcached is installed.
841 * Interface messages will be loaded from the database.
842 */
843 $wgUseDatabaseMessages = true;
844
845 /**
846 * Expiry time for the message cache key
847 */
848 $wgMsgCacheExpiry = 86400;
849
850 /**
851 * Maximum entry size in the message cache, in bytes
852 */
853 $wgMaxMsgCacheEntrySize = 10000;
854
855 /**
856 * Set to false if you are thorough system admin who always remembers to keep
857 * serialized files up to date to save few mtime calls.
858 */
859 $wgCheckSerialized = true;
860
861 /** Whether to enable language variant conversion. */
862 $wgDisableLangConversion = false;
863
864 /** Whether to enable language variant conversion for links. */
865 $wgDisableTitleConversion = false;
866
867 /** Default variant code, if false, the default will be the language code */
868 $wgDefaultLanguageVariant = false;
869
870 /**
871 * Show a bar of language selection links in the user login and user
872 * registration forms; edit the "loginlanguagelinks" message to
873 * customise these
874 */
875 $wgLoginLanguageSelector = false;
876
877 /**
878 * Whether to use zhdaemon to perform Chinese text processing
879 * zhdaemon is under developement, so normally you don't want to
880 * use it unless for testing
881 */
882 $wgUseZhdaemon = false;
883 $wgZhdaemonHost="localhost";
884 $wgZhdaemonPort=2004;
885
886
887 # Miscellaneous configuration settings
888 #
889
890 $wgLocalInterwiki = 'w';
891 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
892
893 /** Interwiki caching settings.
894 $wgInterwikiCache specifies path to constant database file
895 This cdb database is generated by dumpInterwiki from maintenance
896 and has such key formats:
897 dbname:key - a simple key (e.g. enwiki:meta)
898 _sitename:key - site-scope key (e.g. wiktionary:meta)
899 __global:key - global-scope key (e.g. __global:meta)
900 __sites:dbname - site mapping (e.g. __sites:enwiki)
901 Sites mapping just specifies site name, other keys provide
902 "local url" data layout.
903 $wgInterwikiScopes specify number of domains to check for messages:
904 1 - Just wiki(db)-level
905 2 - wiki and global levels
906 3 - site levels
907 $wgInterwikiFallbackSite - if unable to resolve from cache
908 */
909 $wgInterwikiCache = false;
910 $wgInterwikiScopes = 3;
911 $wgInterwikiFallbackSite = 'wiki';
912
913 /**
914 * If local interwikis are set up which allow redirects,
915 * set this regexp to restrict URLs which will be displayed
916 * as 'redirected from' links.
917 *
918 * It might look something like this:
919 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
920 *
921 * Leave at false to avoid displaying any incoming redirect markers.
922 * This does not affect intra-wiki redirects, which don't change
923 * the URL.
924 */
925 $wgRedirectSources = false;
926
927
928 $wgShowIPinHeader = true; # For non-logged in users
929 $wgMaxSigChars = 255; # Maximum number of Unicode characters in signature
930 $wgMaxArticleSize = 2048; # Maximum article size in kilobytes
931 # Maximum number of bytes in username. You want to run the maintenance
932 # script ./maintenancecheckUsernames.php once you have changed this value
933 $wgMaxNameChars = 255;
934
935 $wgMaxPPNodeCount = 1000000; # A complexity limit on template expansion
936
937 /**
938 * Maximum recursion depth for templates within templates.
939 * The current parser adds two levels to the PHP call stack for each template,
940 * and xdebug limits the call stack to 100 by default. So this should hopefully
941 * stop the parser before it hits the xdebug limit.
942 */
943 $wgMaxTemplateDepth = 40;
944 $wgMaxPPExpandDepth = 40;
945
946 /**
947 * If true, removes (substitutes) templates in "~~~~" signatures.
948 */
949 $wgCleanSignatures = true;
950
951 $wgExtraSubtitle = '';
952 $wgSiteSupportPage = ''; # A page where you users can receive donations
953
954 /***
955 * If this lock file exists, the wiki will be forced into read-only mode.
956 * Its contents will be shown to users as part of the read-only warning
957 * message.
958 */
959 $wgReadOnlyFile = false; ///< defaults to "{$wgUploadDirectory}/lock_yBgMBwiR";
960
961 /**
962 * The debug log file should be not be publicly accessible if it is used, as it
963 * may contain private data. */
964 $wgDebugLogFile = '';
965
966 $wgDebugRedirects = false;
967 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
968
969 $wgDebugComments = false;
970 $wgReadOnly = null;
971 $wgLogQueries = false;
972
973 /**
974 * Write SQL queries to the debug log
975 */
976 $wgDebugDumpSql = false;
977
978 /**
979 * Set to an array of log group keys to filenames.
980 * If set, wfDebugLog() output for that group will go to that file instead
981 * of the regular $wgDebugLogFile. Useful for enabling selective logging
982 * in production.
983 */
984 $wgDebugLogGroups = array();
985
986 /**
987 * Show the contents of $wgHooks in Special:Version
988 */
989 $wgSpecialVersionShowHooks = false;
990
991 /**
992 * Whether to show "we're sorry, but there has been a database error" pages.
993 * Displaying errors aids in debugging, but may display information useful
994 * to an attacker.
995 */
996 $wgShowSQLErrors = false;
997
998 /**
999 * If true, some error messages will be colorized when running scripts on the
1000 * command line; this can aid picking important things out when debugging.
1001 * Ignored when running on Windows or when output is redirected to a file.
1002 */
1003 $wgColorErrors = true;
1004
1005 /**
1006 * If set to true, uncaught exceptions will print a complete stack trace
1007 * to output. This should only be used for debugging, as it may reveal
1008 * private information in function parameters due to PHP's backtrace
1009 * formatting.
1010 */
1011 $wgShowExceptionDetails = false;
1012
1013 /**
1014 * Expose backend server host names through the API and various HTML comments
1015 */
1016 $wgShowHostnames = false;
1017
1018 /**
1019 * Use experimental, DMOZ-like category browser
1020 */
1021 $wgUseCategoryBrowser = false;
1022
1023 /**
1024 * Keep parsed pages in a cache (objectcache table, turck, or memcached)
1025 * to speed up output of the same page viewed by another user with the
1026 * same options.
1027 *
1028 * This can provide a significant speedup for medium to large pages,
1029 * so you probably want to keep it on.
1030 */
1031 $wgEnableParserCache = true;
1032
1033 /**
1034 * If on, the sidebar navigation links are cached for users with the
1035 * current language set. This can save a touch of load on a busy site
1036 * by shaving off extra message lookups.
1037 *
1038 * However it is also fragile: changing the site configuration, or
1039 * having a variable $wgArticlePath, can produce broken links that
1040 * don't update as expected.
1041 */
1042 $wgEnableSidebarCache = false;
1043
1044 /**
1045 * Expiry time for the sidebar cache, in seconds
1046 */
1047 $wgSidebarCacheExpiry = 86400;
1048
1049 /**
1050 * Under which condition should a page in the main namespace be counted
1051 * as a valid article? If $wgUseCommaCount is set to true, it will be
1052 * counted if it contains at least one comma. If it is set to false
1053 * (default), it will only be counted if it contains at least one [[wiki
1054 * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count
1055 *
1056 * Retroactively changing this variable will not affect
1057 * the existing count (cf. maintenance/recount.sql).
1058 */
1059 $wgUseCommaCount = false;
1060
1061 /**
1062 * wgHitcounterUpdateFreq sets how often page counters should be updated, higher
1063 * values are easier on the database. A value of 1 causes the counters to be
1064 * updated on every hit, any higher value n cause them to update *on average*
1065 * every n hits. Should be set to either 1 or something largish, eg 1000, for
1066 * maximum efficiency.
1067 */
1068 $wgHitcounterUpdateFreq = 1;
1069
1070 # Basic user rights and block settings
1071 $wgSysopUserBans = true; # Allow sysops to ban logged-in users
1072 $wgSysopRangeBans = true; # Allow sysops to ban IP ranges
1073 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
1074 $wgBlockAllowsUTEdit = false; # Blocks allow users to edit their own user talk page
1075 $wgSysopEmailBans = true; # Allow sysops to ban users from accessing Emailuser
1076
1077 # Pages anonymous user may see as an array, e.g.:
1078 # array ( "Main Page", "Wikipedia:Help");
1079 # Special:Userlogin and Special:Resetpass are always whitelisted.
1080 # NOTE: This will only work if $wgGroupPermissions['*']['read']
1081 # is false -- see below. Otherwise, ALL pages are accessible,
1082 # regardless of this setting.
1083 # Also note that this will only protect _pages in the wiki_.
1084 # Uploaded files will remain readable. Make your upload
1085 # directory name unguessable, or use .htaccess to protect it.
1086 $wgWhitelistRead = false;
1087
1088 /**
1089 * Should editors be required to have a validated e-mail
1090 * address before being allowed to edit?
1091 */
1092 $wgEmailConfirmToEdit=false;
1093
1094 /**
1095 * Permission keys given to users in each group.
1096 * All users are implicitly in the '*' group including anonymous visitors;
1097 * logged-in users are all implicitly in the 'user' group. These will be
1098 * combined with the permissions of all groups that a given user is listed
1099 * in in the user_groups table.
1100 *
1101 * Note: Don't set $wgGroupPermissions = array(); unless you know what you're
1102 * doing! This will wipe all permissions, and may mean that your users are
1103 * unable to perform certain essential tasks or access new functionality
1104 * when new permissions are introduced and default grants established.
1105 *
1106 * Functionality to make pages inaccessible has not been extensively tested
1107 * for security. Use at your own risk!
1108 *
1109 * This replaces wgWhitelistAccount and wgWhitelistEdit
1110 */
1111 $wgGroupPermissions = array();
1112
1113 // Implicit group for all visitors
1114 $wgGroupPermissions['*' ]['createaccount'] = true;
1115 $wgGroupPermissions['*' ]['read'] = true;
1116 $wgGroupPermissions['*' ]['edit'] = true;
1117 $wgGroupPermissions['*' ]['createpage'] = true;
1118 $wgGroupPermissions['*' ]['createtalk'] = true;
1119 $wgGroupPermissions['*' ]['writeapi'] = true;
1120
1121 // Implicit group for all logged-in accounts
1122 $wgGroupPermissions['user' ]['move'] = true;
1123 $wgGroupPermissions['user' ]['move-subpages'] = true;
1124 $wgGroupPermissions['user' ]['read'] = true;
1125 $wgGroupPermissions['user' ]['edit'] = true;
1126 $wgGroupPermissions['user' ]['createpage'] = true;
1127 $wgGroupPermissions['user' ]['createtalk'] = true;
1128 $wgGroupPermissions['user' ]['writeapi'] = true;
1129 $wgGroupPermissions['user' ]['upload'] = true;
1130 $wgGroupPermissions['user' ]['reupload'] = true;
1131 $wgGroupPermissions['user' ]['reupload-shared'] = true;
1132 $wgGroupPermissions['user' ]['minoredit'] = true;
1133 $wgGroupPermissions['user' ]['purge'] = true; // can use ?action=purge without clicking "ok"
1134
1135 // Implicit group for accounts that pass $wgAutoConfirmAge
1136 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
1137
1138 // Users with bot privilege can have their edits hidden
1139 // from various log pages by default
1140 $wgGroupPermissions['bot' ]['bot'] = true;
1141 $wgGroupPermissions['bot' ]['autoconfirmed'] = true;
1142 $wgGroupPermissions['bot' ]['nominornewtalk'] = true;
1143 $wgGroupPermissions['bot' ]['autopatrol'] = true;
1144 $wgGroupPermissions['bot' ]['suppressredirect'] = true;
1145 $wgGroupPermissions['bot' ]['apihighlimits'] = true;
1146 $wgGroupPermissions['bot' ]['writeapi'] = true;
1147 #$wgGroupPermissions['bot' ]['editprotected'] = true; // can edit all protected pages without cascade protection enabled
1148
1149 // Most extra permission abilities go to this group
1150 $wgGroupPermissions['sysop']['block'] = true;
1151 $wgGroupPermissions['sysop']['createaccount'] = true;
1152 $wgGroupPermissions['sysop']['delete'] = true;
1153 $wgGroupPermissions['sysop']['bigdelete'] = true; // can be separately configured for pages with > $wgDeleteRevisionsLimit revs
1154 $wgGroupPermissions['sysop']['deletedhistory'] = true; // can view deleted history entries, but not see or restore the text
1155 $wgGroupPermissions['sysop']['undelete'] = true;
1156 $wgGroupPermissions['sysop']['editinterface'] = true;
1157 $wgGroupPermissions['sysop']['editusercssjs'] = true;
1158 $wgGroupPermissions['sysop']['import'] = true;
1159 $wgGroupPermissions['sysop']['importupload'] = true;
1160 $wgGroupPermissions['sysop']['move'] = true;
1161 $wgGroupPermissions['sysop']['move-subpages'] = true;
1162 $wgGroupPermissions['sysop']['patrol'] = true;
1163 $wgGroupPermissions['sysop']['autopatrol'] = true;
1164 $wgGroupPermissions['sysop']['protect'] = true;
1165 $wgGroupPermissions['sysop']['proxyunbannable'] = true;
1166 $wgGroupPermissions['sysop']['rollback'] = true;
1167 $wgGroupPermissions['sysop']['trackback'] = true;
1168 $wgGroupPermissions['sysop']['upload'] = true;
1169 $wgGroupPermissions['sysop']['reupload'] = true;
1170 $wgGroupPermissions['sysop']['reupload-shared'] = true;
1171 $wgGroupPermissions['sysop']['unwatchedpages'] = true;
1172 $wgGroupPermissions['sysop']['autoconfirmed'] = true;
1173 $wgGroupPermissions['sysop']['upload_by_url'] = true;
1174 $wgGroupPermissions['sysop']['ipblock-exempt'] = true;
1175 $wgGroupPermissions['sysop']['blockemail'] = true;
1176 $wgGroupPermissions['sysop']['markbotedits'] = true;
1177 $wgGroupPermissions['sysop']['suppressredirect'] = true;
1178 $wgGroupPermissions['sysop']['apihighlimits'] = true;
1179 $wgGroupPermissions['sysop']['browsearchive'] = true;
1180 $wgGroupPermissions['sysop']['noratelimit'] = true;
1181 #$wgGroupPermissions['sysop']['mergehistory'] = true;
1182
1183 // Permission to change users' group assignments
1184 $wgGroupPermissions['bureaucrat']['userrights'] = true;
1185 $wgGroupPermissions['bureaucrat']['noratelimit'] = true;
1186 // Permission to change users' groups assignments across wikis
1187 #$wgGroupPermissions['bureaucrat']['userrights-interwiki'] = true;
1188
1189 #$wgGroupPermissions['sysop']['deleterevision'] = true;
1190 // To hide usernames from users and Sysops
1191 #$wgGroupPermissions['suppress']['hideuser'] = true;
1192 // To hide revisions/log items from users and Sysops
1193 #$wgGroupPermissions['suppress']['suppressrevision'] = true;
1194 // For private suppression log access
1195 #$wgGroupPermissions['suppress']['suppressionlog'] = true;
1196
1197 /**
1198 * The developer group is deprecated, but can be activated if need be
1199 * to use the 'lockdb' and 'unlockdb' special pages. Those require
1200 * that a lock file be defined and creatable/removable by the web
1201 * server.
1202 */
1203 # $wgGroupPermissions['developer']['siteadmin'] = true;
1204
1205
1206 /**
1207 * Implicit groups, aren't shown on Special:Listusers or somewhere else
1208 */
1209 $wgImplicitGroups = array( '*', 'user', 'autoconfirmed' );
1210
1211 /**
1212 * These are the groups that users are allowed to add to or remove from
1213 * their own account via Special:Userrights.
1214 */
1215 $wgGroupsAddToSelf = array();
1216 $wgGroupsRemoveFromSelf = array();
1217
1218 /**
1219 * Set of available actions that can be restricted via action=protect
1220 * You probably shouldn't change this.
1221 * Translated trough restriction-* messages.
1222 */
1223 $wgRestrictionTypes = array( 'edit', 'move' );
1224
1225 /**
1226 * Rights which can be required for each protection level (via action=protect)
1227 *
1228 * You can add a new protection level that requires a specific
1229 * permission by manipulating this array. The ordering of elements
1230 * dictates the order on the protection form's lists.
1231 *
1232 * '' will be ignored (i.e. unprotected)
1233 * 'sysop' is quietly rewritten to 'protect' for backwards compatibility
1234 */
1235 $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' );
1236
1237 /**
1238 * Set the minimum permissions required to edit pages in each
1239 * namespace. If you list more than one permission, a user must
1240 * have all of them to edit pages in that namespace.
1241 */
1242 $wgNamespaceProtection = array();
1243 $wgNamespaceProtection[ NS_MEDIAWIKI ] = array( 'editinterface' );
1244
1245 /**
1246 * Pages in namespaces in this array can not be used as templates.
1247 * Elements must be numeric namespace ids.
1248 * Among other things, this may be useful to enforce read-restrictions
1249 * which may otherwise be bypassed by using the template machanism.
1250 */
1251 $wgNonincludableNamespaces = array();
1252
1253 /**
1254 * Number of seconds an account is required to age before
1255 * it's given the implicit 'autoconfirm' group membership.
1256 * This can be used to limit privileges of new accounts.
1257 *
1258 * Accounts created by earlier versions of the software
1259 * may not have a recorded creation date, and will always
1260 * be considered to pass the age test.
1261 *
1262 * When left at 0, all registered accounts will pass.
1263 */
1264 $wgAutoConfirmAge = 0;
1265 //$wgAutoConfirmAge = 600; // ten minutes
1266 //$wgAutoConfirmAge = 3600*24; // one day
1267
1268 # Number of edits an account requires before it is autoconfirmed
1269 # Passing both this AND the time requirement is needed
1270 $wgAutoConfirmCount = 0;
1271 //$wgAutoConfirmCount = 50;
1272
1273 /**
1274 * Automatically add a usergroup to any user who matches certain conditions.
1275 * The format is
1276 * array( '&' or '|' or '^', cond1, cond2, ... )
1277 * where cond1, cond2, ... are themselves conditions; *OR*
1278 * APCOND_EMAILCONFIRMED, *OR*
1279 * array( APCOND_EMAILCONFIRMED ), *OR*
1280 * array( APCOND_EDITCOUNT, number of edits ), *OR*
1281 * array( APCOND_AGE, seconds since registration ), *OR*
1282 * similar constructs defined by extensions.
1283 *
1284 * If $wgEmailAuthentication is off, APCOND_EMAILCONFIRMED will be true for any
1285 * user who has provided an e-mail address.
1286 */
1287 $wgAutopromote = array(
1288 'autoconfirmed' => array( '&',
1289 array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ),
1290 array( APCOND_AGE, &$wgAutoConfirmAge ),
1291 ),
1292 );
1293
1294 /**
1295 * These settings can be used to give finer control over who can assign which
1296 * groups at Special:Userrights. Example configuration:
1297 *
1298 * // Bureaucrat can add any group
1299 * $wgAddGroups['bureaucrat'] = true;
1300 * // Bureaucrats can only remove bots and sysops
1301 * $wgRemoveGroups['bureaucrat'] = array( 'bot', 'sysop' );
1302 * // Sysops can make bots
1303 * $wgAddGroups['sysop'] = array( 'bot' );
1304 * // Sysops can disable other sysops in an emergency, and disable bots
1305 * $wgRemoveGroups['sysop'] = array( 'sysop', 'bot' );
1306 */
1307 $wgAddGroups = array();
1308 $wgRemoveGroups = array();
1309
1310 /**
1311 * A list of available rights, in addition to the ones defined by the core.
1312 * For extensions only.
1313 */
1314 $wgAvailableRights = array();
1315
1316 /**
1317 * Optional to restrict deletion of pages with higher revision counts
1318 * to users with the 'bigdelete' permission. (Default given to sysops.)
1319 */
1320 $wgDeleteRevisionsLimit = 0;
1321
1322 /**
1323 * Used to figure out if a user is "active" or not. User::isActiveEditor()
1324 * sees if a user has made at least $wgActiveUserEditCount number of edits
1325 * within the last $wgActiveUserDays days.
1326 */
1327 $wgActiveUserEditCount = 30;
1328 $wgActiveUserDays = 30;
1329
1330 # Proxy scanner settings
1331 #
1332
1333 /**
1334 * If you enable this, every editor's IP address will be scanned for open HTTP
1335 * proxies.
1336 *
1337 * Don't enable this. Many sysops will report "hostile TCP port scans" to your
1338 * ISP and ask for your server to be shut down.
1339 *
1340 * You have been warned.
1341 */
1342 $wgBlockOpenProxies = false;
1343 /** Port we want to scan for a proxy */
1344 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
1345 /** Script used to scan */
1346 $wgProxyScriptPath = "$IP/includes/proxy_check.php";
1347 /** */
1348 $wgProxyMemcExpiry = 86400;
1349 /** This should always be customised in LocalSettings.php */
1350 $wgSecretKey = false;
1351 /** big list of banned IP addresses, in the keys not the values */
1352 $wgProxyList = array();
1353 /** deprecated */
1354 $wgProxyKey = false;
1355
1356 /** Number of accounts each IP address may create, 0 to disable.
1357 * Requires memcached */
1358 $wgAccountCreationThrottle = 0;
1359
1360 # Client-side caching:
1361
1362 /** Allow client-side caching of pages */
1363 $wgCachePages = true;
1364
1365 /**
1366 * Set this to current time to invalidate all prior cached pages. Affects both
1367 * client- and server-side caching.
1368 * You can get the current date on your server by using the command:
1369 * date +%Y%m%d%H%M%S
1370 */
1371 $wgCacheEpoch = '20030516000000';
1372
1373 /**
1374 * Bump this number when changing the global style sheets and JavaScript.
1375 * It should be appended in the query string of static CSS and JS includes,
1376 * to ensure that client-side caches don't keep obsolete copies of global
1377 * styles.
1378 */
1379 $wgStyleVersion = '165';
1380
1381
1382 # Server-side caching:
1383
1384 /**
1385 * This will cache static pages for non-logged-in users to reduce
1386 * database traffic on public sites.
1387 * Must set $wgShowIPinHeader = false
1388 */
1389 $wgUseFileCache = false;
1390
1391 /** Directory where the cached page will be saved */
1392 $wgFileCacheDirectory = false; ///< defaults to "{$wgUploadDirectory}/cache";
1393
1394 /**
1395 * When using the file cache, we can store the cached HTML gzipped to save disk
1396 * space. Pages will then also be served compressed to clients that support it.
1397 * THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
1398 * the default LocalSettings.php! If you enable this, remove that setting first.
1399 *
1400 * Requires zlib support enabled in PHP.
1401 */
1402 $wgUseGzip = false;
1403
1404 /** Whether MediaWiki should send an ETag header */
1405 $wgUseETag = false;
1406
1407 # Email notification settings
1408 #
1409
1410 /** For email notification on page changes */
1411 $wgPasswordSender = $wgEmergencyContact;
1412
1413 # true: from page editor if s/he opted-in
1414 # false: Enotif mails appear to come from $wgEmergencyContact
1415 $wgEnotifFromEditor = false;
1416
1417 // TODO move UPO to preferences probably ?
1418 # If set to true, users get a corresponding option in their preferences and can choose to enable or disable at their discretion
1419 # If set to false, the corresponding input form on the user preference page is suppressed
1420 # It call this to be a "user-preferences-option (UPO)"
1421 $wgEmailAuthentication = true; # UPO (if this is set to false, texts referring to authentication are suppressed)
1422 $wgEnotifWatchlist = false; # UPO
1423 $wgEnotifUserTalk = false; # UPO
1424 $wgEnotifRevealEditorAddress = false; # UPO; reply-to address may be filled with page editor's address (if user allowed this in the preferences)
1425 $wgEnotifMinorEdits = true; # UPO; false: "minor edits" on pages do not trigger notification mails.
1426 # # Attention: _every_ change on a user_talk page trigger a notification mail (if the user is not yet notified)
1427
1428 # Send a generic mail instead of a personalised mail for each user. This
1429 # always uses UTC as the time zone, and doesn't include the username.
1430 #
1431 # For pages with many users watching, this can significantly reduce mail load.
1432 # Has no effect when using sendmail rather than SMTP;
1433
1434 $wgEnotifImpersonal = false;
1435
1436 # Maximum number of users to mail at once when using impersonal mail. Should
1437 # match the limit on your mail server.
1438 $wgEnotifMaxRecips = 500;
1439
1440 # Send mails via the job queue.
1441 $wgEnotifUseJobQ = false;
1442
1443 /**
1444 * Array of usernames who will be sent a notification email for every change which occurs on a wiki
1445 */
1446 $wgUsersNotifiedOnAllChanges = array();
1447
1448 /** Show watching users in recent changes, watchlist and page history views */
1449 $wgRCShowWatchingUsers = false; # UPO
1450 /** Show watching users in Page views */
1451 $wgPageShowWatchingUsers = false;
1452 /** Show the amount of changed characters in recent changes */
1453 $wgRCShowChangedSize = true;
1454
1455 /**
1456 * If the difference between the character counts of the text
1457 * before and after the edit is below that value, the value will be
1458 * highlighted on the RC page.
1459 */
1460 $wgRCChangedSizeThreshold = -500;
1461
1462 /**
1463 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
1464 * view for watched pages with new changes */
1465 $wgShowUpdatedMarker = true;
1466
1467 $wgCookieExpiration = 30*86400;
1468
1469 /** Clock skew or the one-second resolution of time() can occasionally cause cache
1470 * problems when the user requests two pages within a short period of time. This
1471 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
1472 * a grace period.
1473 */
1474 $wgClockSkewFudge = 5;
1475
1476 # Squid-related settings
1477 #
1478
1479 /** Enable/disable Squid */
1480 $wgUseSquid = false;
1481
1482 /** If you run Squid3 with ESI support, enable this (default:false): */
1483 $wgUseESI = false;
1484
1485 /** Internal server name as known to Squid, if different */
1486 # $wgInternalServer = 'http://yourinternal.tld:8000';
1487 $wgInternalServer = $wgServer;
1488
1489 /**
1490 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
1491 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
1492 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
1493 * days
1494 */
1495 $wgSquidMaxage = 18000;
1496
1497 /**
1498 * Default maximum age for raw CSS/JS accesses
1499 */
1500 $wgForcedRawSMaxage = 300;
1501
1502 /**
1503 * List of proxy servers to purge on changes; default port is 80. Use IP addresses.
1504 *
1505 * When MediaWiki is running behind a proxy, it will trust X-Forwarded-For
1506 * headers sent/modified from these proxies when obtaining the remote IP address
1507 *
1508 * For a list of trusted servers which *aren't* purged, see $wgSquidServersNoPurge.
1509 */
1510 $wgSquidServers = array();
1511
1512 /**
1513 * As above, except these servers aren't purged on page changes; use to set a
1514 * list of trusted proxies, etc.
1515 */
1516 $wgSquidServersNoPurge = array();
1517
1518 /** Maximum number of titles to purge in any one client operation */
1519 $wgMaxSquidPurgeTitles = 400;
1520
1521 /** HTCP multicast purging */
1522 $wgHTCPPort = 4827;
1523 $wgHTCPMulticastTTL = 1;
1524 # $wgHTCPMulticastAddress = "224.0.0.85";
1525 $wgHTCPMulticastAddress = false;
1526
1527 # Cookie settings:
1528 #
1529 /**
1530 * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
1531 * or ".any.subdomain.net"
1532 */
1533 $wgCookieDomain = '';
1534 $wgCookiePath = '/';
1535 $wgCookieSecure = ($wgProto == 'https');
1536 $wgDisableCookieCheck = false;
1537
1538 /**
1539 * Set $wgCookiePrefix to use a custom one. Setting to false sets the default of
1540 * using the database name.
1541 */
1542 $wgCookiePrefix = false;
1543
1544 /**
1545 * Set authentication cookies to HttpOnly to prevent access by JavaScript,
1546 * in browsers that support this feature. This can mitigates some classes of
1547 * XSS attack.
1548 *
1549 * Only supported on PHP 5.2 or higher.
1550 */
1551 $wgCookieHttpOnly = version_compare("5.2", PHP_VERSION, "<");
1552
1553 /**
1554 * If the requesting browser matches a regex in this blacklist, we won't
1555 * send it cookies with HttpOnly mode, even if $wgCookieHttpOnly is on.
1556 */
1557 $wgHttpOnlyBlacklist = array(
1558 // Internet Explorer for Mac; sometimes the cookies work, sometimes
1559 // they don't. It's difficult to predict, as combinations of path
1560 // and expiration options affect its parsing.
1561 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
1562 );
1563
1564 /** A list of cookies that vary the cache (for use by extensions) */
1565 $wgCacheVaryCookies = array();
1566
1567 /** Override to customise the session name */
1568 $wgSessionName = false;
1569
1570 /** Whether to allow inline image pointing to other websites */
1571 $wgAllowExternalImages = false;
1572
1573 /** If the above is false, you can specify an exception here. Image URLs
1574 * that start with this string are then rendered, while all others are not.
1575 * You can use this to set up a trusted, simple repository of images.
1576 *
1577 * Example:
1578 * $wgAllowExternalImagesFrom = 'http://127.0.0.1/';
1579 */
1580 $wgAllowExternalImagesFrom = '';
1581
1582 /** Allows to move images and other media files. Experemintal, not sure if it always works */
1583 $wgAllowImageMoving = false;
1584
1585 /** Disable database-intensive features */
1586 $wgMiserMode = false;
1587 /** Disable all query pages if miser mode is on, not just some */
1588 $wgDisableQueryPages = false;
1589 /** Number of rows to cache in 'querycache' table when miser mode is on */
1590 $wgQueryCacheLimit = 1000;
1591 /** Number of links to a page required before it is deemed "wanted" */
1592 $wgWantedPagesThreshold = 1;
1593 /** Enable slow parser functions */
1594 $wgAllowSlowParserFunctions = false;
1595
1596 /**
1597 * Maps jobs to their handling classes; extensions
1598 * can add to this to provide custom jobs
1599 */
1600 $wgJobClasses = array(
1601 'refreshLinks' => 'RefreshLinksJob',
1602 'htmlCacheUpdate' => 'HTMLCacheUpdateJob',
1603 'html_cache_update' => 'HTMLCacheUpdateJob', // backwards-compatible
1604 'sendMail' => 'EmaillingJob',
1605 'enotifNotify' => 'EnotifNotifyJob',
1606 'fixDoubleRedirect' => 'DoubleRedirectJob',
1607 );
1608
1609 /**
1610 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
1611 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
1612 * (ImageMagick) installed and available in the PATH.
1613 * Please see math/README for more information.
1614 */
1615 $wgUseTeX = false;
1616 /** Location of the texvc binary */
1617 $wgTexvc = './math/texvc';
1618
1619 #
1620 # Profiling / debugging
1621 #
1622 # You have to create a 'profiling' table in your database before using
1623 # profiling see maintenance/archives/patch-profiling.sql .
1624 #
1625 # To enable profiling, edit StartProfiler.php
1626
1627 /** Only record profiling info for pages that took longer than this */
1628 $wgProfileLimit = 0.0;
1629 /** Don't put non-profiling info into log file */
1630 $wgProfileOnly = false;
1631 /** Log sums from profiling into "profiling" table in db. */
1632 $wgProfileToDatabase = false;
1633 /** If true, print a raw call tree instead of per-function report */
1634 $wgProfileCallTree = false;
1635 /** Should application server host be put into profiling table */
1636 $wgProfilePerHost = false;
1637
1638 /** Settings for UDP profiler */
1639 $wgUDPProfilerHost = '127.0.0.1';
1640 $wgUDPProfilerPort = '3811';
1641
1642 /** Detects non-matching wfProfileIn/wfProfileOut calls */
1643 $wgDebugProfiling = false;
1644 /** Output debug message on every wfProfileIn/wfProfileOut */
1645 $wgDebugFunctionEntry = 0;
1646 /** Lots of debugging output from SquidUpdate.php */
1647 $wgDebugSquid = false;
1648
1649 /*
1650 * Destination for wfIncrStats() data...
1651 * 'cache' to go into the system cache, if enabled (memcached)
1652 * 'udp' to be sent to the UDP profiler (see $wgUDPProfilerHost)
1653 * false to disable
1654 */
1655 $wgStatsMethod = 'cache';
1656
1657 /** Whereas to count the number of time an article is viewed.
1658 * Does not work if pages are cached (for example with squid).
1659 */
1660 $wgDisableCounters = false;
1661
1662 $wgDisableTextSearch = false;
1663 $wgDisableSearchContext = false;
1664
1665
1666 /**
1667 * Set to true to have nicer highligted text in search results,
1668 * by default off due to execution overhead
1669 */
1670 $wgAdvancedSearchHighlighting = false;
1671
1672 /**
1673 * Regexp to match word boundaries, defaults for non-CJK languages
1674 * should be empty for CJK since the words are not separate
1675 */
1676 $wgSearchHighlightBoundaries = version_compare("5.1", PHP_VERSION, "<")? '[\p{Z}\p{P}\p{C}]'
1677 : '[ ,.;:!?~!@#$%\^&*\(\)+=\-\\|\[\]"\'<>\n\r\/{}]'; // PHP 5.0 workaround
1678
1679 /**
1680 * Template for OpenSearch suggestions, defaults to API action=opensearch
1681 *
1682 * Sites with heavy load would tipically have these point to a custom
1683 * PHP wrapper to avoid firing up mediawiki for every keystroke
1684 *
1685 * Placeholders: {searchTerms}
1686 *
1687 */
1688 $wgOpenSearchTemplate = false;
1689
1690 /**
1691 * Enable suggestions while typing in search boxes
1692 * (results are passed around in OpenSearch format)
1693 */
1694 $wgEnableMWSuggest = false;
1695
1696 /**
1697 * Template for internal MediaWiki suggestion engine, defaults to API action=opensearch
1698 *
1699 * Placeholders: {searchTerms}, {namespaces}, {dbname}
1700 *
1701 */
1702 $wgMWSuggestTemplate = false;
1703
1704 /**
1705 * If you've disabled search semi-permanently, this also disables updates to the
1706 * table. If you ever re-enable, be sure to rebuild the search table.
1707 */
1708 $wgDisableSearchUpdate = false;
1709 /** Uploads have to be specially set up to be secure */
1710 $wgEnableUploads = false;
1711 /**
1712 * Show EXIF data, on by default if available.
1713 * Requires PHP's EXIF extension: http://www.php.net/manual/en/ref.exif.php
1714 *
1715 * NOTE FOR WINDOWS USERS:
1716 * To enable EXIF functions, add the folloing lines to the
1717 * "Windows extensions" section of php.ini:
1718 *
1719 * extension=extensions/php_mbstring.dll
1720 * extension=extensions/php_exif.dll
1721 */
1722 $wgShowEXIF = function_exists( 'exif_read_data' );
1723
1724 /**
1725 * Set to true to enable the upload _link_ while local uploads are disabled.
1726 * Assumes that the special page link will be bounced to another server where
1727 * uploads do work.
1728 */
1729 $wgRemoteUploads = false;
1730 $wgDisableAnonTalk = false;
1731 /**
1732 * Do DELETE/INSERT for link updates instead of incremental
1733 */
1734 $wgUseDumbLinkUpdate = false;
1735
1736 /**
1737 * Anti-lock flags - bitfield
1738 * ALF_PRELOAD_LINKS
1739 * Preload links during link update for save
1740 * ALF_PRELOAD_EXISTENCE
1741 * Preload cur_id during replaceLinkHolders
1742 * ALF_NO_LINK_LOCK
1743 * Don't use locking reads when updating the link table. This is
1744 * necessary for wikis with a high edit rate for performance
1745 * reasons, but may cause link table inconsistency
1746 * ALF_NO_BLOCK_LOCK
1747 * As for ALF_LINK_LOCK, this flag is a necessity for high-traffic
1748 * wikis.
1749 */
1750 $wgAntiLockFlags = 0;
1751
1752 /**
1753 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
1754 * fall back to the old behaviour (no merging).
1755 */
1756 $wgDiff3 = '/usr/bin/diff3';
1757
1758 /**
1759 * Path to the GNU diff utility.
1760 */
1761 $wgDiff = '/usr/bin/diff';
1762
1763 /**
1764 * We can also compress text stored in the 'text' table. If this is set on, new
1765 * revisions will be compressed on page save if zlib support is available. Any
1766 * compressed revisions will be decompressed on load regardless of this setting
1767 * *but will not be readable at all* if zlib support is not available.
1768 */
1769 $wgCompressRevisions = false;
1770
1771 /**
1772 * This is the list of preferred extensions for uploading files. Uploading files
1773 * with extensions not in this list will trigger a warning.
1774 */
1775 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
1776
1777 /** Files with these extensions will never be allowed as uploads. */
1778 $wgFileBlacklist = array(
1779 # HTML may contain cookie-stealing JavaScript and web bugs
1780 'html', 'htm', 'js', 'jsb', 'mhtml', 'mht',
1781 # PHP scripts may execute arbitrary code on the server
1782 'php', 'phtml', 'php3', 'php4', 'php5', 'phps',
1783 # Other types that may be interpreted by some servers
1784 'shtml', 'jhtml', 'pl', 'py', 'cgi',
1785 # May contain harmful executables for Windows victims
1786 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
1787
1788 /** Files with these mime types will never be allowed as uploads
1789 * if $wgVerifyMimeType is enabled.
1790 */
1791 $wgMimeTypeBlacklist= array(
1792 # HTML may contain cookie-stealing JavaScript and web bugs
1793 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
1794 # PHP scripts may execute arbitrary code on the server
1795 'application/x-php', 'text/x-php',
1796 # Other types that may be interpreted by some servers
1797 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh',
1798 # Windows metafile, client-side vulnerability on some systems
1799 'application/x-msmetafile'
1800 );
1801
1802 /** This is a flag to determine whether or not to check file extensions on upload. */
1803 $wgCheckFileExtensions = true;
1804
1805 /**
1806 * If this is turned off, users may override the warning for files not covered
1807 * by $wgFileExtensions.
1808 */
1809 $wgStrictFileExtensions = true;
1810
1811 /** Warn if uploaded files are larger than this (in bytes), or false to disable*/
1812 $wgUploadSizeWarning = false;
1813
1814 /** For compatibility with old installations set to false */
1815 $wgPasswordSalt = true;
1816
1817 /** Which namespaces should support subpages?
1818 * See Language.php for a list of namespaces.
1819 */
1820 $wgNamespacesWithSubpages = array(
1821 NS_TALK => true,
1822 NS_USER => true,
1823 NS_USER_TALK => true,
1824 NS_PROJECT_TALK => true,
1825 NS_IMAGE_TALK => true,
1826 NS_MEDIAWIKI_TALK => true,
1827 NS_TEMPLATE_TALK => true,
1828 NS_HELP_TALK => true,
1829 NS_CATEGORY_TALK => true
1830 );
1831
1832 $wgNamespacesToBeSearchedDefault = array(
1833 NS_MAIN => true,
1834 );
1835
1836 /**
1837 * Site notice shown at the top of each page
1838 *
1839 * This message can contain wiki text, and can also be set through the
1840 * MediaWiki:Sitenotice page. You can also provide a separate message for
1841 * logged-out users using the MediaWiki:Anonnotice page.
1842 */
1843 $wgSiteNotice = '';
1844
1845 #
1846 # Images settings
1847 #
1848
1849 /**
1850 * Plugins for media file type handling.
1851 * Each entry in the array maps a MIME type to a class name
1852 */
1853 $wgMediaHandlers = array(
1854 'image/jpeg' => 'BitmapHandler',
1855 'image/png' => 'BitmapHandler',
1856 'image/gif' => 'BitmapHandler',
1857 'image/x-ms-bmp' => 'BmpHandler',
1858 'image/x-bmp' => 'BmpHandler',
1859 'image/svg+xml' => 'SvgHandler', // official
1860 'image/svg' => 'SvgHandler', // compat
1861 'image/vnd.djvu' => 'DjVuHandler', // official
1862 'image/x.djvu' => 'DjVuHandler', // compat
1863 'image/x-djvu' => 'DjVuHandler', // compat
1864 );
1865
1866
1867 /**
1868 * Resizing can be done using PHP's internal image libraries or using
1869 * ImageMagick or another third-party converter, e.g. GraphicMagick.
1870 * These support more file formats than PHP, which only supports PNG,
1871 * GIF, JPG, XBM and WBMP.
1872 *
1873 * Use Image Magick instead of PHP builtin functions.
1874 */
1875 $wgUseImageMagick = false;
1876 /** The convert command shipped with ImageMagick */
1877 $wgImageMagickConvertCommand = '/usr/bin/convert';
1878
1879 /** Sharpening parameter to ImageMagick */
1880 $wgSharpenParameter = '0x0.4';
1881
1882 /** Reduction in linear dimensions below which sharpening will be enabled */
1883 $wgSharpenReductionThreshold = 0.85;
1884
1885 /**
1886 * Use another resizing converter, e.g. GraphicMagick
1887 * %s will be replaced with the source path, %d with the destination
1888 * %w and %h will be replaced with the width and height
1889 *
1890 * An example is provided for GraphicMagick
1891 * Leave as false to skip this
1892 */
1893 #$wgCustomConvertCommand = "gm convert %s -resize %wx%h %d"
1894 $wgCustomConvertCommand = false;
1895
1896 # Scalable Vector Graphics (SVG) may be uploaded as images.
1897 # Since SVG support is not yet standard in browsers, it is
1898 # necessary to rasterize SVGs to PNG as a fallback format.
1899 #
1900 # An external program is required to perform this conversion:
1901 $wgSVGConverters = array(
1902 'ImageMagick' => '$path/convert -background white -geometry $width $input PNG:$output',
1903 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1904 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1905 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
1906 'rsvg' => '$path/rsvg -w$width -h$height $input $output',
1907 'imgserv' => '$path/imgserv-wrapper -i svg -o png -w$width $input $output',
1908 );
1909 /** Pick one of the above */
1910 $wgSVGConverter = 'ImageMagick';
1911 /** If not in the executable PATH, specify */
1912 $wgSVGConverterPath = '';
1913 /** Don't scale a SVG larger than this */
1914 $wgSVGMaxSize = 2048;
1915 /**
1916 * Don't thumbnail an image if it will use too much working memory
1917 * Default is 50 MB if decompressed to RGBA form, which corresponds to
1918 * 12.5 million pixels or 3500x3500
1919 */
1920 $wgMaxImageArea = 1.25e7;
1921 /**
1922 * If rendered thumbnail files are older than this timestamp, they
1923 * will be rerendered on demand as if the file didn't already exist.
1924 * Update if there is some need to force thumbs and SVG rasterizations
1925 * to rerender, such as fixes to rendering bugs.
1926 */
1927 $wgThumbnailEpoch = '20030516000000';
1928
1929 /**
1930 * If set, inline scaled images will still produce <img> tags ready for
1931 * output instead of showing an error message.
1932 *
1933 * This may be useful if errors are transitory, especially if the site
1934 * is configured to automatically render thumbnails on request.
1935 *
1936 * On the other hand, it may obscure error conditions from debugging.
1937 * Enable the debug log or the 'thumbnail' log group to make sure errors
1938 * are logged to a file for review.
1939 */
1940 $wgIgnoreImageErrors = false;
1941
1942 /**
1943 * Allow thumbnail rendering on page view. If this is false, a valid
1944 * thumbnail URL is still output, but no file will be created at
1945 * the target location. This may save some time if you have a
1946 * thumb.php or 404 handler set up which is faster than the regular
1947 * webserver(s).
1948 */
1949 $wgGenerateThumbnailOnParse = true;
1950
1951 /** Obsolete, always true, kept for compatibility with extensions */
1952 $wgUseImageResize = true;
1953
1954
1955 /** Set $wgCommandLineMode if it's not set already, to avoid notices */
1956 if( !isset( $wgCommandLineMode ) ) {
1957 $wgCommandLineMode = false;
1958 }
1959
1960 /** For colorized maintenance script output, is your terminal background dark ? */
1961 $wgCommandLineDarkBg = false;
1962
1963 #
1964 # Recent changes settings
1965 #
1966
1967 /** Log IP addresses in the recentchanges table; can be accessed only by extensions (e.g. CheckUser) or a DB admin */
1968 $wgPutIPinRC = true;
1969
1970 /**
1971 * Recentchanges items are periodically purged; entries older than this many
1972 * seconds will go.
1973 * For one week : 7 * 24 * 3600
1974 */
1975 $wgRCMaxAge = 7 * 24 * 3600;
1976
1977 /**
1978 * Filter $wgRCLinkDays by $wgRCMaxAge to avoid showing links for numbers higher than what will be stored.
1979 * Note that this is disabled by default because we sometimes do have RC data which is beyond the limit
1980 * for some reason, and some users may use the high numbers to display that data which is still there.
1981 */
1982 $wgRCFilterByAge = false;
1983
1984 /**
1985 * List of Days and Limits options to list in the Special:Recentchanges and Special:Recentchangeslinked pages.
1986 */
1987 $wgRCLinkLimits = array( 50, 100, 250, 500 );
1988 $wgRCLinkDays = array( 1, 3, 7, 14, 30 );
1989
1990 # Send RC updates via UDP
1991 $wgRC2UDPAddress = false;
1992 $wgRC2UDPPort = false;
1993 $wgRC2UDPPrefix = '';
1994 $wgRC2UDPOmitBots = false;
1995
1996 # Enable user search in Special:Newpages
1997 # This is really a temporary hack around an index install bug on some Wikipedias.
1998 # Kill it once fixed.
1999 $wgEnableNewpagesUserFilter = true;
2000
2001 #
2002 # Copyright and credits settings
2003 #
2004
2005 /** RDF metadata toggles */
2006 $wgEnableDublinCoreRdf = false;
2007 $wgEnableCreativeCommonsRdf = false;
2008
2009 /** Override for copyright metadata.
2010 * TODO: these options need documentation
2011 */
2012 $wgRightsPage = NULL;
2013 $wgRightsUrl = NULL;
2014 $wgRightsText = NULL;
2015 $wgRightsIcon = NULL;
2016
2017 /** Set this to some HTML to override the rights icon with an arbitrary logo */
2018 $wgCopyrightIcon = NULL;
2019
2020 /** Set this to true if you want detailed copyright information forms on Upload. */
2021 $wgUseCopyrightUpload = false;
2022
2023 /** Set this to false if you want to disable checking that detailed copyright
2024 * information values are not empty. */
2025 $wgCheckCopyrightUpload = true;
2026
2027 /**
2028 * Set this to the number of authors that you want to be credited below an
2029 * article text. Set it to zero to hide the attribution block, and a negative
2030 * number (like -1) to show all authors. Note that this will require 2-3 extra
2031 * database hits, which can have a not insignificant impact on performance for
2032 * large wikis.
2033 */
2034 $wgMaxCredits = 0;
2035
2036 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
2037 * Otherwise, link to a separate credits page. */
2038 $wgShowCreditsIfMax = true;
2039
2040
2041
2042 /**
2043 * Set this to false to avoid forcing the first letter of links to capitals.
2044 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
2045 * appearing with a capital at the beginning of a sentence will *not* go to the
2046 * same place as links in the middle of a sentence using a lowercase initial.
2047 */
2048 $wgCapitalLinks = true;
2049
2050 /**
2051 * List of interwiki prefixes for wikis we'll accept as sources for
2052 * Special:Import (for sysops). Since complete page history can be imported,
2053 * these should be 'trusted'.
2054 *
2055 * If a user has the 'import' permission but not the 'importupload' permission,
2056 * they will only be able to run imports through this transwiki interface.
2057 */
2058 $wgImportSources = array();
2059
2060 /**
2061 * Optional default target namespace for interwiki imports.
2062 * Can use this to create an incoming "transwiki"-style queue.
2063 * Set to numeric key, not the name.
2064 *
2065 * Users may override this in the Special:Import dialog.
2066 */
2067 $wgImportTargetNamespace = null;
2068
2069 /**
2070 * If set to false, disables the full-history option on Special:Export.
2071 * This is currently poorly optimized for long edit histories, so is
2072 * disabled on Wikimedia's sites.
2073 */
2074 $wgExportAllowHistory = true;
2075
2076 /**
2077 * If set nonzero, Special:Export requests for history of pages with
2078 * more revisions than this will be rejected. On some big sites things
2079 * could get bogged down by very very long pages.
2080 */
2081 $wgExportMaxHistory = 0;
2082
2083 $wgExportAllowListContributors = false ;
2084
2085
2086 /** Text matching this regular expression will be recognised as spam
2087 * See http://en.wikipedia.org/wiki/Regular_expression */
2088 $wgSpamRegex = false;
2089 /** Similarly you can get a function to do the job. The function will be given
2090 * the following args:
2091 * - a Title object for the article the edit is made on
2092 * - the text submitted in the textarea (wpTextbox1)
2093 * - the section number.
2094 * The return should be boolean indicating whether the edit matched some evilness:
2095 * - true : block it
2096 * - false : let it through
2097 *
2098 * For a complete example, have a look at the SpamBlacklist extension.
2099 */
2100 $wgFilterCallback = false;
2101
2102 /** Go button goes straight to the edit screen if the article doesn't exist. */
2103 $wgGoToEdit = false;
2104
2105 /** Allow raw, unchecked HTML in <html>...</html> sections.
2106 * THIS IS VERY DANGEROUS on a publically editable site, so USE wgGroupPermissions
2107 * TO RESTRICT EDITING to only those that you trust
2108 */
2109 $wgRawHtml = false;
2110
2111 /**
2112 * $wgUseTidy: use tidy to make sure HTML output is sane.
2113 * Tidy is a free tool that fixes broken HTML.
2114 * See http://www.w3.org/People/Raggett/tidy/
2115 * $wgTidyBin should be set to the path of the binary and
2116 * $wgTidyConf to the path of the configuration file.
2117 * $wgTidyOpts can include any number of parameters.
2118 *
2119 * $wgTidyInternal controls the use of the PECL extension to use an in-
2120 * process tidy library instead of spawning a separate program.
2121 * Normally you shouldn't need to override the setting except for
2122 * debugging. To install, use 'pear install tidy' and add a line
2123 * 'extension=tidy.so' to php.ini.
2124 */
2125 $wgUseTidy = false;
2126 $wgAlwaysUseTidy = false;
2127 $wgTidyBin = 'tidy';
2128 $wgTidyConf = $IP.'/includes/tidy.conf';
2129 $wgTidyOpts = '';
2130 $wgTidyInternal = extension_loaded( 'tidy' );
2131
2132 /**
2133 * Put tidy warnings in HTML comments
2134 * Only works for internal tidy.
2135 */
2136 $wgDebugTidy = false;
2137
2138 /**
2139 * Validate the overall output using tidy and refuse
2140 * to display the page if it's not valid.
2141 */
2142 $wgValidateAllHtml = false;
2143
2144 /** See list of skins and their symbolic names in languages/Language.php */
2145 $wgDefaultSkin = 'monobook';
2146
2147 /**
2148 * Optionally, we can specify a stylesheet to use for media="handheld".
2149 * This is recognized by some, but not all, handheld/mobile/PDA browsers.
2150 * If left empty, compliant handheld browsers won't pick up the skin
2151 * stylesheet, which is specified for 'screen' media.
2152 *
2153 * Can be a complete URL, base-relative path, or $wgStylePath-relative path.
2154 * Try 'chick/main.css' to apply the Chick styles to the MonoBook HTML.
2155 *
2156 * Will also be switched in when 'handheld=yes' is added to the URL, like
2157 * the 'printable=yes' mode for print media.
2158 */
2159 $wgHandheldStyle = false;
2160
2161 /**
2162 * If set, 'screen' and 'handheld' media specifiers for stylesheets are
2163 * transformed such that they apply to the iPhone/iPod Touch Mobile Safari,
2164 * which doesn't recognize 'handheld' but does support media queries on its
2165 * screen size.
2166 *
2167 * Consider only using this if you have a *really good* handheld stylesheet,
2168 * as iPhone users won't have any way to disable it and use the "grown-up"
2169 * styles instead.
2170 */
2171 $wgHandheldForIPhone = false;
2172
2173 /**
2174 * Settings added to this array will override the default globals for the user
2175 * preferences used by anonymous visitors and newly created accounts.
2176 * For instance, to disable section editing links:
2177 * $wgDefaultUserOptions ['editsection'] = 0;
2178 *
2179 */
2180 $wgDefaultUserOptions = array(
2181 'quickbar' => 1,
2182 'underline' => 2,
2183 'cols' => 80,
2184 'rows' => 25,
2185 'searchlimit' => 20,
2186 'contextlines' => 5,
2187 'contextchars' => 50,
2188 'disablesuggest' => 0,
2189 'ajaxsearch' => 0,
2190 'skin' => false,
2191 'math' => 1,
2192 'usenewrc' => 0,
2193 'rcdays' => 7,
2194 'rclimit' => 50,
2195 'wllimit' => 250,
2196 'hideminor' => 0,
2197 'highlightbroken' => 1,
2198 'stubthreshold' => 0,
2199 'previewontop' => 1,
2200 'previewonfirst' => 0,
2201 'editsection' => 1,
2202 'editsectiononrightclick' => 0,
2203 'editondblclick' => 0,
2204 'editwidth' => 0,
2205 'showtoc' => 1,
2206 'showtoolbar' => 1,
2207 'minordefault' => 0,
2208 'date' => 'default',
2209 'imagesize' => 2,
2210 'thumbsize' => 2,
2211 'rememberpassword' => 0,
2212 'enotifwatchlistpages' => 0,
2213 'enotifusertalkpages' => 1,
2214 'enotifminoredits' => 0,
2215 'enotifrevealaddr' => 0,
2216 'shownumberswatching' => 1,
2217 'fancysig' => 0,
2218 'externaleditor' => 0,
2219 'externaldiff' => 0,
2220 'showjumplinks' => 1,
2221 'numberheadings' => 0,
2222 'uselivepreview' => 0,
2223 'watchlistdays' => 3.0,
2224 'extendwatchlist' => 0,
2225 'watchlisthideminor' => 0,
2226 'watchlisthidebots' => 0,
2227 'watchlisthideown' => 0,
2228 'watchcreations' => 0,
2229 'watchdefault' => 0,
2230 'watchmoves' => 0,
2231 'watchdeletion' => 0,
2232 'convertlink' => 0,
2233 );
2234
2235 /** Whether or not to allow and use real name fields. Defaults to true. */
2236 $wgAllowRealName = true;
2237
2238 /*****************************************************************************
2239 * Extensions
2240 */
2241
2242 /**
2243 * A list of callback functions which are called once MediaWiki is fully initialised
2244 */
2245 $wgExtensionFunctions = array();
2246
2247 /**
2248 * Extension functions for initialisation of skins. This is called somewhat earlier
2249 * than $wgExtensionFunctions.
2250 */
2251 $wgSkinExtensionFunctions = array();
2252
2253 /**
2254 * Extension messages files
2255 * Associative array mapping extension name to the filename where messages can be found.
2256 * The file must create a variable called $messages.
2257 * When the messages are needed, the extension should call wfLoadExtensionMessages().
2258 *
2259 * Example:
2260 * $wgExtensionMessagesFiles['ConfirmEdit'] = dirname(__FILE__).'/ConfirmEdit.i18n.php';
2261 *
2262 */
2263 $wgExtensionMessagesFiles = array();
2264
2265 /**
2266 * Aliases for special pages provided by extensions.
2267 * Associative array mapping special page to array of aliases. First alternative
2268 * for each special page will be used as the normalised name for it. English
2269 * aliases will be added to the end of the list so that they always work. The
2270 * file must define a variable $aliases.
2271 *
2272 * Example:
2273 * $wgExtensionAliasesFiles['Translate'] = dirname(__FILE__).'/Translate.alias.php';
2274 */
2275 $wgExtensionAliasesFiles = array();
2276
2277 /**
2278 * Parser output hooks.
2279 * This is an associative array where the key is an extension-defined tag
2280 * (typically the extension name), and the value is a PHP callback.
2281 * These will be called as an OutputPageParserOutput hook, if the relevant
2282 * tag has been registered with the parser output object.
2283 *
2284 * Registration is done with $pout->addOutputHook( $tag, $data ).
2285 *
2286 * The callback has the form:
2287 * function outputHook( $outputPage, $parserOutput, $data ) { ... }
2288 */
2289 $wgParserOutputHooks = array();
2290
2291 /**
2292 * List of valid skin names.
2293 * The key should be the name in all lower case, the value should be a display name.
2294 * The default skins will be added later, by Skin::getSkinNames(). Use
2295 * Skin::getSkinNames() as an accessor if you wish to have access to the full list.
2296 */
2297 $wgValidSkinNames = array();
2298
2299 /**
2300 * Special page list.
2301 * See the top of SpecialPage.php for documentation.
2302 */
2303 $wgSpecialPages = array();
2304
2305 /**
2306 * Array mapping class names to filenames, for autoloading.
2307 */
2308 $wgAutoloadClasses = array();
2309
2310 /**
2311 * An array of extension types and inside that their names, versions, authors,
2312 * urls, descriptions and pointers to localized description msgs. Note that
2313 * the version, url, description and descriptionmsg key can be omitted.
2314 *
2315 * <code>
2316 * $wgExtensionCredits[$type][] = array(
2317 * 'name' => 'Example extension',
2318 * 'version' => 1.9,
2319 * 'svn-revision' => '$LastChangedRevision$',
2320 * 'author' => 'Foo Barstein',
2321 * 'url' => 'http://wwww.example.com/Example%20Extension/',
2322 * 'description' => 'An example extension',
2323 * 'descriptionmsg' => 'exampleextension-desc',
2324 * );
2325 * </code>
2326 *
2327 * Where $type is 'specialpage', 'parserhook', 'variable', 'media' or 'other'.
2328 */
2329 $wgExtensionCredits = array();
2330 /*
2331 * end extensions
2332 ******************************************************************************/
2333
2334 /**
2335 * Allow user Javascript page?
2336 * This enables a lot of neat customizations, but may
2337 * increase security risk to users and server load.
2338 */
2339 $wgAllowUserJs = false;
2340
2341 /**
2342 * Allow user Cascading Style Sheets (CSS)?
2343 * This enables a lot of neat customizations, but may
2344 * increase security risk to users and server load.
2345 */
2346 $wgAllowUserCss = false;
2347
2348 /** Use the site's Javascript page? */
2349 $wgUseSiteJs = true;
2350
2351 /** Use the site's Cascading Style Sheets (CSS)? */
2352 $wgUseSiteCss = true;
2353
2354 /** Filter for Special:Randompage. Part of a WHERE clause */
2355 $wgExtraRandompageSQL = false;
2356
2357 /** Allow the "info" action, very inefficient at the moment */
2358 $wgAllowPageInfo = false;
2359
2360 /** Maximum indent level of toc. */
2361 $wgMaxTocLevel = 999;
2362
2363 /** Name of the external diff engine to use */
2364 $wgExternalDiffEngine = false;
2365
2366 /** Use RC Patrolling to check for vandalism */
2367 $wgUseRCPatrol = true;
2368
2369 /** Use new page patrolling to check new pages on Special:Newpages */
2370 $wgUseNPPatrol = true;
2371
2372 /** Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages */
2373 $wgFeed = true;
2374
2375 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
2376 * eg Recentchanges, Newpages. */
2377 $wgFeedLimit = 50;
2378
2379 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
2380 * A cached version will continue to be served out even if changes
2381 * are made, until this many seconds runs out since the last render.
2382 *
2383 * If set to 0, feed caching is disabled. Use this for debugging only;
2384 * feed generation can be pretty slow with diffs.
2385 */
2386 $wgFeedCacheTimeout = 60;
2387
2388 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
2389 * pages larger than this size. */
2390 $wgFeedDiffCutoff = 32768;
2391
2392
2393 /**
2394 * Additional namespaces. If the namespaces defined in Language.php and
2395 * Namespace.php are insufficient, you can create new ones here, for example,
2396 * to import Help files in other languages.
2397 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
2398 * no longer be accessible. If you rename it, then you can access them through
2399 * the new namespace name.
2400 *
2401 * Custom namespaces should start at 100 to avoid conflicting with standard
2402 * namespaces, and should always follow the even/odd main/talk pattern.
2403 */
2404 #$wgExtraNamespaces =
2405 # array(100 => "Hilfe",
2406 # 101 => "Hilfe_Diskussion",
2407 # 102 => "Aide",
2408 # 103 => "Discussion_Aide"
2409 # );
2410 $wgExtraNamespaces = NULL;
2411
2412 /**
2413 * Namespace aliases
2414 * These are alternate names for the primary localised namespace names, which
2415 * are defined by $wgExtraNamespaces and the language file. If a page is
2416 * requested with such a prefix, the request will be redirected to the primary
2417 * name.
2418 *
2419 * Set this to a map from namespace names to IDs.
2420 * Example:
2421 * $wgNamespaceAliases = array(
2422 * 'Wikipedian' => NS_USER,
2423 * 'Help' => 100,
2424 * );
2425 */
2426 $wgNamespaceAliases = array();
2427
2428 /**
2429 * Limit images on image description pages to a user-selectable limit. In order
2430 * to reduce disk usage, limits can only be selected from a list.
2431 * The user preference is saved as an array offset in the database, by default
2432 * the offset is set with $wgDefaultUserOptions['imagesize']. Make sure you
2433 * change it if you alter the array (see bug 8858).
2434 * This is the list of settings the user can choose from:
2435 */
2436 $wgImageLimits = array (
2437 array(320,240),
2438 array(640,480),
2439 array(800,600),
2440 array(1024,768),
2441 array(1280,1024),
2442 array(10000,10000) );
2443
2444 /**
2445 * Adjust thumbnails on image pages according to a user setting. In order to
2446 * reduce disk usage, the values can only be selected from a list. This is the
2447 * list of settings the user can choose from:
2448 */
2449 $wgThumbLimits = array(
2450 120,
2451 150,
2452 180,
2453 200,
2454 250,
2455 300
2456 );
2457
2458 /**
2459 * Adjust width of upright images when parameter 'upright' is used
2460 * This allows a nicer look for upright images without the need to fix the width
2461 * by hardcoded px in wiki sourcecode.
2462 */
2463 $wgThumbUpright = 0.75;
2464
2465 /**
2466 * On category pages, show thumbnail gallery for images belonging to that
2467 * category instead of listing them as articles.
2468 */
2469 $wgCategoryMagicGallery = true;
2470
2471 /**
2472 * Paging limit for categories
2473 */
2474 $wgCategoryPagingLimit = 200;
2475
2476 /**
2477 * Browser Blacklist for unicode non compliant browsers
2478 * Contains a list of regexps : "/regexp/" matching problematic browsers
2479 */
2480 $wgBrowserBlackList = array(
2481 /**
2482 * Netscape 2-4 detection
2483 * The minor version may contain strings such as "Gold" or "SGoldC-SGI"
2484 * Lots of non-netscape user agents have "compatible", so it's useful to check for that
2485 * with a negative assertion. The [UIN] identifier specifies the level of security
2486 * in a Netscape/Mozilla browser, checking for it rules out a number of fakers.
2487 * The language string is unreliable, it is missing on NS4 Mac.
2488 *
2489 * Reference: http://www.psychedelix.com/agents/index.shtml
2490 */
2491 '/^Mozilla\/2\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2492 '/^Mozilla\/3\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2493 '/^Mozilla\/4\.[^ ]+ [^(]*?\((?!compatible).*; [UIN]/',
2494
2495 /**
2496 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
2497 *
2498 * Known useragents:
2499 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
2500 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
2501 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
2502 * - [...]
2503 *
2504 * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
2505 * @link http://en.wikipedia.org/wiki/Template%3AOS9
2506 */
2507 '/^Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/',
2508
2509 /**
2510 * Google wireless transcoder, seems to eat a lot of chars alive
2511 * http://it.wikipedia.org/w/index.php?title=Luciano_Ligabue&diff=prev&oldid=8857361
2512 */
2513 '/^Mozilla\/4\.0 \(compatible; MSIE 6.0; Windows NT 5.0; Google Wireless Transcoder;\)/'
2514 );
2515
2516 /**
2517 * Fake out the timezone that the server thinks it's in. This will be used for
2518 * date display and not for what's stored in the DB. Leave to null to retain
2519 * your server's OS-based timezone value. This is the same as the timezone.
2520 *
2521 * This variable is currently used ONLY for signature formatting, not for
2522 * anything else.
2523 */
2524 # $wgLocaltimezone = 'GMT';
2525 # $wgLocaltimezone = 'PST8PDT';
2526 # $wgLocaltimezone = 'Europe/Sweden';
2527 # $wgLocaltimezone = 'CET';
2528 $wgLocaltimezone = null;
2529
2530 /**
2531 * Set an offset from UTC in minutes to use for the default timezone setting
2532 * for anonymous users and new user accounts.
2533 *
2534 * This setting is used for most date/time displays in the software, and is
2535 * overrideable in user preferences. It is *not* used for signature timestamps.
2536 *
2537 * You can set it to match the configured server timezone like this:
2538 * $wgLocalTZoffset = date("Z") / 60;
2539 *
2540 * If your server is not configured for the timezone you want, you can set
2541 * this in conjunction with the signature timezone and override the TZ
2542 * environment variable like so:
2543 * $wgLocaltimezone="Europe/Berlin";
2544 * putenv("TZ=$wgLocaltimezone");
2545 * $wgLocalTZoffset = date("Z") / 60;
2546 *
2547 * Leave at NULL to show times in universal time (UTC/GMT).
2548 */
2549 $wgLocalTZoffset = null;
2550
2551
2552 /**
2553 * When translating messages with wfMsg(), it is not always clear what should be
2554 * considered UI messages and what shoud be content messages.
2555 *
2556 * For example, for regular wikipedia site like en, there should be only one
2557 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
2558 * it as content of the site and call wfMsgForContent(), while for rendering the
2559 * text of the link, we call wfMsg(). The code in default behaves this way.
2560 * However, sites like common do offer different versions of 'mainpage' and the
2561 * like for different languages. This array provides a way to override the
2562 * default behavior. For example, to allow language specific mainpage and
2563 * community portal, set
2564 *
2565 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
2566 */
2567 $wgForceUIMsgAsContentMsg = array();
2568
2569
2570 /**
2571 * Authentication plugin.
2572 */
2573 $wgAuth = null;
2574
2575 /**
2576 * Global list of hooks.
2577 * Add a hook by doing:
2578 * $wgHooks['event_name'][] = $function;
2579 * or:
2580 * $wgHooks['event_name'][] = array($function, $data);
2581 * or:
2582 * $wgHooks['event_name'][] = array($object, 'method');
2583 */
2584 $wgHooks = array();
2585
2586 /**
2587 * The logging system has two levels: an event type, which describes the
2588 * general category and can be viewed as a named subset of all logs; and
2589 * an action, which is a specific kind of event that can exist in that
2590 * log type.
2591 */
2592 $wgLogTypes = array( '',
2593 'block',
2594 'protect',
2595 'rights',
2596 'delete',
2597 'upload',
2598 'move',
2599 'import',
2600 'patrol',
2601 'merge',
2602 'suppress',
2603 );
2604
2605 /**
2606 * This restricts log access to those who have a certain right
2607 * Users without this will not see it in the option menu and can not view it
2608 * Restricted logs are not added to recent changes
2609 * Logs should remain non-transcludable
2610 */
2611 $wgLogRestrictions = array(
2612 'suppress' => 'suppressionlog'
2613 );
2614
2615 /**
2616 * Lists the message key string for each log type. The localized messages
2617 * will be listed in the user interface.
2618 *
2619 * Extensions with custom log types may add to this array.
2620 */
2621 $wgLogNames = array(
2622 '' => 'all-logs-page',
2623 'block' => 'blocklogpage',
2624 'protect' => 'protectlogpage',
2625 'rights' => 'rightslog',
2626 'delete' => 'dellogpage',
2627 'upload' => 'uploadlogpage',
2628 'move' => 'movelogpage',
2629 'import' => 'importlogpage',
2630 'patrol' => 'patrol-log-page',
2631 'merge' => 'mergelog',
2632 'suppress' => 'suppressionlog',
2633 );
2634
2635 /**
2636 * Lists the message key string for descriptive text to be shown at the
2637 * top of each log type.
2638 *
2639 * Extensions with custom log types may add to this array.
2640 */
2641 $wgLogHeaders = array(
2642 '' => 'alllogstext',
2643 'block' => 'blocklogtext',
2644 'protect' => 'protectlogtext',
2645 'rights' => 'rightslogtext',
2646 'delete' => 'dellogpagetext',
2647 'upload' => 'uploadlogpagetext',
2648 'move' => 'movelogpagetext',
2649 'import' => 'importlogpagetext',
2650 'patrol' => 'patrol-log-header',
2651 'merge' => 'mergelogpagetext',
2652 'suppress' => 'suppressionlogtext',
2653 );
2654
2655 /**
2656 * Lists the message key string for formatting individual events of each
2657 * type and action when listed in the logs.
2658 *
2659 * Extensions with custom log types may add to this array.
2660 */
2661 $wgLogActions = array(
2662 'block/block' => 'blocklogentry',
2663 'block/unblock' => 'unblocklogentry',
2664 'protect/protect' => 'protectedarticle',
2665 'protect/modify' => 'modifiedarticleprotection',
2666 'protect/unprotect' => 'unprotectedarticle',
2667 'rights/rights' => 'rightslogentry',
2668 'delete/delete' => 'deletedarticle',
2669 'delete/restore' => 'undeletedarticle',
2670 'delete/revision' => 'revdelete-logentry',
2671 'delete/event' => 'logdelete-logentry',
2672 'upload/upload' => 'uploadedimage',
2673 'upload/overwrite' => 'overwroteimage',
2674 'upload/revert' => 'uploadedimage',
2675 'move/move' => '1movedto2',
2676 'move/move_redir' => '1movedto2_redir',
2677 'import/upload' => 'import-logentry-upload',
2678 'import/interwiki' => 'import-logentry-interwiki',
2679 'merge/merge' => 'pagemerge-logentry',
2680 'suppress/revision' => 'revdelete-logentry',
2681 'suppress/file' => 'revdelete-logentry',
2682 'suppress/event' => 'logdelete-logentry',
2683 'suppress/delete' => 'suppressedarticle',
2684 'suppress/block' => 'blocklogentry',
2685 );
2686
2687 /**
2688 * The same as above, but here values are names of functions,
2689 * not messages
2690 */
2691 $wgLogActionsHandlers = array();
2692
2693 /**
2694 * List of special pages, followed by what subtitle they should go under
2695 * at Special:SpecialPages
2696 */
2697 $wgSpecialPageGroups = array(
2698 'DoubleRedirects' => 'maintenance',
2699 'BrokenRedirects' => 'maintenance',
2700 'Lonelypages' => 'maintenance',
2701 'Uncategorizedpages' => 'maintenance',
2702 'Uncategorizedcategories' => 'maintenance',
2703 'Uncategorizedimages' => 'maintenance',
2704 'Uncategorizedtemplates' => 'maintenance',
2705 'Unusedcategories' => 'maintenance',
2706 'Unusedimages' => 'maintenance',
2707 'Protectedpages' => 'maintenance',
2708 'Protectedtitles' => 'maintenance',
2709 'Unusedtemplates' => 'maintenance',
2710 'Withoutinterwiki' => 'maintenance',
2711 'Longpages' => 'maintenance',
2712 'Shortpages' => 'maintenance',
2713 'Ancientpages' => 'maintenance',
2714 'Deadendpages' => 'maintenance',
2715 'Wantedpages' => 'maintenance',
2716 'Wantedcategories' => 'maintenance',
2717 'Unwatchedpages' => 'maintenance',
2718 'Fewestrevisions' => 'maintenance',
2719
2720 'Userlogin' => 'login',
2721 'Userlogout' => 'login',
2722 'CreateAccount' => 'login',
2723
2724 'Recentchanges' => 'changes',
2725 'Recentchangeslinked' => 'changes',
2726 'Watchlist' => 'changes',
2727 'Newimages' => 'changes',
2728 'Newpages' => 'changes',
2729 'Log' => 'changes',
2730
2731 'Upload' => 'media',
2732 'Imagelist' => 'media',
2733 'MIMEsearch' => 'media',
2734 'FileDuplicateSearch' => 'media',
2735 'Filepath' => 'media',
2736
2737 'Listusers' => 'users',
2738 'Listgrouprights' => 'users',
2739 'Ipblocklist' => 'users',
2740 'Contributions' => 'users',
2741 'Emailuser' => 'users',
2742 'Listadmins' => 'users',
2743 'Listbots' => 'users',
2744 'Userrights' => 'users',
2745 'Blockip' => 'users',
2746 'Preferences' => 'users',
2747 'Resetpass' => 'users',
2748
2749 'Mostlinked' => 'highuse',
2750 'Mostlinkedcategories' => 'highuse',
2751 'Mostlinkedtemplates' => 'highuse',
2752 'Mostcategories' => 'highuse',
2753 'Mostimages' => 'highuse',
2754 'Mostrevisions' => 'highuse',
2755
2756 'Allpages' => 'pages',
2757 'Prefixindex' => 'pages',
2758 'Listredirects' => 'pages',
2759 'Categories' => 'pages',
2760 'Disambiguations' => 'pages',
2761
2762 'Randompage' => 'redirects',
2763 'Randomredirect' => 'redirects',
2764 'Mypage' => 'redirects',
2765 'Mytalk' => 'redirects',
2766 'Mycontributions' => 'redirects',
2767 'Search' => 'redirects',
2768
2769 'Movepage' => 'pagetools',
2770 'MergeHistory' => 'pagetools',
2771 'Revisiondelete' => 'pagetools',
2772 'Undelete' => 'pagetools',
2773 'Export' => 'pagetools',
2774 'Import' => 'pagetools',
2775 'Whatlinkshere' => 'pagetools',
2776
2777 'Statistics' => 'wiki',
2778 'Version' => 'wiki',
2779 'Lockdb' => 'wiki',
2780 'Unlockdb' => 'wiki',
2781 'Allmessages' => 'wiki',
2782 'Popularpages' => 'wiki',
2783
2784 'Specialpages' => 'other',
2785 'Blockme' => 'other',
2786 'Booksources' => 'other',
2787 );
2788
2789 /**
2790 * Experimental preview feature to fetch rendered text
2791 * over an XMLHttpRequest from JavaScript instead of
2792 * forcing a submit and reload of the whole page.
2793 * Leave disabled unless you're testing it.
2794 */
2795 $wgLivePreview = false;
2796
2797 /**
2798 * Disable the internal MySQL-based search, to allow it to be
2799 * implemented by an extension instead.
2800 */
2801 $wgDisableInternalSearch = false;
2802
2803 /**
2804 * Set this to a URL to forward search requests to some external location.
2805 * If the URL includes '$1', this will be replaced with the URL-encoded
2806 * search term.
2807 *
2808 * For example, to forward to Google you'd have something like:
2809 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
2810 * '&domains=http://example.com' .
2811 * '&sitesearch=http://example.com' .
2812 * '&ie=utf-8&oe=utf-8';
2813 */
2814 $wgSearchForwardUrl = null;
2815
2816 /**
2817 * If true, external URL links in wiki text will be given the
2818 * rel="nofollow" attribute as a hint to search engines that
2819 * they should not be followed for ranking purposes as they
2820 * are user-supplied and thus subject to spamming.
2821 */
2822 $wgNoFollowLinks = true;
2823
2824 /**
2825 * Namespaces in which $wgNoFollowLinks doesn't apply.
2826 * See Language.php for a list of namespaces.
2827 */
2828 $wgNoFollowNsExceptions = array();
2829
2830 /**
2831 * Default robot policy. The default policy is to encourage indexing and fol-
2832 * lowing of links. It may be overridden on a per-namespace and/or per-page
2833 * basis.
2834 */
2835 $wgDefaultRobotPolicy = 'index,follow';
2836
2837 /**
2838 * Robot policies per namespaces. The default policy is given above, the array
2839 * is made of namespace constants as defined in includes/Defines.php. You can-
2840 * not specify a different default policy for NS_SPECIAL: it is always noindex,
2841 * nofollow. This is because a number of special pages (e.g., ListPages) have
2842 * many permutations of options that display the same data under redundant
2843 * URLs, so search engine spiders risk getting lost in a maze of twisty special
2844 * pages, all alike, and never reaching your actual content.
2845 *
2846 * Example:
2847 * $wgNamespaceRobotPolicies = array( NS_TALK => 'noindex' );
2848 */
2849 $wgNamespaceRobotPolicies = array();
2850
2851 /**
2852 * Robot policies per article. These override the per-namespace robot policies.
2853 * Must be in the form of an array where the key part is a properly canonical-
2854 * ised text form title and the value is a robot policy.
2855 * Example:
2856 * $wgArticleRobotPolicies = array( 'Main Page' => 'noindex,follow',
2857 * 'User:Bob' => 'index,follow' );
2858 * Example that DOES NOT WORK because the names are not canonical text forms:
2859 * $wgArticleRobotPolicies = array(
2860 * # Underscore, not space!
2861 * 'Main_Page' => 'noindex,follow',
2862 * # "Project", not the actual project name!
2863 * 'Project:X' => 'index,follow',
2864 * # Needs to be "Abc", not "abc" (unless $wgCapitalLinks is false)!
2865 * 'abc' => 'noindex,nofollow'
2866 * );
2867 */
2868 $wgArticleRobotPolicies = array();
2869
2870 /**
2871 * An array of namespace keys in which the __INDEX__/__NOINDEX__ magic words
2872 * will not function, so users can't decide whether pages in that namespace are
2873 * indexed by search engines. If set to null, default to $wgContentNamespaces.
2874 * Example:
2875 * $wgExemptFromUserRobotsControl = array( NS_MAIN, NS_TALK, NS_PROJECT );
2876 */
2877 $wgExemptFromUserRobotsControl = null;
2878
2879 /**
2880 * Specifies the minimal length of a user password. If set to 0, empty pass-
2881 * words are allowed.
2882 */
2883 $wgMinimalPasswordLength = 0;
2884
2885 /**
2886 * Activate external editor interface for files and pages
2887 * See http://meta.wikimedia.org/wiki/Help:External_editors
2888 */
2889 $wgUseExternalEditor = true;
2890
2891 /** Whether or not to sort special pages in Special:Specialpages */
2892
2893 $wgSortSpecialPages = true;
2894
2895 /**
2896 * Specify the name of a skin that should not be presented in the list of a-
2897 * vailable skins. Use for blacklisting a skin which you do not want to remove
2898 * from the .../skins/ directory
2899 */
2900 $wgSkipSkin = '';
2901 $wgSkipSkins = array(); # More of the same
2902
2903 /**
2904 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
2905 */
2906 $wgDisabledActions = array();
2907
2908 /**
2909 * Disable redirects to special pages and interwiki redirects, which use a 302
2910 * and have no "redirected from" link.
2911 */
2912 $wgDisableHardRedirects = false;
2913
2914 /**
2915 * Use http.dnsbl.sorbs.net to check for open proxies
2916 */
2917 $wgEnableSorbs = false;
2918 $wgSorbsUrl = 'http.dnsbl.sorbs.net.';
2919
2920 /**
2921 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite
2922 * what the other methods might say.
2923 */
2924 $wgProxyWhitelist = array();
2925
2926 /**
2927 * Simple rate limiter options to brake edit floods. Maximum number actions
2928 * allowed in the given number of seconds; after that the violating client re-
2929 * ceives HTTP 500 error pages until the period elapses.
2930 *
2931 * array( 4, 60 ) for a maximum of 4 hits in 60 seconds.
2932 *
2933 * This option set is experimental and likely to change. Requires memcached.
2934 */
2935 $wgRateLimits = array(
2936 'edit' => array(
2937 'anon' => null, // for any and all anonymous edits (aggregate)
2938 'user' => null, // for each logged-in user
2939 'newbie' => null, // for each recent (autoconfirmed) account; overrides 'user'
2940 'ip' => null, // for each anon and recent account
2941 'subnet' => null, // ... with final octet removed
2942 ),
2943 'move' => array(
2944 'user' => null,
2945 'newbie' => null,
2946 'ip' => null,
2947 'subnet' => null,
2948 ),
2949 'mailpassword' => array(
2950 'anon' => NULL,
2951 ),
2952 'emailuser' => array(
2953 'user' => null,
2954 ),
2955 );
2956
2957 /**
2958 * Set to a filename to log rate limiter hits.
2959 */
2960 $wgRateLimitLog = null;
2961
2962 /**
2963 * Array of groups which should never trigger the rate limiter
2964 *
2965 * @deprecated as of 1.13.0, the preferred method is using
2966 * $wgGroupPermissions[]['noratelimit']. However, this will still
2967 * work if desired.
2968 *
2969 * $wgRateLimitsExcludedGroups = array( 'sysop', 'bureaucrat' );
2970 */
2971 $wgRateLimitsExcludedGroups = array();
2972
2973 /**
2974 * On Special:Unusedimages, consider images "used", if they are put
2975 * into a category. Default (false) is not to count those as used.
2976 */
2977 $wgCountCategorizedImagesAsUsed = false;
2978
2979 /**
2980 * External stores allow including content
2981 * from non database sources following URL links
2982 *
2983 * Short names of ExternalStore classes may be specified in an array here:
2984 * $wgExternalStores = array("http","file","custom")...
2985 *
2986 * CAUTION: Access to database might lead to code execution
2987 */
2988 $wgExternalStores = false;
2989
2990 /**
2991 * An array of external mysql servers, e.g.
2992 * $wgExternalServers = array( 'cluster1' => array( 'srv28', 'srv29', 'srv30' ) );
2993 * Used by LBFactory_Simple, may be ignored if $wgLBFactoryConf is set to another class.
2994 */
2995 $wgExternalServers = array();
2996
2997 /**
2998 * The place to put new revisions, false to put them in the local text table.
2999 * Part of a URL, e.g. DB://cluster1
3000 *
3001 * Can be an array instead of a single string, to enable data distribution. Keys
3002 * must be consecutive integers, starting at zero. Example:
3003 *
3004 * $wgDefaultExternalStore = array( 'DB://cluster1', 'DB://cluster2' );
3005 *
3006 */
3007 $wgDefaultExternalStore = false;
3008
3009 /**
3010 * Revision text may be cached in $wgMemc to reduce load on external storage
3011 * servers and object extraction overhead for frequently-loaded revisions.
3012 *
3013 * Set to 0 to disable, or number of seconds before cache expiry.
3014 */
3015 $wgRevisionCacheExpiry = 0;
3016
3017 /**
3018 * list of trusted media-types and mime types.
3019 * Use the MEDIATYPE_xxx constants to represent media types.
3020 * This list is used by Image::isSafeFile
3021 *
3022 * Types not listed here will have a warning about unsafe content
3023 * displayed on the images description page. It would also be possible
3024 * to use this for further restrictions, like disabling direct
3025 * [[media:...]] links for non-trusted formats.
3026 */
3027 $wgTrustedMediaFormats= array(
3028 MEDIATYPE_BITMAP, //all bitmap formats
3029 MEDIATYPE_AUDIO, //all audio formats
3030 MEDIATYPE_VIDEO, //all plain video formats
3031 "image/svg+xml", //svg (only needed if inline rendering of svg is not supported)
3032 "application/pdf", //PDF files
3033 #"application/x-shockwave-flash", //flash/shockwave movie
3034 );
3035
3036 /**
3037 * Allow special page inclusions such as {{Special:Allpages}}
3038 */
3039 $wgAllowSpecialInclusion = true;
3040
3041 /**
3042 * Timeout for HTTP requests done via CURL
3043 */
3044 $wgHTTPTimeout = 3;
3045
3046 /**
3047 * Proxy to use for CURL requests.
3048 */
3049 $wgHTTPProxy = false;
3050
3051 /**
3052 * Enable interwiki transcluding. Only when iw_trans=1.
3053 */
3054 $wgEnableScaryTranscluding = false;
3055 /**
3056 * Expiry time for interwiki transclusion
3057 */
3058 $wgTranscludeCacheExpiry = 3600;
3059
3060 /**
3061 * Support blog-style "trackbacks" for articles. See
3062 * http://www.sixapart.com/pronet/docs/trackback_spec for details.
3063 */
3064 $wgUseTrackbacks = false;
3065
3066 /**
3067 * Enable filtering of categories in Recentchanges
3068 */
3069 $wgAllowCategorizedRecentChanges = false ;
3070
3071 /**
3072 * Number of jobs to perform per request. May be less than one in which case
3073 * jobs are performed probabalistically. If this is zero, jobs will not be done
3074 * during ordinary apache requests. In this case, maintenance/runJobs.php should
3075 * be run periodically.
3076 */
3077 $wgJobRunRate = 1;
3078
3079 /**
3080 * Number of rows to update per job
3081 */
3082 $wgUpdateRowsPerJob = 500;
3083
3084 /**
3085 * Number of rows to update per query
3086 */
3087 $wgUpdateRowsPerQuery = 10;
3088
3089 /**
3090 * Enable AJAX framework
3091 */
3092 $wgUseAjax = true;
3093
3094 /**
3095 * Enable auto suggestion for the search bar
3096 * Requires $wgUseAjax to be true too.
3097 * Causes wfSajaxSearch to be added to $wgAjaxExportList
3098 */
3099 $wgAjaxSearch = false;
3100
3101 /**
3102 * List of Ajax-callable functions.
3103 * Extensions acting as Ajax callbacks must register here
3104 */
3105 $wgAjaxExportList = array( );
3106
3107 /**
3108 * Enable watching/unwatching pages using AJAX.
3109 * Requires $wgUseAjax to be true too.
3110 * Causes wfAjaxWatch to be added to $wgAjaxExportList
3111 */
3112 $wgAjaxWatch = true;
3113
3114 /**
3115 * Enable AJAX check for file overwrite, pre-upload
3116 */
3117 $wgAjaxUploadDestCheck = true;
3118
3119 /**
3120 * Enable previewing licences via AJAX
3121 */
3122 $wgAjaxLicensePreview = true;
3123
3124 /**
3125 * Allow DISPLAYTITLE to change title display
3126 */
3127 $wgAllowDisplayTitle = true;
3128
3129 /**
3130 * Array of usernames which may not be registered or logged in from
3131 * Maintenance scripts can still use these
3132 */
3133 $wgReservedUsernames = array(
3134 'MediaWiki default', // Default 'Main Page' and MediaWiki: message pages
3135 'Conversion script', // Used for the old Wikipedia software upgrade
3136 'Maintenance script', // Maintenance scripts which perform editing, image import script
3137 'Template namespace initialisation script', // Used in 1.2->1.3 upgrade
3138 'msg:double-redirect-fixer', // Automatic double redirect fix
3139 );
3140
3141 /**
3142 * MediaWiki will reject HTMLesque tags in uploaded files due to idiotic browsers which can't
3143 * perform basic stuff like MIME detection and which are vulnerable to further idiots uploading
3144 * crap files as images. When this directive is on, <title> will be allowed in files with
3145 * an "image/svg+xml" MIME type. You should leave this disabled if your web server is misconfigured
3146 * and doesn't send appropriate MIME types for SVG images.
3147 */
3148 $wgAllowTitlesInSVG = false;
3149
3150 /**
3151 * Array of namespaces which can be deemed to contain valid "content", as far
3152 * as the site statistics are concerned. Useful if additional namespaces also
3153 * contain "content" which should be considered when generating a count of the
3154 * number of articles in the wiki.
3155 */
3156 $wgContentNamespaces = array( NS_MAIN );
3157
3158 /**
3159 * Maximum amount of virtual memory available to shell processes under linux, in KB.
3160 */
3161 $wgMaxShellMemory = 102400;
3162
3163 /**
3164 * Maximum file size created by shell processes under linux, in KB
3165 * ImageMagick convert for example can be fairly hungry for scratch space
3166 */
3167 $wgMaxShellFileSize = 102400;
3168
3169 /**
3170 * DJVU settings
3171 * Path of the djvudump executable
3172 * Enable this and $wgDjvuRenderer to enable djvu rendering
3173 */
3174 # $wgDjvuDump = 'djvudump';
3175 $wgDjvuDump = null;
3176
3177 /**
3178 * Path of the ddjvu DJVU renderer
3179 * Enable this and $wgDjvuDump to enable djvu rendering
3180 */
3181 # $wgDjvuRenderer = 'ddjvu';
3182 $wgDjvuRenderer = null;
3183
3184 /**
3185 * Path of the djvutoxml executable
3186 * This works like djvudump except much, much slower as of version 3.5.
3187 *
3188 * For now I recommend you use djvudump instead. The djvuxml output is
3189 * probably more stable, so we'll switch back to it as soon as they fix
3190 * the efficiency problem.
3191 * http://sourceforge.net/tracker/index.php?func=detail&aid=1704049&group_id=32953&atid=406583
3192 */
3193 # $wgDjvuToXML = 'djvutoxml';
3194 $wgDjvuToXML = null;
3195
3196
3197 /**
3198 * Shell command for the DJVU post processor
3199 * Default: pnmtopng, since ddjvu generates ppm output
3200 * Set this to false to output the ppm file directly.
3201 */
3202 $wgDjvuPostProcessor = 'pnmtojpeg';
3203 /**
3204 * File extension for the DJVU post processor output
3205 */
3206 $wgDjvuOutputExtension = 'jpg';
3207
3208 /**
3209 * Enable the MediaWiki API for convenient access to
3210 * machine-readable data via api.php
3211 *
3212 * See http://www.mediawiki.org/wiki/API
3213 */
3214 $wgEnableAPI = true;
3215
3216 /**
3217 * Allow the API to be used to perform write operations
3218 * (page edits, rollback, etc.) when an authorised user
3219 * accesses it
3220 */
3221 $wgEnableWriteAPI = false;
3222
3223 /**
3224 * API module extensions
3225 * Associative array mapping module name to class name.
3226 * Extension modules may override the core modules.
3227 */
3228 $wgAPIModules = array();
3229 $wgAPIMetaModules = array();
3230 $wgAPIPropModules = array();
3231 $wgAPIListModules = array();
3232
3233 /**
3234 * Maximum amount of rows to scan in a DB query in the API
3235 * The default value is generally fine
3236 */
3237 $wgAPIMaxDBRows = 5000;
3238
3239 /**
3240 * Parser test suite files to be run by parserTests.php when no specific
3241 * filename is passed to it.
3242 *
3243 * Extensions may add their own tests to this array, or site-local tests
3244 * may be added via LocalSettings.php
3245 *
3246 * Use full paths.
3247 */
3248 $wgParserTestFiles = array(
3249 "$IP/maintenance/parserTests.txt",
3250 );
3251
3252 /**
3253 * Break out of framesets. This can be used to prevent external sites from
3254 * framing your site with ads.
3255 */
3256 $wgBreakFrames = false;
3257
3258 /**
3259 * Set this to an array of special page names to prevent
3260 * maintenance/updateSpecialPages.php from updating those pages.
3261 */
3262 $wgDisableQueryPageUpdate = false;
3263
3264 /**
3265 * Disable output compression (enabled by default if zlib is available)
3266 */
3267 $wgDisableOutputCompression = false;
3268
3269 /**
3270 * If lag is higher than $wgSlaveLagWarning, show a warning in some special
3271 * pages (like watchlist). If the lag is higher than $wgSlaveLagCritical,
3272 * show a more obvious warning.
3273 */
3274 $wgSlaveLagWarning = 10;
3275 $wgSlaveLagCritical = 30;
3276
3277 /**
3278 * Parser configuration. Associative array with the following members:
3279 *
3280 * class The class name
3281 *
3282 * preprocessorClass The preprocessor class. Two classes are currently available:
3283 * Preprocessor_Hash, which uses plain PHP arrays for tempoarary
3284 * storage, and Preprocessor_DOM, which uses the DOM module for
3285 * temporary storage. Preprocessor_DOM generally uses less memory;
3286 * the speed of the two is roughly the same.
3287 *
3288 * If this parameter is not given, it uses Preprocessor_DOM if the
3289 * DOM module is available, otherwise it uses Preprocessor_Hash.
3290 *
3291 * Has no effect on Parser_OldPP.
3292 *
3293 * The entire associative array will be passed through to the constructor as
3294 * the first parameter. Note that only Setup.php can use this variable --
3295 * the configuration will change at runtime via $wgParser member functions, so
3296 * the contents of this variable will be out-of-date. The variable can only be
3297 * changed during LocalSettings.php, in particular, it can't be changed during
3298 * an extension setup function.
3299 */
3300 $wgParserConf = array(
3301 'class' => 'Parser',
3302 #'preprocessorClass' => 'Preprocessor_Hash',
3303 );
3304
3305 /**
3306 * Hooks that are used for outputting exceptions. Format is:
3307 * $wgExceptionHooks[] = $funcname
3308 * or:
3309 * $wgExceptionHooks[] = array( $class, $funcname )
3310 * Hooks should return strings or false
3311 */
3312 $wgExceptionHooks = array();
3313
3314 /**
3315 * Page property link table invalidation lists. Should only be set by exten-
3316 * sions.
3317 */
3318 $wgPagePropLinkInvalidations = array(
3319 'hiddencat' => 'categorylinks',
3320 );
3321
3322 /**
3323 * Maximum number of links to a redirect page listed on
3324 * Special:Whatlinkshere/RedirectDestination
3325 */
3326 $wgMaxRedirectLinksRetrieved = 500;
3327
3328 /**
3329 * Maximum number of calls per parse to expensive parser functions such as
3330 * PAGESINCATEGORY.
3331 */
3332 $wgExpensiveParserFunctionLimit = 100;
3333
3334 /**
3335 * Maximum number of pages to move at once when moving subpages with a page.
3336 */
3337 $wgMaximumMovedPages = 100;
3338
3339 /**
3340 * Array of namespaces to generate a sitemap for when the
3341 * maintenance/generateSitemap.php script is run, or false if one is to be ge-
3342 * nerated for all namespaces.
3343 */
3344 $wgSitemapNamespaces = false;
3345
3346
3347 /**
3348 * If user doesn't specify any edit summary when making a an edit, MediaWiki
3349 * will try to automatically create one. This feature can be disabled by set-
3350 * ting this variable false.
3351 */
3352 $wgUseAutomaticEditSummaries = true;