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