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