* (bug 4303) Add $wgFavicon to change the shorticon icon link from
[lhc/web/wiklou.git] / includes / DefaultSettings.php
1 <?php
2 /**
3 *
4 * DO NOT EVER 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/Help:Configuration_settings
17 *
18 * @package MediaWiki
19 */
20
21 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
22 if( !defined( 'MEDIAWIKI' ) ) {
23 echo "This file is part of MediaWiki and is not a valid entry point\n";
24 die( -1 );
25 }
26
27 /**
28 * Create a site configuration object
29 * Not used for much in a default install
30 */
31 require_once( 'includes/SiteConfiguration.php' );
32 $wgConf = new SiteConfiguration;
33
34 /** MediaWiki version number */
35 $wgVersion = '1.6alpha';
36
37 /** Name of the site. It must be changed in LocalSettings.php */
38 $wgSitename = 'MediaWiki';
39
40 /** Will be same as you set @see $wgSitename */
41 $wgMetaNamespace = FALSE;
42
43
44 /** URL of the server. It will be automatically built including https mode */
45 $wgServer = '';
46
47 if( isset( $_SERVER['SERVER_NAME'] ) ) {
48 $wgServerName = $_SERVER['SERVER_NAME'];
49 } elseif( isset( $_SERVER['HOSTNAME'] ) ) {
50 $wgServerName = $_SERVER['HOSTNAME'];
51 } elseif( isset( $_SERVER['HTTP_HOST'] ) ) {
52 $wgServerName = $_SERVER['HTTP_HOST'];
53 } elseif( isset( $_SERVER['SERVER_ADDR'] ) ) {
54 $wgServerName = $_SERVER['SERVER_ADDR'];
55 } else {
56 $wgServerName = 'localhost';
57 }
58
59 # check if server use https:
60 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
61
62 $wgServer = $wgProto.'://' . $wgServerName;
63 # If the port is a non-standard one, add it to the URL
64 if( isset( $_SERVER['SERVER_PORT'] )
65 && ( ( $wgProto == 'http' && $_SERVER['SERVER_PORT'] != 80 )
66 || ( $wgProto == 'https' && $_SERVER['SERVER_PORT'] != 443 ) ) ) {
67
68 $wgServer .= ":" . $_SERVER['SERVER_PORT'];
69 }
70
71
72 /**
73 * The path we should point to.
74 * It might be a virtual path in case with use apache mod_rewrite for example
75 */
76 $wgScriptPath = '/wiki';
77
78 /**
79 * Whether to support URLs like index.php/Page_title
80 * @global bool $wgUsePathInfo
81 */
82 $wgUsePathInfo = ( strpos( php_sapi_name(), 'cgi' ) === false );
83
84
85 /**#@+
86 * Script users will request to get articles
87 * ATTN: Old installations used wiki.phtml and redirect.phtml -
88 * make sure that LocalSettings.php is correctly set!
89 * @deprecated
90 */
91 /**
92 * @global string $wgScript
93 */
94 $wgScript = "{$wgScriptPath}/index.php";
95 /**
96 * @global string $wgRedirectScript
97 */
98 $wgRedirectScript = "{$wgScriptPath}/redirect.php";
99 /**#@-*/
100
101
102 /**#@+
103 * @global string
104 */
105 /**
106 * style path as seen by users
107 * @global string $wgStylePath
108 */
109 $wgStylePath = "{$wgScriptPath}/skins";
110 /**
111 * filesystem stylesheets directory
112 * @global string $wgStyleDirectory
113 */
114 $wgStyleDirectory = "{$IP}/skins";
115 $wgStyleSheetPath = &$wgStylePath;
116 $wgArticlePath = "{$wgScript}?title=$1";
117 $wgUploadPath = "{$wgScriptPath}/upload";
118 $wgUploadDirectory = "{$IP}/upload";
119 $wgHashedUploadDirectory = true;
120 $wgLogo = "{$wgUploadPath}/wiki.png";
121 $wgFavicon = '/favicon.ico';
122 $wgMathPath = "{$wgUploadPath}/math";
123 $wgMathDirectory = "{$wgUploadDirectory}/math";
124 $wgTmpDirectory = "{$wgUploadDirectory}/tmp";
125 $wgUploadBaseUrl = "";
126 /**#@-*/
127
128 /**
129 * Allowed title characters -- regex character class
130 * Don't change this unless you know what you're doing
131 *
132 * Problematic punctuation:
133 * []{}|# Are needed for link syntax, never enable these
134 * % Enabled by default, minor problems with path to query rewrite rules, see below
135 * + Doesn't work with path to query rewrite rules, corrupted by apache
136 * ? Enabled by default, but doesn't work with path to PATH_INFO rewrites
137 *
138 * All three of these punctuation problems can be avoided by using an alias, instead of a
139 * rewrite rule of either variety.
140 *
141 * The problem with % is that when using a path to query rewrite rule, URLs are
142 * double-unescaped: once by Apache's path conversion code, and again by PHP. So
143 * %253F, for example, becomes "?". Our code does not double-escape to compensate
144 * for this, indeed double escaping would break if the double-escaped title was
145 * passed in the query string rather than the path. This is a minor security issue
146 * because articles can be created such that they are hard to view or edit.
147 *
148 * Theoretically 0x80-0x9F of ISO 8859-1 should be disallowed, but
149 * this breaks interlanguage links
150 */
151 $wgLegalTitleChars = " %!\"$&'()*,\\-.\\/0-9:;=?@A-Z\\\\^_`a-z~\\x80-\\xFF";
152
153
154 /**
155 * The external URL protocols
156 */
157 $wgUrlProtocols = array(
158 'http://',
159 'https://',
160 'ftp://',
161 'irc://',
162 'gopher://',
163 'telnet://', // Well if we're going to support the above.. -ævar
164 'nntp://', // @bug 3808 RFC 1738
165 'worldwind://',
166 'mailto:',
167 'news:'
168 );
169
170 /** internal name of virus scanner. This servers as a key to the $wgAntivirusSetup array.
171 * Set this to NULL to disable virus scanning. If not null, every file uploaded will be scanned for viruses.
172 * @global string $wgAntivirus
173 */
174 $wgAntivirus= NULL;
175
176 /** Configuration for different virus scanners. This an associative array of associative arrays:
177 * it contains on setup array per known scanner type. The entry is selected by $wgAntivirus, i.e.
178 * valid values for $wgAntivirus are the keys defined in this array.
179 *
180 * The configuration array for each scanner contains the following keys: "command", "codemap", "messagepattern";
181 *
182 * "command" is the full command to call the virus scanner - %f will be replaced with the name of the
183 * file to scan. If not present, the filename will be appended to the command. Note that this must be
184 * overwritten if the scanner is not in the system path; in that case, plase set
185 * $wgAntivirusSetup[$wgAntivirus]['command'] to the desired command with full path.
186 *
187 * "codemap" is a mapping of exit code to return codes of the detectVirus function in SpecialUpload.
188 * An exit code mapped to AV_SCAN_FAILED causes the function to consider the scan to be failed. This will pass
189 * the file if $wgAntivirusRequired is not set.
190 * An exit code mapped to AV_SCAN_ABORTED causes the function to consider the file to have an usupported format,
191 * which is probably imune to virusses. This causes the file to pass.
192 * An exit code mapped to AV_NO_VIRUS will cause the file to pass, meaning no virus was found.
193 * All other codes (like AV_VIRUS_FOUND) will cause the function to report a virus.
194 * You may use "*" as a key in the array to catch all exit codes not mapped otherwise.
195 *
196 * "messagepattern" is a perl regular expression to extract the meaningful part of the scanners
197 * output. The relevant part should be matched as group one (\1).
198 * If not defined or the pattern does not match, the full message is shown to the user.
199 *
200 * @global array $wgAntivirusSetup
201 */
202 $wgAntivirusSetup= array(
203
204 #setup for clamav
205 'clamav' => array (
206 'command' => "clamscan --no-summary ",
207
208 'codemap'=> array (
209 "0"=> AV_NO_VIRUS, #no virus
210 "1"=> AV_VIRUS_FOUND, #virus found
211 "52"=> AV_SCAN_ABORTED, #unsupported file format (probably imune)
212 "*"=> AV_SCAN_FAILED, #else scan failed
213 ),
214
215 'messagepattern'=> '/.*?:(.*)/sim',
216 ),
217
218 #setup for f-prot
219 'f-prot' => array (
220 'command' => "f-prot ",
221
222 'codemap'=> array (
223 "0"=> AV_NO_VIRUS, #no virus
224 "3"=> AV_VIRUS_FOUND, #virus found
225 "6"=> AV_VIRUS_FOUND, #virus found
226 "*"=> AV_SCAN_FAILED, #else scan failed
227 ),
228
229 'messagepattern'=> '/.*?Infection:(.*)$/m',
230 ),
231 );
232
233
234 /** Determines if a failed virus scan (AV_SCAN_FAILED) will cause the file to be rejected.
235 * @global boolean $wgAntivirusRequired
236 */
237 $wgAntivirusRequired= true;
238
239 /** Determines if the mime type of uploaded files should be checked
240 * @global boolean $wgVerifyMimeType
241 */
242 $wgVerifyMimeType= true;
243
244 /** Sets the mime type definition file to use by MimeMagic.php.
245 * @global string $wgMimeTypeFile
246 */
247 #$wgMimeTypeFile= "/etc/mime.types";
248 $wgMimeTypeFile= "includes/mime.types";
249 #$wgMimeTypeFile= NULL; #use built-in defaults only.
250
251 /** Sets the mime type info file to use by MimeMagic.php.
252 * @global string $wgMimeInfoFile
253 */
254 $wgMimeInfoFile= "includes/mime.info";
255 #$wgMimeInfoFile= NULL; #use built-in defaults only.
256
257 /** Switch for loading the FileInfo extension by PECL at runtime.
258 * This should be used only if fileinfo is installed as a shared object / dynamic libary
259 * @global string $wgLoadFileinfoExtension
260 */
261 $wgLoadFileinfoExtension= false;
262
263 /** Sets an external mime detector program. The command must print only the mime type to standard output.
264 * the name of the file to process will be appended to the command given here.
265 * If not set or NULL, mime_content_type will be used if available.
266 */
267 $wgMimeDetectorCommand= NULL; # use internal mime_content_type function, available since php 4.3.0
268 #$wgMimeDetectorCommand= "file -bi"; #use external mime detector (Linux)
269
270 /** Switch for trivial mime detection. Used by thumb.php to disable all fance things,
271 * because only a few types of images are needed and file extensions can be trusted.
272 */
273 $wgTrivialMimeDetection= false;
274
275 /**
276 * To set 'pretty' URL paths for actions other than
277 * plain page views, add to this array. For instance:
278 * 'edit' => "$wgScriptPath/edit/$1"
279 *
280 * There must be an appropriate script or rewrite rule
281 * in place to handle these URLs.
282 */
283 $wgActionPaths = array();
284
285 /**
286 * If you operate multiple wikis, you can define a shared upload path here.
287 * Uploads to this wiki will NOT be put there - they will be put into
288 * $wgUploadDirectory.
289 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
290 * no file of the given name is found in the local repository (for [[Image:..]],
291 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
292 * directory.
293 */
294 $wgUseSharedUploads = false;
295 /** Full path on the web server where shared uploads can be found */
296 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
297 /** Fetch commons image description pages and display them on the local wiki? */
298 $wgFetchCommonsDescriptions = false;
299 /** Path on the file system where shared uploads can be found. */
300 $wgSharedUploadDirectory = "/var/www/wiki3/images";
301 /** DB name with metadata about shared directory. Set this to false if the uploads do not come from a wiki. */
302 $wgSharedUploadDBname = false;
303 /** Optional table prefix used in database. */
304 $wgSharedUploadDBprefix = '';
305 /** Cache shared metadata in memcached. Don't do this if the commons wiki is in a different memcached domain */
306 $wgCacheSharedUploads = true;
307
308 /**
309 * Point the upload navigation link to an external URL
310 * Useful if you want to use a shared repository by default
311 * without disabling local uploads (use $wgEnableUploads = false for that)
312 * e.g. $wgUploadNavigationUrl = 'http://commons.wikimedia.org/wiki/Special:Upload';
313 */
314 $wgUploadNavigationUrl = false;
315
316 /**
317 * Give a path here to use thumb.php for thumbnail generation on client request, instead of
318 * generating them on render and outputting a static URL. This is necessary if some of your
319 * apache servers don't have read/write access to the thumbnail path.
320 *
321 * Example:
322 * $wgThumbnailScriptPath = "{$wgScriptPath}/thumb.php";
323 */
324 $wgThumbnailScriptPath = false;
325 $wgSharedThumbnailScriptPath = false;
326
327 /**
328 * Set the following to false especially if you have a set of files that need to
329 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
330 * directory layout.
331 */
332 $wgHashedSharedUploadDirectory = true;
333
334 /**
335 * Base URL for a repository wiki. Leave this blank if uploads are just stored
336 * in a shared directory and not meant to be accessible through a separate wiki.
337 * Otherwise the image description pages on the local wiki will link to the
338 * image description page on this wiki.
339 *
340 * Please specify the namespace, as in the example below.
341 */
342 $wgRepositoryBaseUrl="http://commons.wikimedia.org/wiki/Image:";
343
344
345 #
346 # Email settings
347 #
348
349 /**
350 * Site admin email address
351 * Default to wikiadmin@SERVER_NAME
352 * @global string $wgEmergencyContact
353 */
354 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
355
356 /**
357 * Password reminder email address
358 * The address we should use as sender when a user is requesting his password
359 * Default to apache@SERVER_NAME
360 * @global string $wgPasswordSender
361 */
362 $wgPasswordSender = 'MediaWiki Mail <apache@' . $wgServerName . '>';
363
364 /**
365 * dummy address which should be accepted during mail send action
366 * It might be necessay to adapt the address or to set it equal
367 * to the $wgEmergencyContact address
368 */
369 #$wgNoReplyAddress = $wgEmergencyContact;
370 $wgNoReplyAddress = 'reply@not.possible';
371
372 /**
373 * Set to true to enable the e-mail basic features:
374 * Password reminders, etc. If sending e-mail on your
375 * server doesn't work, you might want to disable this.
376 * @global bool $wgEnableEmail
377 */
378 $wgEnableEmail = true;
379
380 /**
381 * Set to true to enable user-to-user e-mail.
382 * This can potentially be abused, as it's hard to track.
383 * @global bool $wgEnableUserEmail
384 */
385 $wgEnableUserEmail = true;
386
387 /**
388 * SMTP Mode
389 * For using a direct (authenticated) SMTP server connection.
390 * Default to false or fill an array :
391 * <code>
392 * "host" => 'SMTP domain',
393 * "IDHost" => 'domain for MessageID',
394 * "port" => "25",
395 * "auth" => true/false,
396 * "username" => user,
397 * "password" => password
398 * </code>
399 *
400 * @global mixed $wgSMTP
401 */
402 $wgSMTP = false;
403
404
405 /**#@+
406 * Database settings
407 */
408 /** database host name or ip address */
409 $wgDBserver = 'localhost';
410 /** name of the database */
411 $wgDBname = 'wikidb';
412 /** */
413 $wgDBconnection = '';
414 /** Database username */
415 $wgDBuser = 'wikiuser';
416 /** Database type
417 * "mysql" for working code and "PostgreSQL" for development/broken code
418 */
419 $wgDBtype = "mysql";
420 /** Search type
421 * Leave as null to select the default search engine for the
422 * selected database type (eg SearchMySQL4), or set to a class
423 * name to override to a custom search engine.
424 */
425 $wgSearchType = null;
426 /** Table name prefix */
427 $wgDBprefix = '';
428 /** Database schema
429 * on some databases this allows separate
430 * logical namespace for application data
431 */
432 $wgDBschema = 'mediawiki';
433 /**#@-*/
434
435
436
437 /**
438 * Shared database for multiple wikis. Presently used for storing a user table
439 * for single sign-on. The server for this database must be the same as for the
440 * main database.
441 * EXPERIMENTAL
442 */
443 $wgSharedDB = null;
444
445 # Database load balancer
446 # This is a two-dimensional array, an array of server info structures
447 # Fields are:
448 # host: Host name
449 # dbname: Default database name
450 # user: DB user
451 # password: DB password
452 # type: "mysql" or "pgsql"
453 # load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
454 # groupLoads: array of load ratios, the key is the query group name. A query may belong
455 # to several groups, the most specific group defined here is used.
456 #
457 # flags: bit field
458 # DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
459 # DBO_DEBUG -- equivalent of $wgDebugDumpSql
460 # DBO_TRX -- wrap entire request in a transaction
461 # DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
462 # DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
463 #
464 # max lag: (optional) Maximum replication lag before a slave will taken out of rotation
465 # max threads: (optional) Maximum number of running threads
466 #
467 # These and any other user-defined properties will be assigned to the mLBInfo member
468 # variable of the Database object.
469 #
470 # Leave at false to use the single-server variables above
471 $wgDBservers = false;
472
473 /** How long to wait for a slave to catch up to the master */
474 $wgMasterWaitTimeout = 10;
475
476 /** File to log MySQL errors to */
477 $wgDBerrorLog = false;
478
479 /** When to give an error message */
480 $wgDBClusterTimeout = 10;
481
482 /**
483 * wgDBminWordLen :
484 * MySQL 3.x : used to discard words that MySQL will not return any results for
485 * shorter values configure mysql directly.
486 * MySQL 4.x : ignore it and configure mySQL
487 * See: http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html
488 */
489 $wgDBminWordLen = 4;
490 /** Set to true if using InnoDB tables */
491 $wgDBtransactions = false;
492 /** Set to true for compatibility with extensions that might be checking.
493 * MySQL 3.23.x is no longer supported. */
494 $wgDBmysql4 = true;
495
496 /**
497 * Set to true to engage MySQL 4.1/5.0 charset-related features;
498 * for now will just cause sending of 'SET NAMES=utf8' on connect.
499 *
500 * WARNING: THIS IS EXPERIMENTAL!
501 *
502 * May break if you're not using the table defs from mysql5/tables.sql.
503 * May break if you're upgrading an existing wiki if set differently.
504 * Broken symptoms likely to include incorrect behavior with page titles,
505 * usernames, comments etc containing non-ASCII characters.
506 * Might also cause failures on the object cache and other things.
507 *
508 * Even correct usage may cause failures with Unicode supplementary
509 * characters (those not in the Basic Multilingual Plane) unless MySQL
510 * has enhanced their Unicode support.
511 */
512 $wgDBmysql5 = false;
513
514 /**
515 * Other wikis on this site, can be administered from a single developer
516 * account.
517 * Array numeric key => database name
518 */
519 $wgLocalDatabases = array();
520
521 /**
522 * Object cache settings
523 * See Defines.php for types
524 */
525 $wgMainCacheType = CACHE_NONE;
526 $wgMessageCacheType = CACHE_ANYTHING;
527 $wgParserCacheType = CACHE_ANYTHING;
528
529 $wgParserCacheExpireTime = 86400;
530
531 $wgSessionsInMemcached = false;
532 $wgLinkCacheMemcached = false; # Not fully tested
533
534 /**
535 * Memcached-specific settings
536 * See docs/memcached.txt
537 */
538 $wgUseMemCached = false;
539 $wgMemCachedDebug = false; # Will be set to false in Setup.php, if the server isn't working
540 $wgMemCachedServers = array( '127.0.0.1:11000' );
541 $wgMemCachedDebug = false;
542
543 /**
544 * Directory for local copy of message cache, for use in addition to memcached
545 */
546 $wgLocalMessageCache = false;
547
548 /**
549 * Directory for compiled constant message array databases
550 * WARNING: turning anything on will just break things, aaaaaah!!!!
551 */
552 $wgCachedMessageArrays = false;
553
554 # Language settings
555 #
556 /** Site language code, should be one of ./languages/Language(.*).php */
557 $wgLanguageCode = 'en';
558
559 /** Treat language links as magic connectors, not inline links */
560 $wgInterwikiMagic = true;
561
562 /** Hide interlanguage links from the sidebar */
563 $wgHideInterlanguageLinks = false;
564
565
566 /** We speak UTF-8 all the time now, unless some oddities happen */
567 $wgInputEncoding = 'UTF-8';
568 $wgOutputEncoding = 'UTF-8';
569 $wgEditEncoding = '';
570
571 # Set this to eg 'ISO-8859-1' to perform character set
572 # conversion when loading old revisions not marked with
573 # "utf-8" flag. Use this when converting wiki to UTF-8
574 # without the burdensome mass conversion of old text data.
575 #
576 # NOTE! This DOES NOT touch any fields other than old_text.
577 # Titles, comments, user names, etc still must be converted
578 # en masse in the database before continuing as a UTF-8 wiki.
579 $wgLegacyEncoding = false;
580
581 /**
582 * If set to true, the MediaWiki 1.4 to 1.5 schema conversion will
583 * create stub reference rows in the text table instead of copying
584 * the full text of all current entries from 'cur' to 'text'.
585 *
586 * This will speed up the conversion step for large sites, but
587 * requires that the cur table be kept around for those revisions
588 * to remain viewable.
589 *
590 * maintenance/migrateCurStubs.php can be used to complete the
591 * migration in the background once the wiki is back online.
592 *
593 * This option affects the updaters *only*. Any present cur stub
594 * revisions will be readable at runtime regardless of this setting.
595 */
596 $wgLegacySchemaConversion = false;
597
598 $wgMimeType = 'text/html';
599 $wgJsMimeType = 'text/javascript';
600 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
601 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
602
603 /** Enable to allow rewriting dates in page text.
604 * DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES */
605 $wgUseDynamicDates = false;
606 /** Enable dates like 'May 12' instead of '12 May', this only takes effect if
607 * the interface is set to English
608 */
609 $wgAmericanDates = false;
610 /**
611 * For Hindi and Arabic use local numerals instead of Western style (0-9)
612 * numerals in interface.
613 */
614 $wgTranslateNumerals = true;
615
616
617 # Translation using MediaWiki: namespace
618 # This will increase load times by 25-60% unless memcached is installed
619 # Interface messages will be loaded from the database.
620 $wgUseDatabaseMessages = true;
621 $wgMsgCacheExpiry = 86400;
622
623 # Whether to enable language variant conversion.
624 $wgDisableLangConversion = false;
625
626 # Whether to use zhdaemon to perform Chinese text processing
627 # zhdaemon is under developement, so normally you don't want to
628 # use it unless for testing
629 $wgUseZhdaemon = false;
630 $wgZhdaemonHost="localhost";
631 $wgZhdaemonPort=2004;
632
633 /** Normally you can ignore this and it will be something
634 like $wgMetaNamespace . "_talk". In some languages, you
635 may want to set this manually for grammatical reasons.
636 It is currently only respected by those languages
637 where it might be relevant and where no automatic
638 grammar converter exists.
639 */
640 $wgMetaNamespaceTalk = false;
641
642 # Miscellaneous configuration settings
643 #
644
645 $wgLocalInterwiki = 'w';
646 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
647
648 /** Interwiki caching settings.
649 $wgInterwikiCache specifies path to constant database file
650 This cdb database is generated by dumpInterwiki from maintenance
651 and has such key formats:
652 dbname:key - a simple key (e.g. enwiki:meta)
653 _sitename:key - site-scope key (e.g. wiktionary:meta)
654 __global:key - global-scope key (e.g. __global:meta)
655 __sites:dbname - site mapping (e.g. __sites:enwiki)
656 Sites mapping just specifies site name, other keys provide
657 "local url" data layout.
658 $wgInterwikiScopes specify number of domains to check for messages:
659 1 - Just wiki(db)-level
660 2 - wiki and global levels
661 3 - site levels
662 $wgInterwikiFallbackSite - if unable to resolve from cache
663 */
664 $wgInterwikiCache = false;
665 $wgInterwikiScopes = 3;
666 $wgInterwikiFallbackSite = 'wiki';
667
668 /**
669 * If local interwikis are set up which allow redirects,
670 * set this regexp to restrict URLs which will be displayed
671 * as 'redirected from' links.
672 *
673 * It might look something like this:
674 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
675 *
676 * Leave at false to avoid displaying any incoming redirect markers.
677 * This does not affect intra-wiki redirects, which don't change
678 * the URL.
679 */
680 $wgRedirectSources = false;
681
682
683 $wgShowIPinHeader = true; # For non-logged in users
684 $wgMaxNameChars = 255; # Maximum number of bytes in username
685
686 $wgExtraSubtitle = '';
687 $wgSiteSupportPage = ''; # A page where you users can receive donations
688
689 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
690
691 /**
692 * The debug log file should be not be publicly accessible if it is used, as it
693 * may contain private data. */
694 $wgDebugLogFile = '';
695
696 /**#@+
697 * @global bool
698 */
699 $wgDebugRedirects = false;
700 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
701
702 $wgDebugComments = false;
703 $wgReadOnly = null;
704 $wgLogQueries = false;
705
706 /**
707 * Write SQL queries to the debug log
708 */
709 $wgDebugDumpSql = false;
710
711 /**
712 * Set to an array of log group keys to filenames.
713 * If set, wfDebugLog() output for that group will go to that file instead
714 * of the regular $wgDebugLogFile. Useful for enabling selective logging
715 * in production.
716 */
717 $wgDebugLogGroups = array();
718
719 /**
720 * Whether to show "we're sorry, but there has been a database error" pages.
721 * Displaying errors aids in debugging, but may display information useful
722 * to an attacker.
723 */
724 $wgShowSQLErrors = false;
725
726 /**
727 * disable experimental dmoz-like category browsing. Output things like:
728 * Encyclopedia > Music > Style of Music > Jazz
729 */
730 $wgUseCategoryBrowser = false;
731
732 /**
733 * Keep parsed pages in a cache (objectcache table, turck, or memcached)
734 * to speed up output of the same page viewed by another user with the
735 * same options.
736 *
737 * This can provide a significant speedup for medium to large pages,
738 * so you probably want to keep it on.
739 */
740 $wgEnableParserCache = true;
741
742 /**
743 * Under which condition should a page in the main namespace be counted
744 * as a valid article? If $wgUseCommaCount is set to true, it will be
745 * counted if it contains at least one comma. If it is set to false
746 * (default), it will only be counted if it contains at least one [[wiki
747 * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count
748 *
749 * Retroactively changing this variable will not affect
750 * the existing count (cf. maintenance/recount.sql).
751 */
752 $wgUseCommaCount = false;
753
754 /**#@-*/
755
756 /**
757 * wgHitcounterUpdateFreq sets how often page counters should be updated, higher
758 * values are easier on the database. A value of 1 causes the counters to be
759 * updated on every hit, any higher value n cause them to update *on average*
760 * every n hits. Should be set to either 1 or something largish, eg 1000, for
761 * maximum efficiency.
762 */
763 $wgHitcounterUpdateFreq = 1;
764
765 # Basic user rights and block settings
766 $wgSysopUserBans = true; # Allow sysops to ban logged-in users
767 $wgSysopRangeBans = true; # Allow sysops to ban IP ranges
768 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
769 $wgBlockAllowsUTEdit = false; # Blocks allow users to edit their own user talk page
770
771 # Pages anonymous user may see as an array, e.g.:
772 # array ( "Main Page", "Special:Userlogin", "Wikipedia:Help");
773 # NOTE: This will only work if $wgGroupPermissions['*']['read']
774 # is false -- see below. Otherwise, ALL pages are accessible,
775 # regardless of this setting.
776 # Also note that this will only protect _pages in the wiki_.
777 # Uploaded files will remain readable. Make your upload
778 # directory name unguessable, or use .htaccess to protect it.
779 $wgWhitelistRead = false;
780
781 /**
782 * Permission keys given to users in each group.
783 * All users are implicitly in the '*' group including anonymous visitors;
784 * logged-in users are all implicitly in the 'user' group. These will be
785 * combined with the permissions of all groups that a given user is listed
786 * in in the user_groups table.
787 *
788 * Functionality to make pages inaccessible has not been extensively tested
789 * for security. Use at your own risk!
790 *
791 * This replaces wgWhitelistAccount and wgWhitelistEdit
792 */
793 $wgGroupPermissions = array();
794
795 // Implicit group for all visitors
796 $wgGroupPermissions['*' ]['createaccount'] = true;
797 $wgGroupPermissions['*' ]['read'] = true;
798 $wgGroupPermissions['*' ]['edit'] = true;
799 $wgGroupPermissions['*' ]['createpage'] = true;
800 $wgGroupPermissions['*' ]['createtalk'] = true;
801
802 // Implicit group for all logged-in accounts
803 $wgGroupPermissions['user' ]['move'] = true;
804 $wgGroupPermissions['user' ]['read'] = true;
805 $wgGroupPermissions['user' ]['edit'] = true;
806 $wgGroupPermissions['user' ]['createpage'] = true;
807 $wgGroupPermissions['user' ]['createtalk'] = true;
808 $wgGroupPermissions['user' ]['upload'] = true;
809 $wgGroupPermissions['user' ]['reupload'] = true;
810 $wgGroupPermissions['user' ]['reupload-shared'] = true;
811 $wgGroupPermissions['user' ]['minoredit'] = true;
812
813 // Implicit group for accounts that pass $wgAutoConfirmAge
814 $wgGroupPermissions['autoconfirmed']['autoconfirmed'] = true;
815
816 // Users with bot privilege can have their edits hidden
817 // from various log pages by default
818 $wgGroupPermissions['bot' ]['bot'] = true;
819 $wgGroupPermissions['bot' ]['autoconfirmed'] = true;
820
821 // Most extra permission abilities go to this group
822 $wgGroupPermissions['sysop']['block'] = true;
823 $wgGroupPermissions['sysop']['createaccount'] = true;
824 $wgGroupPermissions['sysop']['delete'] = true;
825 $wgGroupPermissions['sysop']['deletedhistory'] = true; // can view deleted history entries, but not see or restore the text
826 $wgGroupPermissions['sysop']['editinterface'] = true;
827 $wgGroupPermissions['sysop']['import'] = true;
828 $wgGroupPermissions['sysop']['importupload'] = true;
829 $wgGroupPermissions['sysop']['move'] = true;
830 $wgGroupPermissions['sysop']['patrol'] = true;
831 $wgGroupPermissions['sysop']['protect'] = true;
832 $wgGroupPermissions['sysop']['rollback'] = true;
833 $wgGroupPermissions['sysop']['upload'] = true;
834 $wgGroupPermissions['sysop']['reupload'] = true;
835 $wgGroupPermissions['sysop']['reupload-shared'] = true;
836 $wgGroupPermissions['sysop']['unwatchedpages'] = true;
837 $wgGroupPermissions['sysop']['autoconfirmed'] = true;
838
839 // Permission to change users' group assignments
840 $wgGroupPermissions['bureaucrat']['userrights'] = true;
841
842 /**
843 * The developer group is deprecated, but can be activated if need be
844 * to use the 'lockdb' and 'unlockdb' special pages. Those require
845 * that a lock file be defined and creatable/removable by the web
846 * server.
847 */
848 # $wgGroupPermissions['developer']['siteadmin'] = true;
849
850 /**
851 * Set of available actions that can be restricted via Special:Protect
852 * You probably shouldn't change this.
853 */
854 $wgRestrictionTypes = array( 'edit', 'move' );
855
856 /**
857 * Set of permission keys that can be selected via Special:Protect.
858 * 'autoconfirm' allows all registerd users if $wgAutoConfirmAge is 0.
859 */
860 $wgRestrictionLevels = array( '', 'autoconfirmed', 'sysop' );
861
862
863 /**
864 * Number of seconds an account is required to age before
865 * it's given the implicit 'autoconfirm' group membership.
866 * This can be used to limit privileges of new accounts.
867 *
868 * Accounts created by earlier versions of the software
869 * may not have a recorded creation date, and will always
870 * be considered to pass the age test.
871 *
872 * When left at 0, all registered accounts will pass.
873 */
874 $wgAutoConfirmAge = 0;
875 //$wgAutoConfirmAge = 600; // ten minutes
876 //$wgAutoConfirmAge = 3600*24; // one day
877
878
879
880 # Proxy scanner settings
881 #
882
883 /**
884 * If you enable this, every editor's IP address will be scanned for open HTTP
885 * proxies.
886 *
887 * Don't enable this. Many sysops will report "hostile TCP port scans" to your
888 * ISP and ask for your server to be shut down.
889 *
890 * You have been warned.
891 */
892 $wgBlockOpenProxies = false;
893 /** Port we want to scan for a proxy */
894 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
895 /** Script used to scan */
896 $wgProxyScriptPath = "$IP/proxy_check.php";
897 /** */
898 $wgProxyMemcExpiry = 86400;
899 /** This should always be customised in LocalSettings.php */
900 $wgSecretKey = false;
901 /** big list of banned IP addresses, in the keys not the values */
902 $wgProxyList = array();
903 /** deprecated */
904 $wgProxyKey = false;
905
906 /** Number of accounts each IP address may create, 0 to disable.
907 * Requires memcached */
908 $wgAccountCreationThrottle = 0;
909
910 # Client-side caching:
911
912 /** Allow client-side caching of pages */
913 $wgCachePages = true;
914
915 /**
916 * Set this to current time to invalidate all prior cached pages. Affects both
917 * client- and server-side caching.
918 * You can get the current date on your server by using the command:
919 * date +%Y%m%d%H%M%S
920 */
921 $wgCacheEpoch = '20030516000000';
922
923
924 # Server-side caching:
925
926 /**
927 * This will cache static pages for non-logged-in users to reduce
928 * database traffic on public sites.
929 * Must set $wgShowIPinHeader = false
930 */
931 $wgUseFileCache = false;
932 /** Directory where the cached page will be saved */
933 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
934
935 /**
936 * When using the file cache, we can store the cached HTML gzipped to save disk
937 * space. Pages will then also be served compressed to clients that support it.
938 * THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
939 * the default LocalSettings.php! If you enable this, remove that setting first.
940 *
941 * Requires zlib support enabled in PHP.
942 */
943 $wgUseGzip = false;
944
945 # Email notification settings
946 #
947
948 /** For email notification on page changes */
949 $wgPasswordSender = $wgEmergencyContact;
950
951 # true: from page editor if s/he opted-in
952 # false: Enotif mails appear to come from $wgEmergencyContact
953 $wgEnotifFromEditor = false;
954
955 // TODO move UPO to preferences probably ?
956 # If set to true, users get a corresponding option in their preferences and can choose to enable or disable at their discretion
957 # If set to false, the corresponding input form on the user preference page is suppressed
958 # It call this to be a "user-preferences-option (UPO)"
959 $wgEmailAuthentication = true; # UPO (if this is set to false, texts referring to authentication are suppressed)
960 $wgEnotifWatchlist = false; # UPO
961 $wgEnotifUserTalk = false; # UPO
962 $wgEnotifRevealEditorAddress = false; # UPO; reply-to address may be filled with page editor's address (if user allowed this in the preferences)
963 $wgEnotifMinorEdits = true; # UPO; false: "minor edits" on pages do not trigger notification mails.
964 # # Attention: _every_ change on a user_talk page trigger a notification mail (if the user is not yet notified)
965
966
967 /** Show watching users in recent changes, watchlist and page history views */
968 $wgRCShowWatchingUsers = false; # UPO
969 /** Show watching users in Page views */
970 $wgPageShowWatchingUsers = false;
971 /**
972 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
973 * view for watched pages with new changes */
974 $wgShowUpdatedMarker = true;
975
976 $wgCookieExpiration = 2592000;
977
978 /** Clock skew or the one-second resolution of time() can occasionally cause cache
979 * problems when the user requests two pages within a short period of time. This
980 * variable adds a given number of seconds to vulnerable timestamps, thereby giving
981 * a grace period.
982 */
983 $wgClockSkewFudge = 5;
984
985 # Squid-related settings
986 #
987
988 /** Enable/disable Squid */
989 $wgUseSquid = false;
990
991 /** If you run Squid3 with ESI support, enable this (default:false): */
992 $wgUseESI = false;
993
994 /** Internal server name as known to Squid, if different */
995 # $wgInternalServer = 'http://yourinternal.tld:8000';
996 $wgInternalServer = $wgServer;
997
998 /**
999 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
1000 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
1001 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
1002 * days
1003 */
1004 $wgSquidMaxage = 18000;
1005
1006 /**
1007 * A list of proxy servers (ips if possible) to purge on changes don't specify
1008 * ports here (80 is default)
1009 */
1010 # $wgSquidServers = array('127.0.0.1');
1011 $wgSquidServers = array();
1012 $wgSquidServersNoPurge = array();
1013
1014 /** Maximum number of titles to purge in any one client operation */
1015 $wgMaxSquidPurgeTitles = 400;
1016
1017 /** HTCP multicast purging */
1018 $wgHTCPPort = 4827;
1019 $wgHTCPMulticastTTL = 1;
1020 # $wgHTCPMulticastAddress = "224.0.0.85";
1021
1022 # Cookie settings:
1023 #
1024 /**
1025 * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
1026 * or ".any.subdomain.net"
1027 */
1028 $wgCookieDomain = '';
1029 $wgCookiePath = '/';
1030 $wgCookieSecure = ($wgProto == 'https');
1031 $wgDisableCookieCheck = false;
1032
1033 /** Whether to allow inline image pointing to other websites */
1034 $wgAllowExternalImages = true;
1035
1036 /** If the above is false, you can specify an exception here. Image URLs
1037 * that start with this string are then rendered, while all others are not.
1038 * You can use this to set up a trusted, simple repository of images.
1039 *
1040 * Example:
1041 * $wgAllowExternalImagesFrom = 'http://127.0.0.1/';
1042 */
1043 $wgAllowExternalImagesFrom = '';
1044
1045 /** Disable database-intensive features */
1046 $wgMiserMode = false;
1047 /** Disable all query pages if miser mode is on, not just some */
1048 $wgDisableQueryPages = false;
1049 /** Generate a watchlist once every hour or so */
1050 $wgUseWatchlistCache = false;
1051 /** The hour or so mentioned above */
1052 $wgWLCacheTimeout = 3600;
1053
1054 /**
1055 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
1056 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
1057 * (ImageMagick) installed and available in the PATH.
1058 * Please see math/README for more information.
1059 */
1060 $wgUseTeX = false;
1061 /** Location of the texvc binary */
1062 $wgTexvc = './math/texvc';
1063
1064 #
1065 # Profiling / debugging
1066 #
1067
1068 /** Enable for more detailed by-function times in debug log */
1069 $wgProfiling = false;
1070 /** Only record profiling info for pages that took longer than this */
1071 $wgProfileLimit = 0.0;
1072 /** Don't put non-profiling info into log file */
1073 $wgProfileOnly = false;
1074 /** Log sums from profiling into "profiling" table in db. */
1075 $wgProfileToDatabase = false;
1076 /** Only profile every n requests when profiling is turned on */
1077 $wgProfileSampleRate = 1;
1078 /** If true, print a raw call tree instead of per-function report */
1079 $wgProfileCallTree = false;
1080 /** If not empty, specifies profiler type to load */
1081 $wgProfilerType = '';
1082
1083 /** Settings for UDP profiler */
1084 $wgUDPProfilerHost = '127.0.0.1';
1085 $wgUDPProfilerPort = '3811';
1086
1087 /** Detects non-matching wfProfileIn/wfProfileOut calls */
1088 $wgDebugProfiling = false;
1089 /** Output debug message on every wfProfileIn/wfProfileOut */
1090 $wgDebugFunctionEntry = 0;
1091 /** Lots of debugging output from SquidUpdate.php */
1092 $wgDebugSquid = false;
1093
1094 $wgDisableCounters = false;
1095 $wgDisableTextSearch = false;
1096 $wgDisableSearchContext = false;
1097 /**
1098 * If you've disabled search semi-permanently, this also disables updates to the
1099 * table. If you ever re-enable, be sure to rebuild the search table.
1100 */
1101 $wgDisableSearchUpdate = false;
1102 /** Uploads have to be specially set up to be secure */
1103 $wgEnableUploads = false;
1104 /**
1105 * Show EXIF data, on by default if available.
1106 * Requires PHP's EXIF extension: http://www.php.net/manual/en/ref.exif.php
1107 */
1108 $wgShowEXIF = function_exists( 'exif_read_data' );
1109
1110 /**
1111 * Set to true to enable the upload _link_ while local uploads are disabled.
1112 * Assumes that the special page link will be bounced to another server where
1113 * uploads do work.
1114 */
1115 $wgRemoteUploads = false;
1116 $wgDisableAnonTalk = false;
1117 /**
1118 * Do DELETE/INSERT for link updates instead of incremental
1119 */
1120 $wgUseDumbLinkUpdate = false;
1121
1122 /**
1123 * Anti-lock flags - bitfield
1124 * ALF_PRELOAD_LINKS
1125 * Preload links during link update for save
1126 * ALF_PRELOAD_EXISTENCE
1127 * Preload cur_id during replaceLinkHolders
1128 * ALF_NO_LINK_LOCK
1129 * Don't use locking reads when updating the link table. This is
1130 * necessary for wikis with a high edit rate for performance
1131 * reasons, but may cause link table inconsistency
1132 * ALF_NO_BLOCK_LOCK
1133 * As for ALF_LINK_LOCK, this flag is a necessity for high-traffic
1134 * wikis.
1135 */
1136 $wgAntiLockFlags = 0;
1137
1138 /**
1139 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
1140 * fall back to the old behaviour (no merging).
1141 */
1142 $wgDiff3 = '/usr/bin/diff3';
1143
1144 /**
1145 * We can also compress text in the old revisions table. If this is set on, old
1146 * revisions will be compressed on page save if zlib support is available. Any
1147 * compressed revisions will be decompressed on load regardless of this setting
1148 * *but will not be readable at all* if zlib support is not available.
1149 */
1150 $wgCompressRevisions = false;
1151
1152 /**
1153 * This is the list of preferred extensions for uploading files. Uploading files
1154 * with extensions not in this list will trigger a warning.
1155 */
1156 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
1157
1158 /** Files with these extensions will never be allowed as uploads. */
1159 $wgFileBlacklist = array(
1160 # HTML may contain cookie-stealing JavaScript and web bugs
1161 'html', 'htm', 'js', 'jsb',
1162 # PHP scripts may execute arbitrary code on the server
1163 'php', 'phtml', 'php3', 'php4', 'phps',
1164 # Other types that may be interpreted by some servers
1165 'shtml', 'jhtml', 'pl', 'py', 'cgi',
1166 # May contain harmful executables for Windows victims
1167 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
1168
1169 /** Files with these mime types will never be allowed as uploads
1170 * if $wgVerifyMimeType is enabled.
1171 */
1172 $wgMimeTypeBlacklist= array(
1173 # HTML may contain cookie-stealing JavaScript and web bugs
1174 'text/html', 'text/javascript', 'text/x-javascript', 'application/x-shellscript',
1175 # PHP scripts may execute arbitrary code on the server
1176 'application/x-php', 'text/x-php',
1177 # Other types that may be interpreted by some servers
1178 'text/x-python', 'text/x-perl', 'text/x-bash', 'text/x-sh', 'text/x-csh',
1179 # Windows metafile, client-side vulnerability on some systems
1180 'application/x-msmetafile'
1181 );
1182
1183 /** This is a flag to determine whether or not to check file extensions on upload. */
1184 $wgCheckFileExtensions = true;
1185
1186 /**
1187 * If this is turned off, users may override the warning for files not covered
1188 * by $wgFileExtensions.
1189 */
1190 $wgStrictFileExtensions = true;
1191
1192 /** Warn if uploaded files are larger than this */
1193 $wgUploadSizeWarning = 150 * 1024;
1194
1195 /** For compatibility with old installations set to false */
1196 $wgPasswordSalt = true;
1197
1198 /** Which namespaces should support subpages?
1199 * See Language.php for a list of namespaces.
1200 */
1201 $wgNamespacesWithSubpages = array(
1202 NS_TALK => true,
1203 NS_USER => true,
1204 NS_USER_TALK => true,
1205 NS_PROJECT_TALK => true,
1206 NS_IMAGE_TALK => true,
1207 NS_MEDIAWIKI_TALK => true,
1208 NS_TEMPLATE_TALK => true,
1209 NS_HELP_TALK => true,
1210 NS_CATEGORY_TALK => true
1211 );
1212
1213 $wgNamespacesToBeSearchedDefault = array(
1214 NS_MAIN => true,
1215 );
1216
1217 /** If set, a bold ugly notice will show up at the top of every page. */
1218 $wgSiteNotice = '';
1219
1220
1221 #
1222 # Images settings
1223 #
1224
1225 /** dynamic server side image resizing ("Thumbnails") */
1226 $wgUseImageResize = false;
1227
1228 /**
1229 * Resizing can be done using PHP's internal image libraries or using
1230 * ImageMagick. The later supports more file formats than PHP, which only
1231 * supports PNG, GIF, JPG, XBM and WBMP.
1232 *
1233 * Use Image Magick instead of PHP builtin functions.
1234 */
1235 $wgUseImageMagick = false;
1236 /** The convert command shipped with ImageMagick */
1237 $wgImageMagickConvertCommand = '/usr/bin/convert';
1238
1239 # Scalable Vector Graphics (SVG) may be uploaded as images.
1240 # Since SVG support is not yet standard in browsers, it is
1241 # necessary to rasterize SVGs to PNG as a fallback format.
1242 #
1243 # An external program is required to perform this conversion:
1244 $wgSVGConverters = array(
1245 'ImageMagick' => '$path/convert -background white -geometry $width $input $output',
1246 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
1247 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
1248 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
1249 'rsvg' => '$path/rsvg -w$width -h$height $input $output',
1250 );
1251 /** Pick one of the above */
1252 $wgSVGConverter = 'ImageMagick';
1253 /** If not in the executable PATH, specify */
1254 $wgSVGConverterPath = '';
1255 /** Don't scale a SVG larger than this */
1256 $wgSVGMaxSize = 1024;
1257 /**
1258 * Don't thumbnail an image if it will use too much working memory
1259 * Default is 50 MB if decompressed to RGBA form, which corresponds to
1260 * 12.5 million pixels or 3500x3500
1261 */
1262 $wgMaxImageArea = 1.25e7;
1263 /**
1264 * If rendered thumbnail files are older than this timestamp, they
1265 * will be rerendered on demand as if the file didn't already exist.
1266 * Update if there is some need to force thumbs and SVG rasterizations
1267 * to rerender, such as fixes to rendering bugs.
1268 */
1269 $wgThumbnailEpoch = '20030516000000';
1270
1271
1272
1273 /** Set $wgCommandLineMode if it's not set already, to avoid notices */
1274 if( !isset( $wgCommandLineMode ) ) {
1275 $wgCommandLineMode = false;
1276 }
1277
1278
1279 #
1280 # Recent changes settings
1281 #
1282
1283 /** Log IP addresses in the recentchanges table */
1284 $wgPutIPinRC = true;
1285
1286 /**
1287 * Recentchanges items are periodically purged; entries older than this many
1288 * seconds will go.
1289 * For one week : 7 * 24 * 3600
1290 */
1291 $wgRCMaxAge = 7 * 24 * 3600;
1292
1293
1294 # Send RC updates via UDP
1295 $wgRC2UDPAddress = false;
1296 $wgRC2UDPPort = false;
1297 $wgRC2UDPPrefix = '';
1298
1299 #
1300 # Copyright and credits settings
1301 #
1302
1303 /** RDF metadata toggles */
1304 $wgEnableDublinCoreRdf = false;
1305 $wgEnableCreativeCommonsRdf = false;
1306
1307 /** Override for copyright metadata.
1308 * TODO: these options need documentation
1309 */
1310 $wgRightsPage = NULL;
1311 $wgRightsUrl = NULL;
1312 $wgRightsText = NULL;
1313 $wgRightsIcon = NULL;
1314
1315 /** Set this to some HTML to override the rights icon with an arbitrary logo */
1316 $wgCopyrightIcon = NULL;
1317
1318 /** Set this to true if you want detailed copyright information forms on Upload. */
1319 $wgUseCopyrightUpload = false;
1320
1321 /** Set this to false if you want to disable checking that detailed copyright
1322 * information values are not empty. */
1323 $wgCheckCopyrightUpload = true;
1324
1325 /**
1326 * Set this to the number of authors that you want to be credited below an
1327 * article text. Set it to zero to hide the attribution block, and a negative
1328 * number (like -1) to show all authors. Note that this will require 2-3 extra
1329 * database hits, which can have a not insignificant impact on performance for
1330 * large wikis.
1331 */
1332 $wgMaxCredits = 0;
1333
1334 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
1335 * Otherwise, link to a separate credits page. */
1336 $wgShowCreditsIfMax = true;
1337
1338
1339
1340 /**
1341 * Set this to false to avoid forcing the first letter of links to capitals.
1342 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
1343 * appearing with a capital at the beginning of a sentence will *not* go to the
1344 * same place as links in the middle of a sentence using a lowercase initial.
1345 */
1346 $wgCapitalLinks = true;
1347
1348 /**
1349 * List of interwiki prefixes for wikis we'll accept as sources for
1350 * Special:Import (for sysops). Since complete page history can be imported,
1351 * these should be 'trusted'.
1352 *
1353 * If a user has the 'import' permission but not the 'importupload' permission,
1354 * they will only be able to run imports through this transwiki interface.
1355 */
1356 $wgImportSources = array();
1357
1358 /**
1359 * If set to false, disables the full-history option on Special:Export.
1360 * This is currently poorly optimized for long edit histories, so is
1361 * disabled on Wikimedia's sites.
1362 */
1363 $wgExportAllowHistory = true;
1364
1365
1366 /** Text matching this regular expression will be recognised as spam
1367 * See http://en.wikipedia.org/wiki/Regular_expression */
1368 $wgSpamRegex = false;
1369 /** Similarly if this function returns true */
1370 $wgFilterCallback = false;
1371
1372 /** Go button goes straight to the edit screen if the article doesn't exist. */
1373 $wgGoToEdit = false;
1374
1375 /** Allow limited user-specified HTML in wiki pages?
1376 * It will be run through a whitelist for security. Set this to false if you
1377 * want wiki pages to consist only of wiki markup. Note that replacements do not
1378 * yet exist for all HTML constructs.*/
1379 $wgUserHtml = true;
1380
1381 /** Allow raw, unchecked HTML in <html>...</html> sections.
1382 * THIS IS VERY DANGEROUS on a publically editable site, so USE wgGroupPermissions
1383 * TO RESTRICT EDITING to only those that you trust
1384 */
1385 $wgRawHtml = false;
1386
1387 /**
1388 * $wgUseTidy: use tidy to make sure HTML output is sane.
1389 * This should only be enabled if $wgUserHtml is true.
1390 * tidy is a free tool that fixes broken HTML.
1391 * See http://www.w3.org/People/Raggett/tidy/
1392 * $wgTidyBin should be set to the path of the binary and
1393 * $wgTidyConf to the path of the configuration file.
1394 * $wgTidyOpts can include any number of parameters.
1395 *
1396 * $wgTidyInternal controls the use of the PECL extension to use an in-
1397 * process tidy library instead of spawning a separate program.
1398 * Normally you shouldn't need to override the setting except for
1399 * debugging. To install, use 'pear install tidy' and add a line
1400 * 'extension=tidy.so' to php.ini.
1401 */
1402 $wgUseTidy = false;
1403 $wgAlwaysUseTidy = false;
1404 $wgTidyBin = 'tidy';
1405 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
1406 $wgTidyOpts = '';
1407 $wgTidyInternal = function_exists( 'tidy_load_config' );
1408
1409 /** See list of skins and their symbolic names in languages/Language.php */
1410 $wgDefaultSkin = 'monobook';
1411
1412 /**
1413 * Settings added to this array will override the language globals for the user
1414 * preferences used by anonymous visitors and newly created accounts. (See names
1415 * and sample values in languages/Language.php)
1416 * For instance, to disable section editing links:
1417 * $wgDefaultUserOptions ['editsection'] = 0;
1418 *
1419 */
1420 $wgDefaultUserOptions = array();
1421
1422 /** Whether or not to allow and use real name fields. Defaults to true. */
1423 $wgAllowRealName = true;
1424
1425 /** Use XML parser? */
1426 $wgUseXMLparser = false ;
1427
1428 /** Extensions */
1429 $wgSkinExtensionFunctions = array();
1430 $wgExtensionFunctions = array();
1431 /**
1432 * An array of extension types and inside that their names, versions, authors
1433 * and urls, note that the version and url key can be omitted.
1434 *
1435 * <code>
1436 * $wgExtensionCredits[$type][] = array(
1437 * 'name' => 'Example extension',
1438 * 'version' => 1.9,
1439 * 'author' => 'Foo Barstein',
1440 * 'url' => 'http://wwww.example.com/Example%20Extension/',
1441 * );
1442 * </code>
1443 *
1444 * Where $type is 'specialpage', 'parserhook', or 'other'.
1445 */
1446 $wgExtensionCredits = array();
1447
1448 /**
1449 * Allow user Javascript page?
1450 * This enables a lot of neat customizations, but may
1451 * increase security risk to users and server load.
1452 */
1453 $wgAllowUserJs = false;
1454
1455 /**
1456 * Allow user Cascading Style Sheets (CSS)?
1457 * This enables a lot of neat customizations, but may
1458 * increase security risk to users and server load.
1459 */
1460 $wgAllowUserCss = false;
1461
1462 /** Use the site's Javascript page? */
1463 $wgUseSiteJs = true;
1464
1465 /** Use the site's Cascading Style Sheets (CSS)? */
1466 $wgUseSiteCss = true;
1467
1468 /** Filter for Special:Randompage. Part of a WHERE clause */
1469 $wgExtraRandompageSQL = false;
1470
1471 /** Allow the "info" action, very inefficient at the moment */
1472 $wgAllowPageInfo = false;
1473
1474 /** Maximum indent level of toc. */
1475 $wgMaxTocLevel = 999;
1476
1477 /** Use external C++ diff engine (module wikidiff from the extensions package) */
1478 $wgUseExternalDiffEngine = false;
1479
1480 /** Use RC Patrolling to check for vandalism */
1481 $wgUseRCPatrol = true;
1482
1483 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
1484 * eg Recentchanges, Newpages. */
1485 $wgFeedLimit = 50;
1486
1487 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
1488 * A cached version will continue to be served out even if changes
1489 * are made, until this many seconds runs out since the last render.
1490 *
1491 * If set to 0, feed caching is disabled. Use this for debugging only;
1492 * feed generation can be pretty slow with diffs.
1493 */
1494 $wgFeedCacheTimeout = 60;
1495
1496 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
1497 * pages larger than this size. */
1498 $wgFeedDiffCutoff = 32768;
1499
1500
1501 /**
1502 * Additional namespaces. If the namespaces defined in Language.php and
1503 * Namespace.php are insufficient, you can create new ones here, for example,
1504 * to import Help files in other languages.
1505 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
1506 * no longer be accessible. If you rename it, then you can access them through
1507 * the new namespace name.
1508 *
1509 * Custom namespaces should start at 100 to avoid conflicting with standard
1510 * namespaces, and should always follow the even/odd main/talk pattern.
1511 */
1512 #$wgExtraNamespaces =
1513 # array(100 => "Hilfe",
1514 # 101 => "Hilfe_Diskussion",
1515 # 102 => "Aide",
1516 # 103 => "Discussion_Aide"
1517 # );
1518 $wgExtraNamespaces = NULL;
1519
1520 /**
1521 * Limit images on image description pages to a user-selectable limit. In order
1522 * to reduce disk usage, limits can only be selected from a list. This is the
1523 * list of settings the user can choose from:
1524 */
1525 $wgImageLimits = array (
1526 array(320,240),
1527 array(640,480),
1528 array(800,600),
1529 array(1024,768),
1530 array(1280,1024),
1531 array(10000,10000) );
1532
1533 /**
1534 * Adjust thumbnails on image pages according to a user setting. In order to
1535 * reduce disk usage, the values can only be selected from a list. This is the
1536 * list of settings the user can choose from:
1537 */
1538 $wgThumbLimits = array(
1539 120,
1540 150,
1541 180,
1542 200,
1543 250,
1544 300
1545 );
1546
1547 /**
1548 * On category pages, show thumbnail gallery for images belonging to that
1549 * category instead of listing them as articles.
1550 */
1551 $wgCategoryMagicGallery = true;
1552
1553 /**
1554 * Browser Blacklist for unicode non compliant browsers
1555 * Contains a list of regexps : "/regexp/" matching problematic browsers
1556 */
1557 $wgBrowserBlackList = array(
1558 "/Mozilla\/4\.78 \[en\] \(X11; U; Linux/",
1559 /**
1560 * MSIE on Mac OS 9 is teh sux0r, converts þ to <thorn>, ð to <eth>, Þ to <THORN> and Ð to <ETH>
1561 *
1562 * Known useragents:
1563 * - Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)
1564 * - Mozilla/4.0 (compatible; MSIE 5.15; Mac_PowerPC)
1565 * - Mozilla/4.0 (compatible; MSIE 5.23; Mac_PowerPC)
1566 * - [...]
1567 *
1568 * @link http://en.wikipedia.org/w/index.php?title=User%3A%C6var_Arnfj%F6r%F0_Bjarmason%2Ftestme&diff=12356041&oldid=12355864
1569 * @link http://en.wikipedia.org/wiki/Template%3AOS9
1570 */
1571 "/Mozilla\/4\.0 \(compatible; MSIE \d+\.\d+; Mac_PowerPC\)/"
1572 );
1573
1574 /**
1575 * Fake out the timezone that the server thinks it's in. This will be used for
1576 * date display and not for what's stored in the DB. Leave to null to retain
1577 * your server's OS-based timezone value. This is the same as the timezone.
1578 *
1579 * This variable is currently used ONLY for signature formatting, not for
1580 * anything else.
1581 */
1582 # $wgLocaltimezone = 'GMT';
1583 # $wgLocaltimezone = 'PST8PDT';
1584 # $wgLocaltimezone = 'Europe/Sweden';
1585 # $wgLocaltimezone = 'CET';
1586 $wgLocaltimezone = null;
1587
1588 /**
1589 * Set an offset from UTC in hours to use for the default timezone setting
1590 * for anonymous users and new user accounts.
1591 *
1592 * This setting is used for most date/time displays in the software, and is
1593 * overrideable in user preferences. It is *not* used for signature timestamps.
1594 *
1595 * You can set it to match the configured server timezone like this:
1596 * $wgLocalTZoffset = date("Z") / 3600;
1597 *
1598 * If your server is not configured for the timezone you want, you can set
1599 * this in conjunction with the signature timezone and override the TZ
1600 * environment variable like so:
1601 * $wgLocaltimezone="Europe/Berlin";
1602 * putenv("TZ=$wgLocaltimezone");
1603 * $wgLocalTZoffset = date("Z") / 3600;
1604 *
1605 * Leave at NULL to show times in universal time (UTC/GMT).
1606 */
1607 $wgLocalTZoffset = null;
1608
1609
1610 /**
1611 * When translating messages with wfMsg(), it is not always clear what should be
1612 * considered UI messages and what shoud be content messages.
1613 *
1614 * For example, for regular wikipedia site like en, there should be only one
1615 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
1616 * it as content of the site and call wfMsgForContent(), while for rendering the
1617 * text of the link, we call wfMsg(). The code in default behaves this way.
1618 * However, sites like common do offer different versions of 'mainpage' and the
1619 * like for different languages. This array provides a way to override the
1620 * default behavior. For example, to allow language specific mainpage and
1621 * community portal, set
1622 *
1623 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
1624 */
1625 $wgForceUIMsgAsContentMsg = array();
1626
1627
1628 /**
1629 * Authentication plugin.
1630 */
1631 $wgAuth = null;
1632
1633 /**
1634 * Global list of hooks.
1635 * Add a hook by doing:
1636 * $wgHooks['event_name'][] = $function;
1637 * or:
1638 * $wgHooks['event_name'][] = array($function, $data);
1639 * or:
1640 * $wgHooks['event_name'][] = array($object, 'method');
1641 */
1642 $wgHooks = array();
1643
1644 /**
1645 * Experimental preview feature to fetch rendered text
1646 * over an XMLHttpRequest from JavaScript instead of
1647 * forcing a submit and reload of the whole page.
1648 * Leave disabled unless you're testing it.
1649 */
1650 $wgLivePreview = false;
1651
1652 /**
1653 * Disable the internal MySQL-based search, to allow it to be
1654 * implemented by an extension instead.
1655 */
1656 $wgDisableInternalSearch = false;
1657
1658 /**
1659 * Set this to a URL to forward search requests to some external location.
1660 * If the URL includes '$1', this will be replaced with the URL-encoded
1661 * search term.
1662 *
1663 * For example, to forward to Google you'd have something like:
1664 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
1665 * '&domains=http://example.com' .
1666 * '&sitesearch=http://example.com' .
1667 * '&ie=utf-8&oe=utf-8';
1668 */
1669 $wgSearchForwardUrl = null;
1670
1671 /**
1672 * If true, external URL links in wiki text will be given the
1673 * rel="nofollow" attribute as a hint to search engines that
1674 * they should not be followed for ranking purposes as they
1675 * are user-supplied and thus subject to spamming.
1676 */
1677 $wgNoFollowLinks = true;
1678
1679 /**
1680 * Specifies the minimal length of a user password. If set to
1681 * 0, empty passwords are allowed.
1682 */
1683 $wgMinimalPasswordLength = 0;
1684
1685 /**
1686 * Activate external editor interface for files and pages
1687 * See http://meta.wikimedia.org/wiki/Help:External_editors
1688 */
1689 $wgUseExternalEditor = true;
1690
1691 /** Whether or not to sort special pages in Special:Specialpages */
1692
1693 $wgSortSpecialPages = true;
1694
1695 /**
1696 * Specify the name of a skin that should not be presented in the
1697 * list of available skins.
1698 * Use for blacklisting a skin which you do not want to remove
1699 * from the .../skins/ directory
1700 */
1701 $wgSkipSkin = '';
1702 $wgSkipSkins = array(); # More of the same
1703
1704 /**
1705 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
1706 */
1707 $wgDisabledActions = array();
1708
1709 /**
1710 * Disable redirects to special pages and interwiki redirects, which use a 302 and have no "redirected from" link
1711 */
1712 $wgDisableHardRedirects = false;
1713
1714 /**
1715 * Use http.dnsbl.sorbs.net to check for open proxies
1716 */
1717 $wgEnableSorbs = false;
1718
1719 /**
1720 * Use opm.blitzed.org to check for open proxies.
1721 * Not yet actually used.
1722 */
1723 $wgEnableOpm = false;
1724
1725 /**
1726 * Proxy whitelist, list of addresses that are assumed to be non-proxy despite what the other
1727 * methods might say
1728 */
1729 $wgProxyWhitelist = array();
1730
1731 /**
1732 * Simple rate limiter options to brake edit floods.
1733 * Maximum number actions allowed in the given number of seconds;
1734 * after that the violating client receives HTTP 500 error pages
1735 * until the period elapses.
1736 *
1737 * array( 4, 60 ) for a maximum of 4 hits in 60 seconds.
1738 *
1739 * This option set is experimental and likely to change.
1740 * Requires memcached.
1741 */
1742 $wgRateLimits = array(
1743 'edit' => array(
1744 'anon' => null, // for any and all anonymous edits (aggregate)
1745 'user' => null, // for each logged-in user
1746 'newbie' => null, // for each recent account; overrides 'user'
1747 'ip' => null, // for each anon and recent account
1748 'subnet' => null, // ... with final octet removed
1749 ),
1750 'move' => array(
1751 'user' => null,
1752 'newbie' => null,
1753 'ip' => null,
1754 'subnet' => null,
1755 ),
1756 );
1757
1758 /**
1759 * Set to a filename to log rate limiter hits.
1760 */
1761 $wgRateLimitLog = null;
1762
1763 /**
1764 * On Special:Unusedimages, consider images "used", if they are put
1765 * into a category. Default (false) is not to count those as used.
1766 */
1767 $wgCountCategorizedImagesAsUsed = false;
1768
1769 /**
1770 * External stores allow including content
1771 * from non database sources following URL links
1772 *
1773 * Short names of ExternalStore classes may be specified in an array here:
1774 * $wgExternalStores = array("http","file","custom")...
1775 *
1776 * CAUTION: Access to database might lead to code execution
1777 */
1778 $wgExternalStores = false;
1779
1780 /**
1781 * An array of external mysql servers, e.g.
1782 * $wgExternalServers = array( 'cluster1' => array( 'srv28', 'srv29', 'srv30' ) );
1783 */
1784 $wgExternalServers = array();
1785
1786 /**
1787 * The place to put new revisions, false to put them in the local text table.
1788 * Part of a URL, e.g. DB://cluster1
1789 */
1790 $wgDefaultExternalStore = false;
1791
1792 /**
1793 * list of trusted media-types and mime types.
1794 * Use the MEDIATYPE_xxx constants to represent media types.
1795 * This list is used by Image::isSafeFile
1796 *
1797 * Types not listed here will have a warning about unsafe content
1798 * displayed on the images description page. It would also be possible
1799 * to use this for further restrictions, like disabling direct
1800 * [[media:...]] links for non-trusted formats.
1801 */
1802 $wgTrustedMediaFormats= array(
1803 MEDIATYPE_BITMAP, //all bitmap formats
1804 MEDIATYPE_AUDIO, //all audio formats
1805 MEDIATYPE_VIDEO, //all plain video formats
1806 "image/svg", //svg (only needed if inline rendering of svg is not supported)
1807 "application/pdf", //PDF files
1808 #"application/x-shockwafe-flash", //flash/shockwave movie
1809 );
1810
1811 /**
1812 * Allow special page inclusions such as {{Special:Allpages}}
1813 */
1814 $wgAllowSpecialInclusion = true;
1815
1816 /**
1817 * Timeout for HTTP requests done via CURL
1818 */
1819 $wgHTTPTimeout = 3;
1820
1821 /**
1822 * Proxy to use for CURL requests.
1823 */
1824 $wgHTTPProxy = false;
1825
1826 /**
1827 * Enable interwiki transcluding. Only when iw_trans=1.
1828 */
1829 $wgEnableScaryTranscluding = false;
1830 /**
1831 * Expiry time for interwiki transclusion
1832 */
1833 $wgTranscludeCacheExpiry = 3600;
1834
1835 /**
1836 * Support blog-style "trackbacks" for articles. See
1837 * http://www.sixapart.com/pronet/docs/trackback_spec for details.
1838 */
1839 $wgUseTrackbacks = false;
1840
1841 /**
1842 * Enable filtering of robots in Special:Watchlist
1843 */
1844
1845 $wgFilterRobotsWL = false;
1846
1847 /**
1848 * Enable filtering of categories in Recentchanges
1849 */
1850 $wgAllowCategorizedRecentChanges = false ;
1851
1852 ?>