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