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