User:Legoktm/Liberation/Configuration: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
Legoktm (talk | contribs)
start
 
Legoktm (talk | contribs)
easier to add comments
Line 1: Line 1:
Configuration variables that are currently set, probably require further investigation.
Configuration variables that are currently set, probably require further investigation. Some of these are set for all fishbowl wiki's, and may need to be re-set for foundationwiki.


== InitializeSettings.php ==
== InitializeSettings.php ==
*[//noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php Source]
*[//noc.wikimedia.org/conf/highlight.php?file=InitialiseSettings.php Source]
<syntaxhighlight lang="php">


'wgAutoConfirmAge' => array(
*'wgAutoConfirmAge' = 'fishbowl' => 0, // No need
'fishbowl' => 0, // No need


'wmgUseCentralNotice' => array(
*'wmgUseCentralNotice'='fishbowl' => false, // Per bug 17718 Disable CentralNotice on private/fishbowl wikis
**This should probably be re-set for foundationwiki


*'wgAccountCreationThrottle'='fishbowl' => 0,
'fishbowl' => false, // Per bug 17718 Disable CentralNotice on private/fishbowl wikis


*'wgNoFollowLinks'='fishbowl' => false, // not a spam measure here... https://bugzilla.wikimedia.org/show_bug.cgi?id=14105
'wgAccountCreationThrottle' => array(
'fishbowl' => 0,

'wgNoFollowLinks' => array(
'fishbowl' => false, // not a spam measure here... https://bugzilla.wikimedia.org/show_bug.cgi?id=14105

'wgEmailAuthentication' => array(
'fishbowl' => false,


*'wgEmailAuthentication'='fishbowl' => false,
*User rights:
<syntaxhighlight lang="php">
'groupOverrides' => array(
'groupOverrides' => array(
'fishbowl' => array(
'fishbowl' => array(
Line 28: Line 23:
),
),
'user' => array(
'user' => array(
'move' => true,
'move' => true,
'upload' => true,
'upload' => true,
'autoconfirmed' => true,
'autoconfirmed' => true,
Line 35: Line 30:
'collectionsaveascommunitypage' => true,
'collectionsaveascommunitypage' => true,
'collectionsaveasuserpage' => true,
'collectionsaveasuserpage' => true,
</syntaxhighlight>


*'wmgEnableCaptcha'='fishbowl' => false,

*'wmgUseCentralAuth'='fishbowl' => false,
'wmgEnableCaptcha' => array(
**Will this require merging with the CentralAuth database?
'fishbowl' => false,
*'wmgUseSpamBlacklist'='fishbowl' => false, // not needed, private editing...


'wmgUseCentralAuth' => array(
'fishbowl' => false,

'wmgUseSpamBlacklist' => array(
'fishbowl' => false, // not needed, private editing...
</syntaxhighlight>
<!-- yeah i got tired after spamblacklist, will finish up later... -->
<!-- yeah i got tired after spamblacklist, will finish up later... -->

Revision as of 12:48, 1 February 2013

Configuration variables that are currently set, probably require further investigation. Some of these are set for all fishbowl wiki's, and may need to be re-set for foundationwiki.

InitializeSettings.php

  • 'wgAutoConfirmAge' = 'fishbowl' => 0, // No need
  • 'wmgUseCentralNotice'='fishbowl' => false, // Per bug 17718 Disable CentralNotice on private/fishbowl wikis
    • This should probably be re-set for foundationwiki
  • 'wgAccountCreationThrottle'='fishbowl' => 0,
  • 'wgEmailAuthentication'='fishbowl' => false,
  • User rights:
'groupOverrides' => array(
	'fishbowl' => array(
		'*' => array(
			'edit' => false,
			'createaccount' => false
		),
		'user' => array(
			 'move' => true,
			 'upload' => true,
			 'autoconfirmed' => true,
			 'reupload' => true,
			 'skipcaptcha' => true,
			 'collectionsaveascommunitypage' => true,
			'collectionsaveasuserpage' => true,
  • 'wmgEnableCaptcha'='fishbowl' => false,
  • 'wmgUseCentralAuth'='fishbowl' => false,
    • Will this require merging with the CentralAuth database?
  • 'wmgUseSpamBlacklist'='fishbowl' => false, // not needed, private editing...