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