Split files and classes in different packages for phpdocumentor. I probably changed...
[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 * @version $Id$
13 * @package MediaWiki
14 */
15
16 # This is not a valid entry point, perform no further processing unless MEDIAWIKI is defined
17 if( defined( 'MEDIAWIKI' ) ) {
18
19 /**
20 * MediaWiki version number
21 * @global string $wgVersion
22 */
23 $wgVersion = '1.4-prealpha';
24
25 /**
26 * Name of the site.
27 * It must be changed in LocalSettings.php
28 * @global string $wgSitename
29 */
30 $wgSitename = 'MediaWiki';
31
32 /**
33 * Will be same as you set @see $wgSitename
34 * @global mixed $wgMetaNamespace
35 */
36 $wgMetaNamespace = FALSE;
37
38
39 /**
40 * URL of the server
41 * It will be automaticly build including https mode
42 * @global string $wgServer
43 */
44 $wgServer = '';
45 # check if server use https:
46 $wgProto = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http';
47
48 if ( @$wgCommandLineMode ) {
49 $wgServer = $wgProto.'://localhost';
50 } else {
51 $wgServer = $wgProto.'://' . $_SERVER['SERVER_NAME'];
52 if( $_SERVER['SERVER_PORT'] != 80 ) $wgServer .= ":" . $_SERVER['SERVER_PORT'];
53 }
54 unset($wgProto);
55
56
57 /**
58 * The path we should point to.
59 * It might be a virtual path in case with use apache mod_rewrite for example
60 * @global string $wgScriptPath
61 */
62 $wgScriptPath = '/wiki';
63
64 /**
65 * Whether to support URLs like index.php/Page_title
66 * @global bool $wgUsePathInfo
67 */
68 $wgUsePathInfo = ( strpos( php_sapi_name(), 'cgi' ) === false );
69
70
71 /**#@+
72 * Script users will request to get articles
73 * ATTN: Old installations used wiki.phtml and redirect.phtml -
74 * make sure that LocalSettings.php is correctly set!
75 * @deprecated
76 */
77 /**
78 * @global string $wgScript
79 */
80 $wgScript = "{$wgScriptPath}/index.php";
81 /**
82 * @global string $wgRedirectScript
83 */
84 $wgRedirectScript = "{$wgScriptPath}/redirect.php";
85 /**#@-*/
86
87
88 /**#@+
89 * @global string
90 */
91 /**
92 * style path as seen by users
93 * @global string $wgStylePath
94 */
95 $wgStylePath = "{$wgScriptPath}/style";
96 /**
97 * filesystem stylesheets directory
98 * @global string $wgStyleDirectory
99 */
100 $wgStyleDirectory = "{$IP}/style";
101 $wgStyleSheetPath = &$wgStylePath;
102 $wgStyleSheetDirectory = &$wgStyleDirectory;
103 $wgArticlePath = "{$wgScript}?title=$1";
104 $wgUploadPath = "{$wgScriptPath}/upload";
105 $wgUploadDirectory = "{$IP}/upload";
106 $wgLogo = "{$wgUploadPath}/wiki.png";
107 $wgMathPath = "{$wgUploadPath}/math";
108 $wgMathDirectory = "{$wgUploadDirectory}/math";
109 $wgTmpDirectory = "{$wgUploadDirectory}/tmp";
110 /**#@-*/
111
112
113 # Email settings
114 #
115 /**
116 * Site admin email address
117 * Default to wikiadmin@SERVER_NAME
118 * @global string $wgEmergencyContact
119 */
120 $wgEmergencyContact = 'wikiadmin@' . getenv( 'SERVER_NAME' );
121 /**
122 * Password reminder email address
123 * The address we should use as sender when a user is requesting his password
124 * Default to apache@SERVER_NAME
125 * @global string $wgPasswordSender
126 */
127 $wgPasswordSender = 'Wikipedia Mail <apache@' . getenv( 'SERVER_NAME' ) . '>';
128
129
130 /**
131 * SMTP Mode
132 * For using a direct (authenticated) SMTP server connection.
133 * Default to false or fill an array :
134 * <code>
135 * "host" => 'SMTP domain',
136 * "IDHost" => 'domain for MessageID',
137 * "port" => "25",
138 * "auth" => true/false,
139 * "username" => user,
140 * "password" => password
141 * </code>
142 *
143 * @global mixed $wgSMTP
144 */
145 $wgSMTP = false;
146
147
148 /**#@+
149 * Database settings
150 */
151 /** database host name or ip address */
152 $wgDBserver = 'localhost';
153 /** name of the database */
154 $wgDBname = 'wikidb';
155 /** */
156 $wgDBconnection = '';
157 /** Database username */
158 $wgDBuser = 'wikiuser';
159 /** Database type
160 * "mysql" for working code and "PostgreSQL" for development/broken code
161 */
162 $wgDBtype = "mysql";
163 /** Table name prefix */
164 $wgDBprefix = '';
165 /**#@-*/
166
167 # Shared database for multiple wikis.
168 # Presently used for storing a user table for single sign-on
169 # The server for this database must be the same as for the main
170 # database.
171 # EXPERIMENTAL
172 # $wgSharedDB='';
173
174 # Database load balancer
175 # This is a two-dimensional array, an array of server info structures
176 # Fields are:
177 # host: Host name
178 # dbname: Default database name
179 # user: DB user
180 # password: DB password
181 # type: "mysql" or "pgsql"
182 # load: ratio of DB_SLAVE load, must be >=0, the sum of all loads must be >0
183 # flags: bit field
184 # DBO_DEFAULT -- turns on DBO_TRX only if !$wgCommandLineMode (recommended)
185 # DBO_DEBUG -- equivalent of $wgDebugDumpSql
186 # DBO_TRX -- wrap entire request in a transaction
187 # DBO_IGNORE -- ignore errors (not useful in LocalSettings.php)
188 # DBO_NOBUFFER -- turn off buffering (not useful in LocalSettings.php)
189 #
190 # Leave at false to use the single-server variables above
191 $wgDBservers = false;
192
193 # Sysop SQL queries
194 # The sql user shouldn't have too many rights other the database, restrict
195 # it to SELECT only on 'cur' table for example
196 #
197 $wgAllowSysopQueries = false; # Dangerous if not configured properly.
198 $wgDBsqluser = 'sqluser';
199 $wgDBsqlpassword = 'sqlpass';
200 $wgDBpassword = 'userpass';
201 $wgSqlLogFile = "{$wgUploadDirectory}/sqllog_mFhyRe6";
202 $wgDBerrorLog = false; # File to log MySQL errors to
203
204 # wgDBminWordLen :
205 # MySQL 3.x : used to discard words that MySQL will not return any results for
206 # shorter values configure mysql directly
207 # MySQL 4.x : ignore it and configure mySQL
208 # See: http://dev.mysql.com/doc/mysql/en/Fulltext_Fine-tuning.html
209 $wgDBminWordLen = 4;
210 $wgDBtransactions = false; # Set to true if using InnoDB tables
211 $wgDBmysql4 = false; # Set to true to use enhanced fulltext search
212 $wgSqlTimeout = 30;
213
214 $wgBufferSQLResults = true; # use buffered queries by default
215
216 # Other wikis on this site, can be administered from a single developer account
217 # Array, interwiki prefix => database name
218 $wgLocalDatabases = array();
219
220
221 # Memcached settings
222 # See docs/memcached.doc
223 #
224 $wgMemCachedDebug = false; # Will be set to false in Setup.php, if the server isn't working
225 $wgUseMemCached = false;
226 $wgMemCachedServers = array( '127.0.0.1:11000' );
227 $wgMemCachedDebug = false;
228 $wgSessionsInMemcached = false;
229 $wgLinkCacheMemcached = false; # Not fully tested
230
231 # Turck MMCache shared memory
232 # You can use this for persistent caching where your wiki runs on a small number of
233 # servers. Mutually exclusive with memcached. MMCache must be installed.
234 $wgUseTurckShm = false;
235
236
237 # Language settings
238 #
239 $wgLanguageCode = 'en';
240 $wgLanguageFile = false; # Filename of a language file generated by dumpMessages.php
241 $wgInterwikiMagic = true; # Treat language links as magic connectors, not inline links
242 $wgInputEncoding = 'ISO-8859-1'; # LanguageUtf8.php normally overrides this
243 $wgOutputEncoding = 'ISO-8859-1'; # unless you set the next option to true:
244 $wgUseLatin1 = false; # Enable ISO-8859-1 compatibility mode
245 $wgEditEncoding = '';
246 $wgMimeType = 'text/html';
247 $wgDocType = '-//W3C//DTD XHTML 1.0 Transitional//EN';
248 $wgDTD = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
249 $wgUseDynamicDates = false; # Enable to allow rewriting dates in page text
250 # DOES NOT FORMAT CORRECTLY FOR MOST LANGUAGES
251 $wgAmericanDates = false; # Enable for English module to print dates
252 # as eg 'May 12' instead of '12 May'
253 $wgTranslateNumerals = true; # For Hindi and Arabic use local numerals instead
254 # of Western style (0-9) numerals in interface.
255
256
257 # Translation using MediaWiki: namespace
258 # This will increase load times by 25-60% unless memcached is installed
259 # Interface messages will be get from the database.
260 $wgUseDatabaseMessages = true;
261 $wgMsgCacheExpiry = 86400;
262
263
264 # Miscellaneous configuration settings
265 #
266
267 $wgLocalInterwiki = 'w';
268 $wgInterwikiExpiry = 10800; # Expiry time for cache of interwiki table
269
270 $wgShowIPinHeader = true; # For non-logged in users
271 $wgMaxNameChars = 32; # Maximum number of bytes in username
272
273 $wgExtraSubtitle = '';
274 $wgSiteSupportPage = ''; # A page where you users can receive donations
275
276 $wgReadOnlyFile = "{$wgUploadDirectory}/lock_yBgMBwiR";
277
278 # The debug log file should be not be publicly accessible if it is
279 # used, as it may contain private data.
280 $wgDebugLogFile = '';
281 $wgDebugRedirects = false;
282 $wgDebugRawPage = false; # Avoid overlapping debug entries by leaving out CSS
283
284 $wgDebugComments = false;
285 $wgReadOnly = false;
286 $wgLogQueries = false;
287 $wgDebugDumpSql = false;
288
289 # Whether to disable automatic generation of "we're sorry,
290 # but there has been a database error" pages.
291 $wgIgnoreSQLErrors = false;
292
293 # Should [[Category:Dog]] on a page associate it with the
294 # category "Dog"? (a link to that category page will be
295 # added to the article, clicking it reveals a list of
296 # all articles in the category)
297 $wgUseCategoryMagic = true;
298
299 # disable experimental dmoz-like category browsing. Output things like:
300 # Encyclopedia > Music > Style of Music > Jazz
301 # FIXME: need fixing
302 $wgUseCategoryBrowser = false;
303
304 $wgEnablePersistentLC = false; # Obsolete, do not use
305 $wgCompressedPersistentLC = true; # use gzcompressed blobs
306 $wgUseOldExistenceCheck = false; # use old prefill link method, for debugging only
307
308 $wgEnableParserCache = false; # requires that php was compiled --with-zlib
309
310 # wgHitcounterUpdateFreq sets how often page counters should be
311 # updated, higher values are easier on the database. A value of 1
312 # causes the counters to be updated on every hit, any higher value n
313 # cause them to update *on average* every n hits. Should be set to
314 # either 1 or something largish, eg 1000, for maximum efficiency.
315
316 $wgHitcounterUpdateFreq = 1;
317
318 # User rights
319 # It's not 100% safe, there could be security hole using that one. Use at your
320 # own risks.
321
322 $wgWhitelistEdit = false; # true = user must login to edit.
323 $wgWhitelistRead = false; # Pages anonymous user may see, like: = array ( ":Main_Page", "Special:Userlogin", "Wikipedia:Help");
324 $wgWhitelistAccount = array ( 'user' => 1, 'sysop' => 1, 'developer' => 1 );
325
326 $wgAllowAnonymousMinor = false; # Allow anonymous users to mark changes as 'minor'
327
328 $wgSysopUserBans = false; # Allow sysops to ban logged-in users
329 $wgSysopRangeBans = false; # Allow sysops to ban IP ranges
330 $wgDefaultBlockExpiry = '24 hours'; # default expiry time
331 # strtotime format, or "infinite" for an infinite block
332 $wgAutoblockExpiry = 86400; # Number of seconds before autoblock entries expire
333
334 # Proxy scanner settings
335 #
336 $wgBlockOpenProxies = false; # Automatic open proxy test on edit
337 $wgProxyPorts = array( 80, 81, 1080, 3128, 6588, 8000, 8080, 8888, 65506 );
338 $wgProxyScriptPath = "$IP/proxy_check.php";
339 $wgProxyMemcExpiry = 86400;
340 $wgProxyKey = 'W1svekXc5u6lZllTZOwnzEk1nbs';
341 $wgProxyList = array(); # big list of banned IP addresses, in the keys not the values
342
343 # Number of accounts each IP address may create, 0 to disable.
344 # Requires memcached
345 $wgAccountCreationThrottle = 0;
346
347
348 # Client-side caching:
349 $wgCachePages = true; # Allow client-side caching of pages
350
351 # Set this to current time to invalidate all prior cached pages.
352 # Affects both client- and server-side caching.
353 $wgCacheEpoch = '20030516000000';
354
355
356 # Server-side caching:
357 # This will cache static pages for non-logged-in users
358 # to reduce database traffic on public sites.
359 # Must set $wgShowIPinHeader = false
360 $wgUseFileCache = false;
361 $wgFileCacheDirectory = "{$wgUploadDirectory}/cache";
362
363 # When using the file cache, we can store the cached HTML gzipped to save disk
364 # space. Pages will then also be served compressed to clients that support it.
365 # THIS IS NOT COMPATIBLE with ob_gzhandler which is now enabled if supported in
366 # the default LocalSettings.php! If you enable this, remove that setting first.
367 #
368 # Requires zlib support enabled in PHP.
369 $wgUseGzip = false;
370
371
372 $wgCookieExpiration = 2592000;
373
374
375 # Squid-related settings
376 #
377
378 # Enable/disable Squid
379 $wgUseSquid = false;
380
381 # If you run Squid3 with ESI support, enable this (default:false):
382 $wgUseESI = false;
383
384 # Internal server name as known to Squid, if different
385 # $wgInternalServer = 'http://yourinternal.tld:8000';
386 $wgInternalServer = $wgServer;
387
388 # Cache timeout for the squid, will be sent as s-maxage (without ESI) or
389 # Surrogate-Control (with ESI). Without ESI, you should strip out s-maxage in the Squid config.
390 # 18000 seconds = 5 hours, more cache hits with 2678400 = 31 days
391 $wgSquidMaxage = 18000;
392
393 # A list of proxy servers (ips if possible) to purge on changes
394 # don't specify ports here (80 is default)
395 # $wgSquidServers = array('127.0.0.1');
396
397 # Maximum number of titles to purge in any one client operation
398 $wgMaxSquidPurgeTitles = 400;
399
400
401 # Cookie settings:
402 # Set to set an explicit domain on the login cookies
403 # eg, "justthis.domain.org" or ".any.subdomain.net"
404 $wgCookieDomain = '';
405 $wgCookiePath = '/';
406 $wgDisableCookieCheck = false;
407
408 # Whether to allow inline image pointing to other websites
409 $wgAllowExternalImages = true;
410
411 $wgMiserMode = false; # Disable database-intensive features
412 $wgDisableQueryPages = false; # Disable all query pages if miser mode is on, not just some
413 $wgUseWatchlistCache = false; # Generate a watchlist once every hour or so
414 $wgWLCacheTimeout = 3600; # The hour or so mentioned above
415
416 # To use inline TeX, you need to compile 'texvc' (in the 'math' subdirectory
417 # of the MediaWiki package and have latex, dvips, gs (ghostscript), and
418 # convert (ImageMagick) installed and available in the PATH.
419 # Please see math/README for more information.
420 $wgUseTeX = false;
421 $wgTexvc = './math/texvc'; # Location of the texvc binary
422
423 # Profiling / debugging
424 $wgProfiling = false; # Enable for more detailed by-function times in debug log
425 $wgProfileLimit = 0.0; # Only record profiling info for pages that took longer than this
426 $wgProfileOnly = false; # Don't put non-profiling info into log file
427 $wgProfileToDatabase = false; # Log sums from profiling into "profiling" table in db.
428 $wgProfileSampleRate = 1; # Only profile every n requests when profiling is turned on
429 $wgDebugProfiling = false; # Detects non-matching wfProfileIn/wfProfileOut calls
430 $wgDebugFunctionEntry = 0; # Output debug message on every wfProfileIn/wfProfileOut
431 $wgDebugSquid = false; # Lots of debugging output from SquidUpdate.php
432
433 $wgDisableCounters = false;
434 $wgDisableTextSearch = false;
435 $wgDisableFuzzySearch = false;
436 $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.
437 $wgDisableUploads = true; # Uploads have to be specially set up to be secure
438 $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.
439 $wgDisableAnonTalk = false;
440
441 # Path to the GNU diff3 utility. If the file doesn't exist,
442 # edit conflicts will fall back to the old behaviour (no merging).
443 $wgDiff3 = '/usr/bin/diff3';
444
445
446 # We can also compress text in the old revisions table. If this is set on,
447 # old revisions will be compressed on page save if zlib support is available.
448 # Any compressed revisions will be decompressed on load regardless of this
449 # setting *but will not be readable at all* if zlib support is not available.
450 $wgCompressRevisions = false;
451
452 # This is the list of preferred extensions for uploading files. Uploading
453 # files with extensions not in this list will trigger a warning.
454 $wgFileExtensions = array( 'png', 'gif', 'jpg', 'jpeg', 'ogg' );
455
456 # Files with these extensions will never be allowed as uploads.
457 $wgFileBlacklist = array(
458 # HTML may contain cookie-stealing JavaScript and web bugs
459 'html', 'htm',
460 # PHP scripts may execute arbitrary code on the server
461 'php', 'phtml', 'php3', 'php4', 'phps',
462 # Other types that may be interpreted by some servers
463 'shtml', 'jhtml', 'pl', 'py',
464 # May contain harmful executables for Windows victims
465 'exe', 'scr', 'dll', 'msi', 'vbs', 'bat', 'com', 'pif', 'cmd', 'vxd', 'cpl' );
466
467 # This is a flag to determine whether or not to check file extensions on
468 # upload.
469 $wgCheckFileExtensions = true;
470
471 # If this is turned off, users may override the warning for files not
472 # covered by $wgFileExtensions.
473 $wgStrictFileExtensions = true;
474
475 # Warn if uploaded files are larger than this
476 $wgUploadSizeWarning = 150000;
477
478 $wgPasswordSalt = true; # For compatibility with old installations set to false
479
480 # Which namespaces should support subpages?
481 # See Language.php for a list of namespaces.
482 #
483 $wgNamespacesWithSubpages = array( -1 => 0, 0 => 0, 1 => 1,
484 2 => 1, 3 => 1, 4 => 0, 5 => 1, 6 => 0, 7 => 1, 8 => 0, 9 => 1, 10 => 0, 11 => 1);
485
486 $wgNamespacesToBeSearchedDefault = array( -1 => 0, 0 => 1, 1 => 0,
487 2 => 0, 3 => 0, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, 9 => 1, 10 => 0, 11 => 1 );
488
489 # If set, a bold ugly notice will show up at the top of every page.
490 $wgSiteNotice = "";
491
492 ## Set $wgUseImageResize to true if you want to enable dynamic
493 ## server side image resizing ("Thumbnails")
494 #
495 $wgUseImageResize = false;
496
497 ## Set maximum width of images on image description pages.
498 ## Images bigger than this will be rendered down.
499 $wgMaxImageWidth = 800;
500
501 ## Resizing can be done using PHP's internal image libraries
502 ## or using ImageMagick. The later supports more file formats
503 ## than PHP, which only supports PNG, GIF, JPG, XBM and WBMP.
504 ##
505 ## Set $wgUseImageMagick to true to use Image Magick instead
506 ## of the builtin functions
507 #
508 $wgUseImageMagick = false;
509 $wgImageMagickConvertCommand = '/usr/bin/convert';
510
511 # PHPTal is a library for page templates. MediaWiki includes
512 # a recent PHPTal distribution. It is required to use the
513 # Monobook (default) skin.
514 #
515 # Currently it does not work on PHP5.
516 $wgUsePHPTal = version_compare( phpversion(), "5.0", "lt" );
517
518 if( !isset( $wgCommandLineMode ) ) {
519 $wgCommandLineMode = false;
520 }
521
522 # Show seconds in Recent Changes
523 $wgRCSeconds = false;
524
525 # Log IP addresses in the recentchanges table
526 $wgPutIPinRC = false;
527
528 # RDF metadata toggles
529 $wgEnableDublinCoreRdf = false;
530 $wgEnableCreativeCommonsRdf = false;
531
532 # Override for copyright metadata.
533 # TODO: these options need documentation
534 $wgRightsPage = NULL;
535 $wgRightsUrl = NULL;
536 $wgRightsText = NULL;
537 $wgRightsIcon = NULL;
538
539 # Set this to true if you want detailed copyright information forms on Upload.
540 $wgUseCopyrightUpload = false;
541
542 # Set this to false if you want to disable checking that detailed
543 # copyright information values are not empty.
544 $wgCheckCopyrightUpload = true;
545
546
547 # Set this to false to avoid forcing the first letter of links
548 # to capitals. WARNING: may break links! This makes links
549 # COMPLETELY case-sensitive. Links appearing with a capital at
550 # the beginning of a sentence will *not* go to the same place
551 # as links in the middle of a sentence using a lowercase initial.
552 $wgCapitalLinks = true;
553
554 # List of interwiki prefixes for wikis we'll accept as sources
555 # for Special:Import (for sysops). Since complete page history
556 # can be imported, these should be 'trusted'.
557 $wgImportSources = array();
558
559 # Set this to the number of authors that you want to be credited below an
560 # article text. Set it to zero to hide the attribution block, and a
561 # negative number (like -1) to show all authors. Note that this will
562 # require 2-3 extra database hits, which can have a not insignificant
563 # impact on performance for large wikis.
564 $wgMaxCredits = 0;
565
566 # If there are more than $wgMaxCredits authors, show $wgMaxCredits of them.
567 # Otherwise, link to a separate credits page.
568 $wgShowCreditsIfMax = true;
569
570 # Text matching this regular expression will be recognised as spam
571 # See http://en.wikipedia.org/wiki/Regular_expression
572 $wgSpamRegex = false;
573 # Similarly if this function returns true
574 $wgFilterCallback = false;
575
576 # Go button goes straight to the edit screen if the article doesn't exist
577 $wgGoToEdit = false;
578
579 # Allow limited user-specified HTML in wiki pages?
580 # It will be run through a whitelist for security.
581 # Set this to false if you want wiki pages to consist only of wiki
582 # markup. Note that replacements do not yet exist for all HTML
583 # constructs.
584 $wgUserHtml = true;
585
586 # Allow raw, unchecked HTML in <html>...</html> sections.
587 # THIS IS VERY DANGEROUS on a publically editable site.
588 # Don't enable it unless you've restricted editing to trusted
589 # users only.
590 $wgRawHtml = false;
591
592 # $wgUseTidy: use tidy to make sure HTML output is sane.
593 # This should only be enabled if $wgUserHtml is true.
594 # tidy is a free tool that fixes broken HTML.
595 # See http://www.w3.org/People/Raggett/tidy/
596 # $wgTidyBin should be set to the path of the binary and
597 # $wgTidyConf to the path of the configuration file.
598 # $wgTidyOpts can include any number of parameters.
599 $wgUseTidy = false;
600 $wgTidyBin = 'tidy';
601 $wgTidyConf = $IP.'/extensions/tidy/tidy.conf';
602 $wgTidyOpts = '';
603
604 # See list of skins and their symbolic names in language/Language.php
605 $wgDefaultSkin = 'monobook';
606
607 # Whether or not to allow real name fields. Defaults to true.
608 $wgAllowRealName = true;
609
610 # Extensions
611 $wgSkinExtensionFunctions = array();
612 $wgExtensionFunctions = array();
613
614 # Allow user Javascript page?
615 $wgAllowUserJs = true;
616
617 # Allow user Cascading Style Sheets (CSS)?
618 $wgAllowUserCss = true;
619
620 # Filter for Special:Randompage. Part of a WHERE clause
621 $wgExtraRandompageSQL = false;
622
623 # Allow the "info" action, very inefficient at the moment
624 $wgAllowPageInfo = false;
625
626 # Maximum indent level of toc.
627 $wgMaxTocLevel = 999;
628
629 # Recognise longitude/latitude coordinates
630 $wgUseGeoMode = false;
631
632 # Validation for print or other production versions
633 $wgUseValidation = false;
634
635 # Use external C++ diff engine (module wikidiff from the
636 # extensions package)
637 $wgUseExternalDiffEngine = false;
638
639 # Use RC Patrolling to check for vandalism
640 $wgUseRCPatrol = true;
641
642 # Additional namespaces. If the namespaces defined in Language.php and Namespace.php are insufficient,
643 # you can create new ones here, for example, to import Help files in other languages.
644 # PLEASE NOTE: Once you delete a namespace, the pages in that namespace will no longer be accessible.
645 # If you rename it, then you can access them through the new namespace name.
646 #
647 # Custom namespaces should start at 100.
648 #$wgExtraNamespaces=
649 # array(100 => "Hilfe",
650 # 101 => "Hilfe_Diskussion",
651 # 102 =>"Aide",
652 # 103 =>"Discussion_Aide"
653 # );
654
655 # Enable SOAP interface. Off by default
656 $wgEnableSOAP = false;
657
658 } else {
659 die();
660 }
661 ?>