Advertisement
Guest User

Untitled

a guest
Apr 10th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <?php
  2. # This file was automatically generated by the MediaWiki 1.26.0
  3. # installer. If you make manual changes, please keep track in case you
  4. # need to recreate them later.
  5. #
  6. # See includes/DefaultSettings.php for all configurable settings
  7. # and their default values, but don't forget to make changes in _this_
  8. # file, not there.
  9. #
  10. # Further documentation for configuration settings may be found at:
  11. # https://www.mediawiki.org/wiki/Manual:Configuration_settings
  12.  
  13. # Protect against web entry
  14. if ( !defined( 'MEDIAWIKI' ) ) {
  15. exit;
  16. }
  17.  
  18. ## Uncomment this to disable output compression
  19. # $wgDisableOutputCompression = true;
  20.  
  21. $wgSitename = "Kevin wiki";
  22. $wgMetaNamespace = "Kevin_wiki";
  23.  
  24. ## The URL base path to the directory containing the wiki;
  25. ## defaults for all runtime URL paths are based off of this.
  26. ## For more information on customizing the URLs
  27. ## (like /w/index.php/Page_title to /wiki/Page_title) please see:
  28. ## https://www.mediawiki.org/wiki/Manual:Short_URL
  29. $wgScriptPath = "";
  30.  
  31. ## The protocol and server name to use in fully-qualified URLs
  32. $wgServer = "http://192.168.56.13";
  33.  
  34.  
  35. ## The URL path to static resources (images, scripts, etc.)
  36. $wgResourceBasePath = $wgScriptPath;
  37.  
  38. ## The URL path to the logo. Make sure you change this from the default,
  39. ## or else you'll overwrite your logo when you upgrade!
  40. $wgLogo = "$wgResourceBasePath/resources/assets/wiki.png";
  41.  
  42. ## UPO means: this is also a user preference option
  43.  
  44. $wgEnableEmail = true;
  45. $wgEnableUserEmail = true; # UPO
  46.  
  47. $wgEmergencyContact = "apache@192.168.56.13";
  48. $wgPasswordSender = "apache@192.168.56.13";
  49.  
  50. $wgEnotifUserTalk = false; # UPO
  51. $wgEnotifWatchlist = false; # UPO
  52. $wgEmailAuthentication = true;
  53.  
  54. ## Database settings
  55. $wgDBtype = "mysql";
  56. $wgDBserver = "localhost";
  57. $wgDBname = "wiki_new";
  58. $wgDBuser = "wiki_ac";
  59. $wgDBpassword = "wiki_ac";
  60.  
  61. # MySQL specific settings
  62. $wgDBprefix = "";
  63.  
  64. # MySQL table options to use during installation or update
  65. $wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
  66.  
  67. # Experimental charset support for MySQL 5.0.
  68. $wgDBmysql5 = false;
  69.  
  70. ## Shared memory settings
  71. $wgMainCacheType = CACHE_NONE;
  72. $wgMemCachedServers = array();
  73.  
  74. ## To enable image uploads, make sure the 'images' directory
  75. ## is writable, then set this to true:
  76. $wgEnableUploads = false;
  77. #$wgUseImageMagick = true;
  78. #$wgImageMagickConvertCommand = "/usr/bin/convert";
  79.  
  80. # InstantCommons allows wiki to use images from https://commons.wikimedia.org
  81. $wgUseInstantCommons = false;
  82.  
  83. ## If you use ImageMagick (or any other shell command) on a
  84. ## Linux server, this will need to be set to the name of an
  85. ## available UTF-8 locale
  86. $wgShellLocale = "en_US.utf8";
  87.  
  88. ## If you want to use image uploads under safe mode,
  89. ## create the directories images/archive, images/thumb and
  90. ## images/temp, and make them all writable. Then uncomment
  91. ## this, if it's not already uncommented:
  92. #$wgHashedUploadDirectory = false;
  93.  
  94. ## Set $wgCacheDirectory to a writable directory on the web server
  95. ## to make your wiki go slightly faster. The directory should not
  96. ## be publically accessible from the web.
  97. #$wgCacheDirectory = "$IP/cache";
  98.  
  99. # Site language code, should be one of the list in ./languages/Names.php
  100. $wgLanguageCode = "cs";
  101.  
  102. $wgSecretKey = "91dad8910e3d2a58bda6e984e0767c49a89d58f1a7b71444a810b40910efff3c";
  103.  
  104. # Site upgrade key. Must be set to a string (default provided) to turn on the
  105. # web installer while LocalSettings.php is in place
  106. $wgUpgradeKey = "7276e10f5aa6c89e";
  107.  
  108. ## For attaching licensing metadata to pages, and displaying an
  109. ## appropriate copyright notice / icon. GNU Free Documentation
  110. ## License and Creative Commons licenses are supported so far.
  111. $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
  112. $wgRightsUrl = "";
  113. $wgRightsText = "";
  114. $wgRightsIcon = "";
  115.  
  116. # Path to the GNU diff3 utility. Used for conflict resolution.
  117. $wgDiff3 = "/usr/bin/diff3";
  118.  
  119. ## Default skin: you can change the default skin. Use the internal symbolic
  120. ## names, ie 'vector', 'monobook':
  121. $wgDefaultSkin = "vector";
  122.  
  123. # Enabled skins.
  124. # The following skins were automatically enabled:
  125. wfLoadSkin( 'CologneBlue' );
  126. wfLoadSkin( 'Modern' );
  127. wfLoadSkin( 'MonoBook' );
  128. wfLoadSkin( 'Vector' );
  129.  
  130.  
  131. # End of automatically generated settings.
  132. # Add more configuration options below.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement