$wgDisableInternalSearch
[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.5pre-alpha';
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 = false; # UPO
548 $wgEmailNotificationForUserTalkPages = false; # UPO
549 $wgEmailNotificationRevealPageEditorAddress = false; # 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 watching users in recent changes, watchlist and page history views
554 $wgRCShowWatchingUsers = false; # UPO
555 # Show watching users in Page views
556 $wgPageShowWatchingUsers = false;
557 # Show "Updated (since my last visit)" marker in RC view, watchlist and history view for watched pages with new changes
558 $wgShowUpdatedMarker = true; # UPO
559
560 $wgCookieExpiration = 2592000;
561
562 # Squid-related settings
563 #
564
565 # Enable/disable Squid
566 $wgUseSquid = false;
567
568 # If you run Squid3 with ESI support, enable this (default:false):
569 $wgUseESI = false;
570
571 # Internal server name as known to Squid, if different
572 # $wgInternalServer = 'http://yourinternal.tld:8000';
573 $wgInternalServer = $wgServer;
574
575 # Cache timeout for the squid, will be sent as s-maxage (without ESI) or
576 # Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in the Squid config.
577 # 18000 seconds = 5 hours, more cache hits with 2678400 = 31 days
578 $wgSquidMaxage = 18000;
579
580 # A list of proxy servers (ips if possible) to purge on changes
581 # don't specify ports here (80 is default)
582 # $wgSquidServers = array('127.0.0.1');
583
584 # Maximum number of titles to purge in any one client operation
585 $wgMaxSquidPurgeTitles = 400;
586
587
588 # Cookie settings:
589 # Set to set an explicit domain on the login cookies
590 # eg, "justthis.domain.org" or ".any.subdomain.net"
591 $wgCookieDomain = '';
592 $wgCookiePath = '/';
593 $wgDisableCookieCheck = false;
594
595 # Whether to allow inline image pointing to other websites
596 $wgAllowExternalImages = true;
597
598 $wgMiserMode = false; # Disable database-intensive features
599 $wgDisableQueryPages = false; # Disable all query pages if miser mode is on, not just some
600 $wgUseWatchlistCache = false; # Generate a watchlist once every hour or so
601 $wgWLCacheTimeout = 3600; # The hour or so mentioned above
602
603 # To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory
604 # of the MediaWiki package and have latex, dvips, gs (ghostscript), and
605 # convert (ImageMagick) installed and available in the PATH.
606 # Please see math/README for more information.
607 $wgUseTeX = false;
608 $wgTexvc = './math/texvc'; # Location of the texvc binary
609
610 # Profiling / debugging
611 $wgProfiling = false; # Enable for more detailed by-function times in debug log
612 $wgProfileLimit = 0.0; # Only record profiling info for pages that took longer than this
613 $wgProfileOnly = false; # Don't put non-profiling info into log file
614 $wgProfileToDatabase = false; # Log sums from profiling into "profiling" table in db.
615 $wgProfileSampleRate = 1; # Only profile every n requests when profiling is turned on
616 $wgDebugProfiling = false; # Detects non-matching wfProfileIn/wfProfileOut calls
617 $wgDebugFunctionEntry = 0; # Output debug message on every wfProfileIn/wfProfileOut
618 $wgDebugSquid = false; # Lots of debugging output from SquidUpdate.php
619
620 $wgDisableCounters = false;
621 $wgDisableTextSearch = false;
622 $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.
623 $wgDisableUploads = true; # Uploads have to be specially set up to be secure
624 $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.
625 $wgDisableAnonTalk = false;
626
627 # Path to the GNU diff3 utility. If the file doesn't exist,
628 # edit conflicts will fall back to the old behaviour (no merging).
629 $wgDiff3 = '/usr/bin/diff3';
630
631
632 # We can also compress text in the old revisions table. If this is set on,
633 # old revisions will be compressed on page save if zlib support is available.
634 # Any compressed revisions will be decompressed on load regardless of this
635 # setting *but will not be readable at all* if zlib support is not available.
636 $wgCompressRevisions = false;
637
638 # This is the list of preferred extensions for uploading files. Uploading
639 # files with extensions not in this list will trigger a warning.
640 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'ogg' );
641
642 # Files with these extensions will never be allowed as uploads.
643 $wgFileBlacklist = array(
644 # HTML may contain cookie-stealing JavaScript and web bugs
645 'html', 'htm',
646 # PHP scripts may execute arbitrary code on the server
647 'php', 'phtml', 'php3', 'php4', 'phps',
648 # Other types that may be interpreted by some servers
649 'shtml', 'jhtml', 'pl', 'py', 'cgi',
650 # May contain harmful executables for Windows victims
651 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
652
653 # This is a flag to determine whether or not to check file extensions on
654 # upload.
655 $wgCheckFileExtensions = true;
656
657 # If this is turned off, users may override the warning for files not
658 # covered by $wgFileExtensions.
659 $wgStrictFileExtensions = true;
660
661 # Warn if uploaded files are larger than this
662 $wgUploadSizeWarning = 150000;
663
664 $wgPasswordSalt = true; # For compatibility with old installations set to false
665
666 # Which namespaces should support subpages?
667 # See Language.php for a list of namespaces.
668 #
669 $wgNamespacesWithSubpages = array( -1 => 0, 0 => 0, 1 => 1,
670 2 => 1, 3 => 1, 4 => 0, 5 => 1, 6 => 0, 7 => 1, 8 => 0, 9 => 1, 10 => 0, 11 => 1);
671
672 $wgNamespacesToBeSearchedDefault = array( -1 => 0, 0 => 1, 1 => 0,
673 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 1, 10 => 0, 11 => 1 );
674
675 # If set, a bold ugly notice will show up at the top of every page.
676 $wgSiteNotice = "";
677
678 ## Set $wgUseImageResize to true if you want to enable dynamic
679 ## server side image resizing ("Thumbnails")
680 #
681 $wgUseImageResize = false;
682
683 ## Resizing can be done using PHP's internal image libraries
684 ## or using ImageMagick. The later supports more file formats
685 ## than PHP, which only supports PNG, GIF, JPG, XBM and WBMP.
686 ##
687 ## Set $wgUseImageMagick to true to use Image Magick instead
688 ## of the builtin functions
689 #
690 $wgUseImageMagick = false;
691 $wgImageMagickConvertCommand = '/usr/bin/convert';
692
693 # Scalable Vector Graphics (SVG) may be uploaded as images.
694 # Since SVG support is not yet standard in browsers, it is
695 # necessary to rasterize SVGs to PNG as a fallback format.
696 #
697 # An external program is required to perform this conversion:
698 $wgSVGConverters = array(
699 'ImageMagick' => '$path/convert -background white -geometry $width $input $output',
700 'sodipodi' => '$path/sodipodi -z -w $width -f $input -e $output',
701 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output',
702 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input',
703 );
704 $wgSVGConverter = 'ImageMagick'; # Pick one of the above
705 $wgSVGConverterPath = ''; # If not in the executable PATH, specify
706
707 if( !isset( $wgCommandLineMode ) ) {
708 $wgCommandLineMode = false;
709 }
710
711 # Show seconds in Recent Changes
712 $wgRCSeconds = false;
713
714 # Log IP addresses in the recentchanges table
715 $wgPutIPinRC = false;
716
717 # RDF metadata toggles
718 $wgEnableDublinCoreRdf = false;
719 $wgEnableCreativeCommonsRdf = false;
720
721 # Override for copyright metadata.
722 # TODO: these options need documentation
723 $wgRightsPage = NULL;
724 $wgRightsUrl = NULL;
725 $wgRightsText = NULL;
726 $wgRightsIcon = NULL;
727
728 # Set this to true if you want detailed copyright information forms on Upload.
729 $wgUseCopyrightUpload = false;
730
731 # Set this to false if you want to disable checking that detailed
732 # copyright information values are not empty.
733 $wgCheckCopyrightUpload = true;
734
735
736 # Set this to false to avoid forcing the first letter of links
737 # to capitals. WARNING: may break links! This makes links
738 # COMPLETELY case-sensitive. Links appearing with a capital at
739 # the beginning of a sentence will *not* go to the same place
740 # as links in the middle of a sentence using a lowercase initial.
741 $wgCapitalLinks = true;
742
743 # List of interwiki prefixes for wikis we'll accept as sources
744 # for Special:Import (for sysops). Since complete page history
745 # can be imported, these should be 'trusted'.
746 $wgImportSources = array();
747
748 # Set this to the number of authors that you want to be credited below an
749 # article text. Set it to zero to hide the attribution block, and a
750 # negative number (like -1) to show all authors. Note that this will
751 # require 2-3 extra database hits, which can have a not insignificant
752 # impact on performance for large wikis.
753 $wgMaxCredits = 0;
754
755 # If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
756 # Otherwise, link to a separate credits page.
757 $wgShowCreditsIfMax = true;
758
759 # Text matching this regular expression will be recognised as spam
760 # See http://en.wikipedia.org/wiki/Regular_expression
761 $wgSpamRegex = false;
762 # Similarly if this function returns true
763 $wgFilterCallback = false;
764
765 # Go button goes straight to the edit screen if the article doesn't exist
766 $wgGoToEdit = false;
767
768 # Allow limited user-specified HTML in wiki pages?
769 # It will be run through a whitelist for security.
770 # Set this to false if you want wiki pages to consist only of wiki
771 # markup. Note that replacements do not yet exist for all HTML
772 # constructs.
773 $wgUserHtml = true;
774
775 # Allow raw, unchecked HTML in <html>...</html> sections.
776 # THIS IS VERY DANGEROUS on a publically editable site, so
777 # you can't enable it unless you've restricted editing to
778 # trusted users only with $wgWhitelistEdit.
779 $wgRawHtml = false;
780
781 # $wgUseTidy: use tidy to make sure HTML output is sane.
782 # This should only be enabled if $wgUserHtml is true.
783 # tidy is a free tool that fixes broken HTML.
784 # See http://www.w3.org/People/Raggett/tidy/
785 # $wgTidyBin should be set to the path of the binary and
786 # $wgTidyConf to the path of the configuration file.
787 # $wgTidyOpts can include any number of parameters.
788 $wgUseTidy = false;
789 $wgTidyBin = 'tidy';
790 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
791 $wgTidyOpts = '';
792
793 # See list of skins and their symbolic names in languagel/Language.php
794 $wgDefaultSkin = 'monobook';
795
796 # Settings added to this array will override the language globals for
797 # the user preferences used by anonymous visitors and newly created
798 # accounts. (See names and sample values in languages/Language.php)
799 #
800 # For instance, to disable section editing links:
801 # $wgDefaultUserOptions['editsection'] = 0;
802 #
803 $wgDefaultUserOptions = array();
804
805 # Whether or not to allow real name fields. Defaults to true.
806 # If set to false, the corresponding input forms on the log-in page and on the user preference page is suppressed.
807 $wgAllowRealName = true;
808
809 # Use XML parser?
810 $wgUseXMLparser = false ;
811
812 # Extensions
813 $wgSkinExtensionFunctions = array();
814 $wgExtensionFunctions = array();
815
816 # Allow user Javascript page?
817 $wgAllowUserJs = true;
818
819 # Allow user Cascading Style Sheets (CSS)?
820 $wgAllowUserCss = true;
821
822 # Use the site's Javascript page?
823 $wgUseSiteJs = true;
824
825 # Use the site's Cascading Style Sheets (CSS)?
826 $wgUseSiteCss = true;
827
828 # Filter for Special:Randompage. Part of a WHERE clause
829 $wgExtraRandompageSQL = false;
830
831 # Allow the "info" action, very inefficient at the moment
832 $wgAllowPageInfo = false;
833
834 # Maximum indent level of toc.
835 $wgMaxTocLevel = 999;
836
837 # Recognise longitude/latitude coordinates
838 $wgUseGeoMode = false;
839
840 # Validation for print or other production versions
841 $wgUseValidation = false;
842
843 # Use external C++ diff engine (module wikidiff from the
844 # extensions package)
845 $wgUseExternalDiffEngine = false;
846
847 # Use RC Patrolling to check for vandalism
848 $wgUseRCPatrol = true;
849
850 # Set maximum number of results to return in syndication feeds
851 # (RSS, Atom) for eg Recentchanges, Newpages.
852 $wgFeedLimit = 50;
853
854 # _Minimum_ timeout for cached Recentchanges feed, in seconds.
855 # A cached version will continue to be served out even if changes
856 # are made, until this many seconds runs out since the last render.
857 $wgFeedCacheTimeout = 60;
858
859 # When generating Recentchanges RSS/Atom feed, diffs will not be
860 # generated for pages larger than this size.
861 $wgFeedDiffCutoff = 32768;
862
863
864 # Additional namespaces. If the namespaces defined in Language.php and Namespace.php are insufficient,
865 # you can create new ones here, for example, to import Help files in other languages.
866 # PLEASE NOTE: Once you delete a namespace, the pages in that namespace will no longer be accessible.
867 # If you rename it, then you can access them through the new namespace name.
868 #
869 # Custom namespaces should start at 100 and stop at 255 (hard limit set by database)
870 #$wgExtraNamespaces =
871 # array(100 => "Hilfe",
872 # 101 => "Hilfe_Diskussion",
873 # 102 => "Aide",
874 # 103 => "Discussion_Aide"
875 # );
876 $wgExtraNamespaces = NULL;
877
878 # Enable SOAP interface. Off by default
879 # SOAP is a protocoll for remote procedure calls (RPC) using http as middleware.
880 # This interface can be used by bots or special clients to receive articles from
881 # a wiki.
882 # Most bots use the normal HTTP interface and don't use SOAP.
883 # If unsure, set to false.
884 $wgEnableSOAP = false;
885
886 # Limit images on image description pages to a user-selectable limit. In order to
887 # reduce disk usage, limits can only be selected from a list. This is the list of
888 # settings the user can choose from:
889 $wgImageLimits = array (
890 array(320,240),
891 array(640,480),
892 array(800,600),
893 array(1024,768),
894 array(1280,1024),
895 array(10000,10000) );
896
897
898 /** Navigation links for the user sidebar.
899 * 'text' is the name of the MediaWiki message that contains the label of this link
900 * 'href' is the name of the MediaWiki message that contains the link target of this link.
901 * Link targets starting with http are considered remote links. Ones not starting with
902 * http are considered as names of local wiki pages.
903 */
904 $wgNavigationLinks = array (
905 array( 'text'=>'mainpage', 'href'=>'mainpage' ),
906 array( 'text'=>'portal', 'href'=>'portal-url' ),
907 array( 'text'=>'currentevents', 'href'=>'currentevents-url' ),
908 array( 'text'=>'recentchanges', 'href'=>'recentchanges-url' ),
909 array( 'text'=>'randompage', 'href'=>'randompage-url' ),
910 array( 'text'=>'help', 'href'=>'helppage' ),
911 array( 'text'=>'sitesupport', 'href'=>'sitesupport-url' ),
912 );
913
914 # On category pages, show thumbnail gallery for images belonging to that category
915 # instead of listing them as articles.
916 $wgCategoryMagicGallery = true;
917
918 # Browser Blacklist for unicode non compliant browsers
919 # Contains a list of regexps : "/regexp/" matching problematic browsers
920 $wgBrowserBlackList = array(
921 "/Mozilla\/4\.78 \[en\] \(X11; U; Linux/"
922 // FIXME: Add some accurate, true things here
923 );
924
925 # Fake out the timezone that the server thinks it's in. This will be used
926 # for date display and not for what's stored in the DB.
927 # Leave to null to retain your server's OS-based timezone value
928 # This is the same as the timezone
929 # $wgLocaltimezone = 'GMT';
930 # $wgLocaltimezone = 'PST8PDT';
931 # $wgLocaltimezone = 'Europe/Sweden';
932 # $wgLocaltimezone = 'CET';
933 $wgLocaltimezone = null;
934
935 # User level management
936 # The number is the database id of a group you want users to be attached by
937 # default. A better interface should be coded [av]
938 $wgAnonGroupId = 1;
939 $wgLoggedInGroupId = 2;
940
941 /*
942 When translating messages with wfMsg(), it is not always clear what should
943 be considered UI messages and what shoud be content messages.
944
945 For example, for regular wikipedia site like en, there should be only one
946 'mainpage', therefore when getting the link of 'mainpage', we should
947 treate it as content of the site and call wfMsgForContent(), while for
948 rendering the text of the link, we call wfMsg(). The code in default
949 behaves this way. However, sites like common do offer different versions
950 of 'mainpage' and the like for different languages. This array provides a
951 way to override the default behavior. For example, to allow language specific
952 mainpage and community portal, set
953
954 $wgForceUIMsgAsContentMsg = array( 'mainpage', 'portal-url' );
955
956 */
957 $wgForceUIMsgAsContentMsg = array();
958
959 /**
960 * Authentication plugin.
961 */
962 $wgAuth = null;
963
964 /**
965 * Global list of hooks.
966 * Add a hook by doing:
967 * $wgHooks['event_name'][] = $function;
968 * or:
969 * $wgHooks['event_name'][] = array($function, $data);
970 * or:
971 * $wgHooks['event_name'][] = array($object, 'method');
972 */
973
974 $wgHooks = array();
975
976 /**
977 * Experimental preview feature to fetch rendered text
978 * over an XMLHttpRequest from JavaScript instead of
979 * forcing a submit and reload of the whole page.
980 * Leave disabled unless you're testing it.
981 */
982 $wgLivePreview = false;
983
984 /**
985 * Disable the internal MySQL-based search, to allow it to be
986 * implemented by an extension instead.
987 */
988 $wgDisableInternalSearch = false;
989
990 } else {
991 die();
992 }
993 ?>