Advertisement
Guest User

Untitled

a guest
Aug 6th, 2014
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.88 KB | None | 0 0
  1. <?php
  2. # This file was automatically generated by the MediaWiki 1.23.2
  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. $wgShowExceptionDetails = true;
  18. ## Uncomment this to disable output compression
  19. # $wgDisableOutputCompression = true;
  20.  
  21. $wgSitename = "SOE Wiki";
  22. $wgMetaNamespace = "SOE_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. $wgScriptExtension = ".php";
  31.  
  32. ## The protocol and server name to use in fully-qualified URLs
  33. $wgServer = "http://wiki.soexcellence.com";
  34.  
  35. ## The relative URL path to the skins directory
  36. $wgStylePath = "$wgScriptPath/skins";
  37.  
  38. ## The relative 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 = "$wgStylePath/common/images/wiki.png";
  41.  
  42. ## UPO means: this is also a user preference option
  43.  
  44. $wgEnableEmail = true;
  45. $wgEnableUserEmail = true; # UPO
  46.  
  47. $wgEmergencyContact = "xxx@soexcellence.com";
  48. $wgPasswordSender = "xxx@soexcellence.com";
  49.  
  50. $wgEnotifUserTalk = false; # UPO
  51. $wgEnotifWatchlist = false; # UPO
  52. $wgEmailAuthentication = true;
  53.  
  54. ## Database settings
  55. $wgDBtype = "mysql";
  56. $wgDBserver = "localhost";
  57. $wgDBname = "xxx";
  58. $wgDBuser = "xxx";
  59. $wgDBpassword = "xxx";
  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 http://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 = "en";
  101.  
  102. $wgSecretKey = "xxx";
  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 = "xxx";
  107.  
  108. ## Default skin: you can change the default skin. Use the internal symbolic
  109. ## names, ie 'cologneblue', 'monobook', 'vector':
  110. $wgDefaultSkin = "vector";
  111.  
  112. ## For attaching licensing metadata to pages, and displaying an
  113. ## appropriate copyright notice / icon. GNU Free Documentation
  114. ## License and Creative Commons licenses are supported so far.
  115. $wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
  116. $wgRightsUrl = "";
  117. $wgRightsText = "";
  118. $wgRightsIcon = "";
  119.  
  120. # Path to the GNU diff3 utility. Used for conflict resolution.
  121. $wgDiff3 = "/usr/bin/diff3";
  122.  
  123. # The following permissions were set based on your choice in the installer
  124. $wgGroupPermissions['*']['createaccount'] = true;
  125. $wgGroupPermissions['*']['edit'] = false;
  126. $wgGroupPermissions['*']['read'] = false;
  127.  
  128.  
  129.  
  130. # Enabled Extensions. Most extensions are enabled by including the base extension file here
  131. # but check specific extension documentation for more details
  132. # The following extensions were automatically enabled:
  133. require_once "$IP/extensions/Cite/Cite.php";
  134. require_once "$IP/extensions/ConfirmEdit/ConfirmEdit.php";
  135. require_once "$IP/extensions/Gadgets/Gadgets.php";
  136. require_once "$IP/extensions/GoogleLogin/GoogleLogin.php";
  137. require_once "$IP/extensions/ImageMap/ImageMap.php";
  138. require_once "$IP/extensions/InputBox/InputBox.php";
  139. require_once "$IP/extensions/Interwiki/Interwiki.php";
  140. require_once "$IP/extensions/LocalisationUpdate/LocalisationUpdate.php";
  141. require_once "$IP/extensions/Nuke/Nuke.php";
  142. require_once "$IP/extensions/ParserFunctions/ParserFunctions.php";
  143. require_once "$IP/extensions/PdfHandler/PdfHandler.php";
  144. require_once "$IP/extensions/Poem/Poem.php";
  145. require_once "$IP/extensions/Renameuser/Renameuser.php";
  146. require_once "$IP/extensions/SpamBlacklist/SpamBlacklist.php";
  147. require_once "$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php";
  148. require_once "$IP/extensions/TitleBlacklist/TitleBlacklist.php";
  149. require_once "$IP/extensions/WikiEditor/WikiEditor.php";
  150.  
  151. # End of automatically generated settings.
  152. # Add more configuration options below.
  153. $wgLogo = "{$wgScriptPath}/Logo_Small.png";
  154. $wgGLReplaceMWLogin = true;
  155. require_once("$IP/extensions/GoogleLogin/GoogleLogin.php");
  156. $wgWhitelistRead = array("Special:GoogleLogin");
  157. $wgGLSecret = 'xxx';
  158. $wgGLAppId = 'xxx';
  159. $wgGLAllowedDomains = array('soexcellence.com');
  160. $wgGLAllowedDomainsStrict = true;
  161. $wgGLReplaceMWLogin = true;
  162. $wgGLAllowAccountCreation = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement