* Rewrote the comment for $wgAmericanDates to be more specific.
[lhc/web/wiklou.git] / includes / DefaultSettings.php
1 <?php
2 /**
3 * DO NOT EDIT THIS FILE!
4 *
5 * To customize your installation, edit "LocalSettings.php".
6 *
7 * Note that since all these string interpolations are expanded
8 * before LocalSettings is included, if you localize something
9 * like $wgScriptPath, you must also localize everything that
10 * depends on it.
11 *
12 * @package MediaWiki
13 */
14
15 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
16 if( defined( 'MEDIAWIKI' ) ) {
17
18 /** MediaWiki version number */
19 $wgVersion = '1.5pre-alpha';
20
21 /** Name of the site. It must be changed in LocalSettings.php */
22 $wgSitename = 'MediaWiki';
23
24 /** Will be same as you set @see $wgSitename */
25 $wgMetaNamespace = FALSE;
26
27 /** URL of the server. It will be automaticly build including https mode */
28 $wgServer = '';
29
30 if( isset( $_SERVER['SERVER_NAME'] ) ) {
31 $wgServerName = $_SERVER['SERVER_NAME'];
32 } elseif( isset( $_SERVER['HOSTNAME'] ) ) {
33 $wgServerName = $_SERVER['HOSTNAME'];
34 } elseif( isset( $_SERVER['HTTP_HOST'] ) ) {
35 $wgServerName = $_SERVER['HTTP_HOST'];
36 } elseif( isset( $_SERVER['SERVER_ADDR'] ) ) {
37 $wgServerName = $_SERVER['SERVER_ADDR'];
38 } else {
39 $wgServerName = 'localhost';
40 }
41
42 # check if server use https:
43 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
44
45 $wgServer = $wgProto.'://' . $wgServerName;
46 if( isset( $_SERVER['SERVER_PORT'] ) && $_SERVER['SERVER_PORT'] != 80 ) {
47 $wgServer .= ":" . $_SERVER['SERVER_PORT'];
48 }
49 unset($wgProto);
50
51
52 /**
53 * The path we should point to.
54 * It might be a virtual path in case with use apache mod_rewrite for example
55 */
56 $wgScriptPath = '/wiki';
57
58 /**
59 * Whether to support URLs like index.php/Page_title
60 * @global bool $wgUsePathInfo
61 */
62 $wgUsePathInfo = ( strpos( php_sapi_name(), 'cgi' ) === false );
63
64
65 /**#@+
66 * Script users will request to get articles
67 * ATTN: Old installations used wiki.phtml and redirect.phtml -
68 * make sure that LocalSettings.php is correctly set!
69 * @deprecated
70 */
71 /**
72 * @global string $wgScript
73 */
74 $wgScript = "{$wgScriptPath}/index.php";
75 /**
76 * @global string $wgRedirectScript
77 */
78 $wgRedirectScript = "{$wgScriptPath}/redirect.php";
79 /**#@-*/
80
81
82 /**#@+
83 * @global string
84 */
85 /**
86 * style path as seen by users
87 * @global string $wgStylePath
88 */
89 $wgStylePath = "{$wgScriptPath}/skins";
90 /**
91 * filesystem stylesheets directory
92 * @global string $wgStyleDirectory
93 */
94 $wgStyleDirectory = "{$IP}/skins";
95 $wgStyleSheetPath = &$wgStylePath;
96 $wgStyleSheetDirectory = &$wgStyleDirectory;
97 $wgArticlePath = "{$wgScript}?title=$1";
98 $wgUploadPath = "{$wgScriptPath}/upload";
99 $wgUploadDirectory = "{$IP}/upload";
100 $wgHashedUploadDirectory = true;
101 $wgLogo = "{$wgUploadPath}/wiki.png";
102 $wgMathPath = "{$wgUploadPath}/math";
103 $wgMathDirectory = "{$wgUploadDirectory}/math";
104 $wgTmpDirectory = "{$wgUploadDirectory}/tmp";
105 $wgUploadBaseUrl = "";
106 /**#@-*/
107
108 /**
109 * Produce hashed HTML article paths. Used internally, do not set.
110 */
111 $wgMakeDumpLinks = false;
112
113 /**
114 * To set 'pretty' URL paths for actions other than
115 * plain page views, add to this array. For instance:
116 * 'edit' => "$wgScriptPath/edit/$1"
117 *
118 * There must be an appropriate script or rewrite rule
119 * in place to handle these URLs.
120 */
121 $wgActionPaths = array();
122
123 /**
124 * If you operate multiple wikis, you can define a shared upload path here.
125 * Uploads to this wiki will NOT be put there - they will be put into
126 * $wgUploadDirectory.
127 * If $wgUseSharedUploads is set, the wiki will look in the shared repository if
128 * no file of the given name is found in the local repository (for [[Image:..]],
129 * [[Media:..]] links). Thumbnails will also be looked for and generated in this
130 * directory.
131 */
132 $wgUseSharedUploads = false;
133 /** Full path on the web server where shared uploads can be found */
134 $wgSharedUploadPath = "http://commons.wikimedia.org/shared/images";
135 /** Path on the file system where shared uploads can be found */
136 $wgSharedUploadDirectory = "/var/www/wiki3/images";
137 /** Path on the file system where shared uploads can be found */
138 $wgSharedUploadDBname = "commons";
139
140 /**
141 * Set the following to false especially if you have a set of files that need to
142 * be accessible by all wikis, and you do not want to use the hash (path/a/aa/)
143 * directory layout.
144 */
145 $wgHashedSharedUploadDirectory = true;
146
147 /** set true if the repository uses latin1 filenames */
148 $wgSharedLatin1=false;
149
150 /**
151 * Base URL for a repository wiki. Leave this blank if uploads are just stored
152 * in a shared directory and not meant to be accessible through a separate wiki.
153 * Otherwise the image description pages on the local wiki will link to the
154 * image description page on this wiki.
155 *
156 * Please specify the namespace, as in the example below.
157 */
158 $wgRepositoryBaseUrl="http://commons.wikimedia.org/wiki/Image:";
159
160
161 #
162 # Email settings
163 #
164
165 /**
166 * Site admin email address
167 * Default to wikiadmin@SERVER_NAME
168 * @global string $wgEmergencyContact
169 */
170 $wgEmergencyContact = 'wikiadmin@' . $wgServerName;
171
172 /**
173 * Password reminder email address
174 * The address we should use as sender when a user is requesting his password
175 * Default to apache@SERVER_NAME
176 * @global string $wgPasswordSender
177 */
178 $wgPasswordSender = 'Wikipedia Mail <apache@' . $wgServerName . '>';
179
180 /**
181 * dummy address which should be accepted during mail send action
182 * It might be necessay to adapt the address or to set it equal
183 * to the $wgEmergencyContact address
184 */
185 #$wgNoReplyAddress = $wgEmergencyContact;
186 $wgNoReplyAddress = 'reply@not.possible';
187
188 /**
189 * Set to true to enable the e-mail basic features:
190 * Password reminders, etc. If sending e-mail on your
191 * server doesn't work, you might want to disable this.
192 * @global bool $wgEnableEmail
193 */
194 $wgEnableEmail = true;
195
196 /**
197 * Set to true to enable user-to-user e-mail.
198 * This can potentially be abused, as it's hard to track.
199 * @global bool $wgEnableUserEmail
200 */
201 $wgEnableUserEmail = true;
202
203 /**
204 * SMTP Mode
205 * For using a direct (authenticated) SMTP server connection.
206 * Default to false or fill an array :
207 * <code>
208 * "host" => 'SMTP domain',
209 * "IDHost" => 'domain for MessageID',
210 * "port" => "25",
211 * "auth" => true/false,
212 * "username" => user,
213 * "password" => password
214 * </code>
215 *
216 * @global mixed $wgSMTP
217 */
218 $wgSMTP = false;
219
220
221 /**#@+
222 * Database settings
223 */
224 /** database host name or ip address */
225 $wgDBserver = 'localhost';
226 /** name of the database */
227 $wgDBname = 'wikidb';
228 /** */
229 $wgDBconnection = '';
230 /** Database username */
231 $wgDBuser = 'wikiuser';
232 /** Database type
233 * "mysql" for working code and "PostgreSQL" for development/broken code
234 */
235 $wgDBtype = "mysql";
236 /** Search type
237 * "MyISAM" for MySQL native full text search, "Tsearch2" for PostgreSQL
238 * based search engine
239 */
240 $wgSearchType = "MyISAM";
241 /** Table name prefix */
242 $wgDBprefix = '';
243 /** Database schema
244 * on some databases this allows separate
245 * logical namespace for application data
246 */
247 $wgDBschema = 'mediawiki';
248 /**#@-*/
249
250
251
252 /**
253 * Shared database for multiple wikis. Presently used for storing a user table
254 * for single sign-on. The server for this database must be the same as for the
255 * main database.
256 * EXPERIMENTAL
257 */
258 $wgSharedDB = null;
259
260 # Database load balancer
261 # This is a two-dimensional array, an array of server info structures
262 # Fields are:
263 # host: Host name
264 # dbname: Default database name
265 # user: DB user
266 # password: DB password
267 # type: "mysql" or "pgsql"
268 # load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
269 # flags: bit field
270 # DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
271 # DBO_DEBUG -- equivalent of $wgDebugDumpSql
272 # DBO_TRX -- wrap entire request in a transaction
273 # DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
274 # DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
275 #
276 # Leave at false to use the single-server variables above
277 $wgDBservers = false;
278
279 /** How long to wait for a slave to catch up to the master */
280 $wgMasterWaitTimeout = 10;
281
282 /** File to log MySQL errors to */
283 $wgDBerrorLog = false;
284
285 /**
286 * wgDBminWordLen :
287 * MySQL 3.x : used to discard words that MySQL will not return any results for
288 * shorter values configure mysql directly.
289 * MySQL 4.x : ignore it and configure mySQL
290 * See: http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html
291 */
292 $wgDBminWordLen = 4;
293 /** Set to true if using InnoDB tables */
294 $wgDBtransactions = false;
295 /** Set to true to use enhanced fulltext search */
296 $wgDBmysql4 = false;
297 $wgSqlTimeout = 30;
298
299 /**
300 * Other wikis on this site, can be administered from a single developer
301 * account.
302 * Array, interwiki prefix => database name
303 */
304 $wgLocalDatabases = array();
305
306
307 # Memcached settings
308 # See docs/memcached.doc
309 #
310 $wgMemCachedDebug = false; # Will be set to false in Setup.php, if the server isn't working
311 $wgUseMemCached = false;
312 $wgMemCachedServers = array( '127.0.0.1:11000' );
313 $wgMemCachedDebug = false;
314 $wgSessionsInMemcached = false;
315 $wgLinkCacheMemcached = false; # Not fully tested
316
317 /**
318 * Turck MMCache shared memory
319 * You can use this for persistent caching where your wiki runs on a single
320 * server. Enabled by default if Turck is installed. Mutually exclusive with
321 * memcached and eAccelerator, the preference order priorities being memcached first,
322 * Turck MMCache second, and eAccelerator third.
323 *
324 * @global bool $wgUseTurckShm Enable or disabled Turck MMCache
325 */
326 $wgUseTurckShm = false;
327
328 /**
329 * eAccelerator shared memory
330 * You can use this for persistent caching where your wiki runs on a single
331 * server. Enabled by default if eAccelerator is installed. Mutually exclusive with
332 * memcached and Turck MMCache, the preference order being memcached first,
333 * Turck MMCache second, and eAccelerator third.
334 *
335 * Most of the code to support this is directly copied from the Turck code.
336 *
337 * @global bool $wgUseEAccelShm Enable or disabled eAccelerator
338 */
339 $wgUseEAccelShm = false;
340
341
342 # Language settings
343 #
344 /** Site language code, should be one of ./language/Language(.*).php */
345 $wgLanguageCode = 'en';
346
347 /** Filename of a language file generated by dumpMessages.php */
348 $wgLanguageFile = false;
349
350 /** Treat language links as magic connectors, not inline links */
351 $wgInterwikiMagic = true;
352
353 /** We speak UTF-8 all the time now, unless some oddities happen */
354 $wgInputEncoding = 'UTF-8';
355 $wgOutputEncoding = 'UTF-8';
356 $wgEditEncoding = '';
357
358 # Set this to eg 'ISO-8859-1' to perform character set
359 # conversion when loading old revisions not marked with
360 # "utf-8" flag. Use this when converting wiki to UTF-8
361 # without the burdensome mass conversion of old text data.
362 #
363 # NOTE! This DOES NOT touch any fields other than old_text.
364 # Titles, comments, user names, etc still must be converted
365 # en masse in the database before continuing as a UTF-8 wiki.
366 $wgLegacyEncoding = false;
367
368 $wgMimeType = 'text/html';
369 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
370 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
371
372 /** Enable to allow rewriting dates in page text.
373 * DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES */
374 $wgUseDynamicDates = false;
375 /** Enable dates like 'May 12' instead of '12 May', this only takes effect if
376 * the interface is set to English
377 */
378 $wgAmericanDates = false;
379 /**
380 * For Hindi and Arabic use local numerals instead of Western style (0-9)
381 * numerals in interface.
382 */
383 $wgTranslateNumerals = true;
384
385
386 # Translation using MediaWiki: namespace
387 # This will increase load times by 25-60% unless memcached is installed
388 # Interface messages will be get from the database.
389 $wgUseDatabaseMessages = true;
390 $wgMsgCacheExpiry = 86400;
391 $wgPartialMessageCache = false;
392
393 # Whether to enable language variant conversion. Currently only zh
394 # supports this function, to convert between Traditional and Simplified
395 # Chinese. This flag is meant to isolate the (untested) conversion
396 # code, so that if it breaks, only zh will be affected
397 $wgDisableLangConversion = false;
398
399 # Use article validation feature; turned off by default
400 $wgUseValidation = false;
401
402 # Whether to use zhdaemon to perform Chinese text processing
403 # zhdaemon is under developement, so normally you don't want to
404 # use it unless for testing
405 $wgUseZhdaemon = false;
406 $wgZhdaemonHost="localhost";
407 $wgZhdaemonPort=2004;
408
409 # Miscellaneous configuration settings
410 #
411
412 $wgLocalInterwiki = 'w';
413 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
414
415 /**
416 * If local interwikis are set up which allow redirects,
417 * set this regexp to restrict URLs which will be displayed
418 * as 'redirected from' links.
419 *
420 * It might look something like this:
421 * $wgRedirectSources = '!^https?://[a-z-]+\.wikipedia\.org/!';
422 *
423 * Leave at false to avoid displaying any incoming redirect markers.
424 * This does not affect intra-wiki redirects, which don't change
425 * the URL.
426 */
427 $wgRedirectSources = false;
428
429
430 $wgShowIPinHeader = true; # For non-logged in users
431 $wgMaxNameChars = 32; # Maximum number of bytes in username
432
433 $wgExtraSubtitle = '';
434 $wgSiteSupportPage = ''; # A page where you users can receive donations
435
436 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
437
438 /**
439 * The debug log file should be not be publicly accessible if it is used, as it
440 * may contain private data. */
441 $wgDebugLogFile = '';
442
443 /**#@+
444 * @global bool
445 */
446 $wgDebugRedirects = false;
447 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
448
449 $wgDebugComments = false;
450 $wgReadOnly = false;
451 $wgLogQueries = false;
452 $wgDebugDumpSql = false;
453
454 /**
455 * Whether to show "we're sorry, but there has been a database error" pages.
456 * Displaying errors aids in debugging, but may display information useful
457 * to an attacker.
458 */
459 $wgShowSQLErrors = false;
460
461 # Should [[Category:Dog]] on a page associate it with the
462 # category "Dog"? (a link to that category page will be
463 # added to the article, clicking it reveals a list of
464 # all articles in the category)
465 $wgUseCategoryMagic = true;
466
467 /**
468 * disable experimental dmoz-like category browsing. Output things like:
469 * Encyclopedia > Music > Style of Music > Jazz
470 */
471 $wgUseCategoryBrowser = false;
472
473 $wgEnablePersistentLC = false; # Obsolete, do not use
474 $wgCompressedPersistentLC = true; # use gzcompressed blobs
475 $wgUseOldExistenceCheck = false; # use old prefill link method, for debugging only
476
477 /**
478 * Keep parsed pages in a cache (objectcache table, turck, or memcached)
479 * to speed up output of the same page viewed by another user with the
480 * same options.
481 *
482 * This can provide a significant speedup for medium to large pages,
483 * so you probably want to keep it on.
484 */
485 $wgEnableParserCache = true;
486
487 /**
488 * Under which condition should a page in the main namespace be counted
489 * as a valid article? If $wgUseCommaCount is set to true, it will be
490 * counted if it contains at least one comma. If it is set to false
491 * (default), it will only be counted if it contains at least one [[wiki
492 * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count
493 *
494 * Retroactively changing this variable will not affect
495 * the existing count (cf. maintenance/recount.sql).
496 */
497 $wgUseCommaCount = false;
498
499 /**#@-*/
500
501 /**
502 * wgHitcounterUpdateFreq sets how often page counters should be updated, higher
503 * values are easier on the database. A value of 1 causes the counters to be
504 * updated on every hit, any higher value n cause them to update *on average*
505 * every n hits. Should be set to either 1 or something largish, eg 1000, for
506 * maximum efficiency.
507 */
508 $wgHitcounterUpdateFreq = 1;
509
510 # User rights settings
511 #
512 # It's not 100% safe, there could be security hole using that one. Use at your
513 # own risks.
514
515 $wgWhitelistEdit = false; # true = user must login to edit.
516 $wgWhitelistRead = false; # Pages anonymous user may see, like: = array ( ":Main_Page", "Special:Userlogin", "Wikipedia:Help");
517 $wgWhitelistAccount = array ( 'user' => 1, 'sysop' => 1, 'developer' => 1 );
518
519 $wgAllowAnonymousMinor = false; # Allow anonymous users to mark changes as 'minor'
520
521 $wgSysopUserBans = true; # Allow sysops to ban logged-in users
522 $wgSysopRangeBans = true; # Allow sysops to ban IP ranges
523
524 /** Comma-separated list of options to show on the IP block form.
525 * Use strtotime() format, or "infinite" for an infinite block
526 */
527 $wgBlockExpiryOptions = "2 hours,1 day,3 days,1 week,2 weeks,1 month,3 months,6 months,1 year,infinite";
528
529 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
530
531 # Proxy scanner settings
532 #
533
534 /**
535 * If you enable this, every editor's IP address will be scanned for open HTTP
536 * proxies.
537 *
538 * Don't enable this. Many sysops will report "hostile TCP port scans" to your
539 * ISP and ask for your server to be shut down.
540 *
541 * You have been warned.
542 */
543 $wgBlockOpenProxies = false;
544 /** Port we want to scan for a proxy */
545 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
546 /** Script used to scan */
547 $wgProxyScriptPath = "$IP/proxy_check.php";
548 /** */
549 $wgProxyMemcExpiry = 86400;
550 /** This should always be customised in LocalSettings.php */
551 $wgSecretKey = false;
552 /** big list of banned IP addresses, in the keys not the values */
553 $wgProxyList = array();
554 /** deprecated */
555 $wgProxyKey = false;
556
557 /** Number of accounts each IP address may create, 0 to disable.
558 * Requires memcached */
559 $wgAccountCreationThrottle = 0;
560
561 # Client-side caching:
562
563 /** Allow client-side caching of pages */
564 $wgCachePages = true;
565
566 /**
567 * Set this to current time to invalidate all prior cached pages. Affects both
568 * client- and server-side caching.
569 */
570 $wgCacheEpoch = '20030516000000';
571
572
573 # Server-side caching:
574
575 /**
576 * This will cache static pages for non-logged-in users to reduce
577 * database traffic on public sites.
578 * Must set $wgShowIPinHeader = false
579 */
580 $wgUseFileCache = false;
581 /** Directory where the cached page will be saved */
582 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
583
584 /**
585 * When using the file cache, we can store the cached HTML gzipped to save disk
586 * space. Pages will then also be served compressed to clients that support it.
587 * THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
588 * the default LocalSettings.php! If you enable this, remove that setting first.
589 *
590 * Requires zlib support enabled in PHP.
591 */
592 $wgUseGzip = false;
593
594 # Email notification settings
595 #
596
597 /**
598 * Program to run when the email is actually sent out. You might want to make
599 * your server beep for example. Usermailer.php will make a system() call with
600 * exactly that string as parameter.
601 */
602 # $wgEmailNotificationSystembeep = '/usr/bin/beep -f 4000 -l 20 &';
603 $wgEmailNotificationSystembeep = '';
604
605 /** For email notification on page changes */
606 $wgPasswordSender = $wgEmergencyContact;
607
608 # true: from PageEditor if s/he opted-in
609 # false: Enotif mails appear to come from $wgEmergencyContact
610 $wgEmailNotificationMailsSentFromPageEditor = false;
611
612 // TODO move UPO to preferences probably ?
613 # If set to true, users get a corresponding option in their preferences and can choose to enable or disable at their discretion
614 # If set to false, the corresponding input form on the user preference page is suppressed
615 # It call this to be a "user-preferences-option (UPO)"
616 $wgEmailAuthentication = true; # UPO (if this is set to false, texts referring to authentication are suppressed)
617 $wgEmailNotificationForWatchlistPages = false; # UPO
618 $wgEmailNotificationForUserTalkPages = false; # UPO
619 $wgEmailNotificationRevealPageEditorAddress = false; # UPO; reply-to address may be filled with page editor's address (if user allowed this in the preferences)
620 $wgEmailNotificationForMinorEdits = true; # UPO; false: "minor edits" on pages do not trigger notification mails.
621 # # Attention: _every_ change on a user_talk page trigger a notification mail (if the user is not yet notified)
622
623
624 /** Show watching users in recent changes, watchlist and page history views */
625 $wgRCShowWatchingUsers = false; # UPO
626 /** Show watching users in Page views */
627 $wgPageShowWatchingUsers = false;
628 /**
629 * Show "Updated (since my last visit)" marker in RC view, watchlist and history
630 * view for watched pages with new changes */
631 $wgShowUpdatedMarker = true; # UPO
632
633 $wgCookieExpiration = 2592000;
634
635 # Squid-related settings
636 #
637
638 /** Enable/disable Squid */
639 $wgUseSquid = false;
640
641 /** If you run Squid3 with ESI support, enable this (default:false): */
642 $wgUseESI = false;
643
644 /** Internal server name as known to Squid, if different */
645 # $wgInternalServer = 'http://yourinternal.tld:8000';
646 $wgInternalServer = $wgServer;
647
648 /**
649 * Cache timeout for the squid, will be sent as s-maxage (without ESI) or
650 * Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in
651 * the Squid config. 18000 seconds = 5 hours, more cache hits with 2678400 = 31
652 * days
653 */
654 $wgSquidMaxage = 18000;
655
656 /**
657 * A list of proxy servers (ips if possible) to purge on changes don't specify
658 * ports here (80 is default)
659 */
660 # $wgSquidServers = array('127.0.0.1');
661 $wgSquidServers = array();
662 $wgSquidServersNoPurge = array();
663
664 /** Maximum number of titles to purge in any one client operation */
665 $wgMaxSquidPurgeTitles = 400;
666
667 /** HTCP multicast purging */
668 $wgHTCPPort = 4827;
669 $wgHTCPMulticastTTL = 1;
670 # $wgHTCPMulticastAddress = "224.0.0.85";
671
672 # Cookie settings:
673 #
674 /**
675 * Set to set an explicit domain on the login cookies eg, "justthis.domain. org"
676 * or ".any.subdomain.net"
677 */
678 $wgCookieDomain = '';
679 $wgCookiePath = '/';
680 $wgDisableCookieCheck = false;
681
682 /** Whether to allow inline image pointing to other websites */
683 $wgAllowExternalImages = true;
684
685 /** Disable database-intensive features */
686 $wgMiserMode = false;
687 /** Disable all query pages if miser mode is on, not just some */
688 $wgDisableQueryPages = false;
689 /** Generate a watchlist once every hour or so */
690 $wgUseWatchlistCache = false;
691 /** The hour or so mentioned above */
692 $wgWLCacheTimeout = 3600;
693
694 /**
695 * To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory of
696 * the MediaWiki package and have latex, dvips, gs (ghostscript), andconvert
697 * (ImageMagick) installed and available in the PATH.
698 * Please see math/README for more information.
699 */
700 $wgUseTeX = false;
701 /** Location of the texvc binary */
702 $wgTexvc = './math/texvc';
703
704 #
705 # Profiling / debugging
706 #
707
708 /** Enable for more detailed by-function times in debug log */
709 $wgProfiling = false;
710 /** Only record profiling info for pages that took longer than this */
711 $wgProfileLimit = 0.0;
712 /** Don't put non-profiling info into log file */
713 $wgProfileOnly = false;
714 /** Log sums from profiling into "profiling" table in db. */
715 $wgProfileToDatabase = false;
716 /** Only profile every n requests when profiling is turned on */
717 $wgProfileSampleRate = 1;
718 /** If true, print a raw call tree instead of per-function report */
719 $wgProfileCallTree = false;
720
721 /** Detects non-matching wfProfileIn/wfProfileOut calls */
722 $wgDebugProfiling = false;
723 /** Output debug message on every wfProfileIn/wfProfileOut */
724 $wgDebugFunctionEntry = 0;
725 /** Lots of debugging output from SquidUpdate.php */
726 $wgDebugSquid = false;
727
728 $wgDisableCounters = false;
729 $wgDisableTextSearch = false;
730 /**
731 * If you've disabled search semi-permanently, this also disables updates to the
732 * table. If you ever re-enable, be sure to rebuild the search table.
733 */
734 $wgDisableSearchUpdate = false;
735 /** Uploads have to be specially set up to be secure */
736 $wgEnableUploads = false;
737 /**
738 * Set to true to enable the upload _link_ while local uploads are disabled.
739 * Assumes that the special page link will be bounced to another server where
740 * uploads do work.
741 */
742 $wgRemoteUploads = false;
743 $wgDisableAnonTalk = false;
744
745 /**
746 * Path to the GNU diff3 utility. If the file doesn't exist, edit conflicts will
747 * fall back to the old behaviour (no merging).
748 */
749 $wgDiff3 = '/usr/bin/diff3';
750
751 /**
752 * We can also compress text in the old revisions table. If this is set on, old
753 * revisions will be compressed on page save if zlib support is available. Any
754 * compressed revisions will be decompressed on load regardless of this setting
755 * *but will not be readable at all* if zlib support is not available.
756 */
757 $wgCompressRevisions = false;
758
759 /**
760 * This is the list of preferred extensions for uploading files. Uploading files
761 * with extensions not in this list will trigger a warning.
762 */
763 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg' );
764
765 /** Files with these extensions will never be allowed as uploads. */
766 $wgFileBlacklist = array(
767 # HTML may contain cookie-stealing JavaScript and web bugs
768 'html', 'htm',
769 # PHP scripts may execute arbitrary code on the server
770 'php', 'phtml', 'php3', 'php4', 'phps',
771 # Other types that may be interpreted by some servers
772 'shtml', 'jhtml', 'pl', 'py', 'cgi',
773 # May contain harmful executables for Windows victims
774 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
775
776 /** This is a flag to determine whether or not to check file extensions on upload. */
777 $wgCheckFileExtensions = true;
778
779 /**
780 * If this is turned off, users may override the warning for files not covered
781 * by $wgFileExtensions.
782 */
783 $wgStrictFileExtensions = true;
784
785 /** Warn if uploaded files are larger than this */
786 $wgUploadSizeWarning = 150 * 1024;
787
788 /** For compatibility with old installations set to false */
789 $wgPasswordSalt = true;
790
791 /** Which namespaces should support subpages?
792 * See Language.php for a list of namespaces.
793 */
794 $wgNamespacesWithSubpages = array(
795 NS_SPECIAL => 0,
796 NS_MAIN => 0,
797 NS_TALK => 1,
798 NS_USER => 1,
799 NS_USER_TALK => 1,
800 NS_PROJECT => 0,
801 NS_PROJECT_TALK => 1,
802 NS_IMAGE => 0,
803 NS_IMAGE_TALK => 1,
804 NS_MEDIAWIKI => 0,
805 NS_MEDIAWIKI_TALK => 1,
806 NS_TEMPLATE => 0,
807 NS_TEMPLATE_TALK => 1,
808 NS_HELP => 0,
809 NS_HELP_TALK => 1,
810 NS_CATEGORY => 0,
811 NS_CATEGORY_TALK => 1
812 );
813
814 $wgNamespacesToBeSearchedDefault = array( NS_SPECIAL => 0, 0 => 1, 1 => 0,
815 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 1, 10 => 0, 11 => 1 );
816
817 /** If set, a bold ugly notice will show up at the top of every page. */
818 $wgSiteNotice = '';
819
820
821 #
822 # Images settings
823 #
824
825 /** dynamic server side image resizing ("Thumbnails") */
826 $wgUseImageResize = false;
827
828 /**
829 * Resizing can be done using PHP's internal image libraries or using
830 * ImageMagick. The later supports more file formats than PHP, which only
831 * supports PNG, GIF, JPG, XBM and WBMP.
832 *
833 * Use Image Magick instead of PHP builtin functions.
834 */
835 $wgUseImageMagick = false;
836 /** The convert command shipped with ImageMagick */
837 $wgImageMagickConvertCommand = '/usr/bin/convert';
838
839 # Scalable Vector Graphics (SVG) may be uploaded as images.
840 # Since SVG support is not yet standard in browsers, it is
841 # necessary to rasterize SVGs to PNG as a fallback format.
842 #
843 # An external program is required to perform this conversion:
844 $wgSVGConverters = array(
845 'ImageMagick' => '$path/convert -background white -geometry $width $input $output',
846 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
847 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
848 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
849 );
850 /** Pick one of the above */
851 $wgSVGConverter = 'ImageMagick';
852 /** If not in the executable PATH, specify */
853 $wgSVGConverterPath = '';
854
855 /** @todo FIXME what does it do here ?? [ashar] */
856 if( !isset( $wgCommandLineMode ) ) {
857 $wgCommandLineMode = false;
858 }
859
860
861 #
862 # Recent changes settings
863 #
864
865 /** Show seconds in Recent Changes */
866 $wgRCSeconds = false;
867
868 /** Log IP addresses in the recentchanges table */
869 $wgPutIPinRC = false;
870
871 /**
872 * Recentchanges items are periodically purged; entries older than this many
873 * seconds will go.
874 * For one week : 7 * 24 * 3600
875 */
876 $wgRCMaxAge = 7 * 24 * 3600;
877
878
879 #
880 # Copyright and credits settings
881 #
882
883 /** RDF metadata toggles */
884 $wgEnableDublinCoreRdf = false;
885 $wgEnableCreativeCommonsRdf = false;
886
887 /** Override for copyright metadata.
888 * TODO: these options need documentation
889 */
890 $wgRightsPage = NULL;
891 $wgRightsUrl = NULL;
892 $wgRightsText = NULL;
893 $wgRightsIcon = NULL;
894
895 /** Set this to some HTML to override the rights icon with an arbitrary logo */
896 $wgCopyrightIcon = NULL;
897
898 /** Set this to true if you want detailed copyright information forms on Upload. */
899 $wgUseCopyrightUpload = false;
900
901 /** Set this to false if you want to disable checking that detailed copyright
902 * information values are not empty. */
903 $wgCheckCopyrightUpload = true;
904
905 /**
906 * Set this to the number of authors that you want to be credited below an
907 * article text. Set it to zero to hide the attribution block, and a negative
908 * number (like -1) to show all authors. Note that this will# require 2-3 extra
909 * database hits, which can have a not insignificant impact on performance for
910 * large wikis.
911 */
912 $wgMaxCredits = 0;
913
914 /** If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
915 * Otherwise, link to a separate credits page. */
916 $wgShowCreditsIfMax = true;
917
918
919
920 /**
921 * Set this to false to avoid forcing the first letter of links to capitals.
922 * WARNING: may break links! This makes links COMPLETELY case-sensitive. Links
923 * appearing with a capital at the beginning of a sentence will *not* go to the
924 * same place as links in the middle of a sentence using a lowercase initial.
925 */
926 $wgCapitalLinks = true;
927
928 /**
929 * List of interwiki prefixes for wikis we'll accept as sources for
930 * Special:Import (for sysops). Since complete page history# can be imported,
931 * these should be 'trusted'.
932 */
933 $wgImportSources = array();
934
935
936
937 /** Text matching this regular expression will be recognised as spam
938 * See http://en.wikipedia.org/wiki/Regular_expression */
939 $wgSpamRegex = false;
940 /** Similarly if this function returns true */
941 $wgFilterCallback = false;
942
943 /** Go button goes straight to the edit screen if the article doesn't exist. */
944 $wgGoToEdit = false;
945
946 /** Allow limited user-specified HTML in wiki pages?
947 * It will be run through a whitelist for security. Set this to false if you
948 * want wiki pages to consist only of wiki markup. Note that replacements do not
949 * yet exist for all HTML constructs.*/
950 $wgUserHtml = true;
951
952 /** Allow raw, unchecked HTML in <html>...</html> sections.
953 * THIS IS VERY DANGEROUS on a publically editable site, so you can't enable it
954 * unless you've restricted editing to trusted users only with $wgWhitelistEdit.
955 */
956 $wgRawHtml = false;
957
958 /**
959 * $wgUseTidy: use tidy to make sure HTML output is sane.
960 * This should only be enabled if $wgUserHtml is true.
961 * tidy is a free tool that fixes broken HTML.
962 * See http://www.w3.org/People/Raggett/tidy/
963 * $wgTidyBin should be set to the path of the binary and
964 * $wgTidyConf to the path of the configuration file.
965 * $wgTidyOpts can include any number of parameters.
966 */
967 $wgUseTidy = false;
968 $wgTidyBin = 'tidy';
969 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
970 $wgTidyOpts = '';
971
972 /** See list of skins and their symbolic names in languagel/Language.php */
973 $wgDefaultSkin = 'monobook';
974
975 /**
976 * Settings added to this array will override the language globals for the user
977 * preferences used by anonymous visitors and newly created accounts. (See names
978 * and sample values in languages/Language.php)
979 * For instance, to disable section editing links:
980 * $wgDefaultUserOptions ['editsection'] = 0;
981 *
982 */
983 $wgDefaultUserOptions = array();
984
985 /** Whether or not to allow and use real name fields. Defaults to true. */
986 $wgAllowRealName = true;
987
988 /** Use XML parser? */
989 $wgUseXMLparser = false ;
990
991 /** Extensions */
992 $wgSkinExtensionFunctions = array();
993 $wgExtensionFunctions = array();
994
995 /**
996 * Allow user Javascript page?
997 * This enables a lot of neat customizations, but may
998 * increase security risk to users and server load.
999 */
1000 $wgAllowUserJs = false;
1001
1002 /**
1003 * Allow user Cascading Style Sheets (CSS)?
1004 * This enables a lot of neat customizations, but may
1005 * increase security risk to users and server load.
1006 */
1007 $wgAllowUserCss = false;
1008
1009 /** Use the site's Javascript page? */
1010 $wgUseSiteJs = true;
1011
1012 /** Use the site's Cascading Style Sheets (CSS)? */
1013 $wgUseSiteCss = true;
1014
1015 /** Filter for Special:Randompage. Part of a WHERE clause */
1016 $wgExtraRandompageSQL = false;
1017
1018 /** Allow the "info" action, very inefficient at the moment */
1019 $wgAllowPageInfo = false;
1020
1021 /** Maximum indent level of toc. */
1022 $wgMaxTocLevel = 999;
1023
1024 /** Use external C++ diff engine (module wikidiff from the extensions package) */
1025 $wgUseExternalDiffEngine = false;
1026
1027 /** Use RC Patrolling to check for vandalism */
1028 $wgUseRCPatrol = true;
1029
1030 /** Set maximum number of results to return in syndication feeds (RSS, Atom) for
1031 * eg Recentchanges, Newpages. */
1032 $wgFeedLimit = 50;
1033
1034 /** _Minimum_ timeout for cached Recentchanges feed, in seconds.
1035 * A cached version will continue to be served out even if changes
1036 * are made, until this many seconds runs out since the last render. */
1037 $wgFeedCacheTimeout = 60;
1038
1039 /** When generating Recentchanges RSS/Atom feed, diffs will not be generated for
1040 * pages larger than this size. */
1041 $wgFeedDiffCutoff = 32768;
1042
1043
1044 /**
1045 * Additional namespaces. If the namespaces defined in Language.php and
1046 * Namespace.php are insufficient,# you can create new ones here, for example,
1047 * to import Help files in other languages.
1048 * PLEASE NOTE: Once you delete a namespace, the pages in that namespace will
1049 * no longer be accessible. If you rename it, then you can access them through
1050 * the new namespace name.
1051 *
1052 * Custom namespaces should start at 100 and stop at 255 (hard limit set by
1053 * database).
1054 */
1055 #$wgExtraNamespaces =
1056 # array(100 => "Hilfe",
1057 # 101 => "Hilfe_Diskussion",
1058 # 102 => "Aide",
1059 # 103 => "Discussion_Aide"
1060 # );
1061 $wgExtraNamespaces = NULL;
1062
1063 /**
1064 * Enable SOAP interface. Off by default
1065 * SOAP is a protocoll for remote procedure calls (RPC) using http as
1066 * middleware. This interface can be used by bots or special clients to receive
1067 * articles from a wiki.
1068 * Most bots use the normal HTTP interface and don't use SOAP.
1069 * If unsure, set to false.
1070 */
1071 $wgEnableSOAP = false;
1072
1073 /**
1074 * Limit images on image description pages to a user-selectable limit. In order
1075 * to reduce disk usage, limits can only be selected from a list. This is the
1076 * list of settings the user can choose from:
1077 */
1078 $wgImageLimits = array (
1079 array(320,240),
1080 array(640,480),
1081 array(800,600),
1082 array(1024,768),
1083 array(1280,1024),
1084 array(10000,10000) );
1085
1086
1087 /** Navigation links for the user sidebar.
1088 * 'text' is the name of the MediaWiki message that contains the label of this link
1089 * 'href' is the name of the MediaWiki message that contains the link target of this link.
1090 * Link targets starting with http are considered remote links. Ones not starting with
1091 * http are considered as names of local wiki pages.
1092 */
1093 $wgNavigationLinks = array (
1094 array( 'text'=>'mainpage', 'href'=>'mainpage' ),
1095 array( 'text'=>'portal', 'href'=>'portal-url' ),
1096 array( 'text'=>'currentevents', 'href'=>'currentevents-url' ),
1097 array( 'text'=>'recentchanges', 'href'=>'recentchanges-url' ),
1098 array( 'text'=>'randompage', 'href'=>'randompage-url' ),
1099 array( 'text'=>'help', 'href'=>'helppage' ),
1100 array( 'text'=>'sitesupport', 'href'=>'sitesupport-url' ),
1101 );
1102
1103 /**
1104 * On category pages, show thumbnail gallery for images belonging to that
1105 * category instead of listing them as articles.
1106 */
1107 $wgCategoryMagicGallery = true;
1108
1109 /**
1110 * Browser Blacklist for unicode non compliant browsers
1111 * Contains a list of regexps : "/regexp/" matching problematic browsers
1112 */
1113 $wgBrowserBlackList = array(
1114 "/Mozilla\/4\.78 \[en\] \(X11; U; Linux/"
1115 // FIXME: Add some accurate, true things here
1116 );
1117
1118 /**
1119 * Fake out the timezone that the server thinks it's in. This will be used for
1120 * date display and not for what's stored in the DB. Leave to null to retain
1121 * your server's OS-based timezone value. This is the same as the timezone.
1122 */
1123 # $wgLocaltimezone = 'GMT';
1124 # $wgLocaltimezone = 'PST8PDT';
1125 # $wgLocaltimezone = 'Europe/Sweden';
1126 # $wgLocaltimezone = 'CET';
1127 $wgLocaltimezone = null;
1128
1129 /**
1130 * User level management
1131 * The number is the database id of a group you want users to be attached by
1132 * default. A better interface should be coded [av]
1133 */
1134 $wgAnonGroupId = 1;
1135 $wgLoggedInGroupId = 2;
1136 $wgSysopGroupId = 3;
1137 $wgBureaucratGroupId = 4;
1138
1139 /**
1140 * When translating messages with wfMsg(), it is not always clear what should be
1141 * considered UI messages and what shoud be content messages.
1142 *
1143 * For example, for regular wikipedia site like en, there should be only one
1144 * 'mainpage', therefore when getting the link of 'mainpage', we should treate
1145 * it as content of the site and call wfMsgForContent(), while for rendering the
1146 * text of the link, we call wfMsg(). The code in default behaves this way.
1147 * However, sites like common do offer different versions of 'mainpage' and the
1148 * like for different languages. This array provides a way to override the
1149 * default behavior. For example, to allow language specific mainpage and
1150 * community portal, set
1151 *
1152 * $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
1153 */
1154 $wgForceUIMsgAsContentMsg = array();
1155
1156
1157 /**
1158 * Authentication plugin.
1159 */
1160 $wgAuth = null;
1161
1162 /**
1163 * Global list of hooks.
1164 * Add a hook by doing:
1165 * $wgHooks['event_name'][] = $function;
1166 * or:
1167 * $wgHooks['event_name'][] = array($function, $data);
1168 * or:
1169 * $wgHooks['event_name'][] = array($object, 'method');
1170 */
1171 $wgHooks = array();
1172
1173 /**
1174 * Experimental preview feature to fetch rendered text
1175 * over an XMLHttpRequest from JavaScript instead of
1176 * forcing a submit and reload of the whole page.
1177 * Leave disabled unless you're testing it.
1178 */
1179 $wgLivePreview = false;
1180
1181 /**
1182 * Disable the internal MySQL-based search, to allow it to be
1183 * implemented by an extension instead.
1184 */
1185 $wgDisableInternalSearch = false;
1186
1187 /**
1188 * Set this to a URL to forward search requests to some external location.
1189 * If the URL includes '$1', this will be replaced with the URL-encoded
1190 * search term.
1191 *
1192 * For example, to forward to Google you'd have something like:
1193 * $wgSearchForwardUrl = 'http://www.google.com/search?q=$1' .
1194 * '&domains=http://example.com' .
1195 * '&sitesearch=http://example.com' .
1196 * '&ie=utf-8&oe=utf-8';
1197 */
1198 $wgSearchForwardUrl = null;
1199
1200 /**
1201 * If true, external URL links in wiki text will be given the
1202 * rel="nofollow" attribute as a hint to search engines that
1203 * they should not be followed for ranking purposes as they
1204 * are user-supplied and thus subject to spamming.
1205 */
1206 $wgNoFollowLinks = true;
1207
1208 /**
1209 * Specifies the minimal length of a user password. If set to
1210 * 0, empty passwords are allowed.
1211 */
1212 $wgMinimalPasswordLength = 0;
1213
1214 /**
1215 * Activate external editor interface for files and pages
1216 * See http://meta.wikimedia.org/wiki/Help:External_editors
1217 */
1218 $wgUseExternalEditor = true;
1219
1220 /** Whether or not to sort special pages in Special:Specialpages */
1221
1222 $wgSortSpecialPages = true;
1223
1224 /**
1225 * Array of disabled article actions, e.g. view, edit, dublincore, delete, etc.
1226 */
1227 $wgDisabledActions = array();
1228
1229 /**
1230 * Use http.dnsbl.sorbs.net to check for open proxies
1231 */
1232 $wgEnableSorbs = true;
1233
1234 } else {
1235 die();
1236 }
1237 ?>