Difference between revisions of "MediaWikiSiteCustomization"

From RadiWiki
Jump to: navigation, search
Line 9: Line 9:
  
  
Disabled account creation for non-sysops.
+
Set some restrictions, so it can only be edited/changed by a limited set
 +
of users.
 +
 
 
  # Prevent new user registrations except by sysops
 
  # Prevent new user registrations except by sysops
 
  $wgGroupPermissions['*']['createaccount'] = false;
 
  $wgGroupPermissions['*']['createaccount'] = false;
 +
 +
# Disable anonymous editing
 +
$wgGroupPermissions['*']['edit'] = false;
  
 
[[User:Netadmin|Netadmin]] 11:21, 14 June 2007 (CEST)
 
[[User:Netadmin|Netadmin]] 11:21, 14 June 2007 (CEST)

Revision as of 09:24, 14 June 2007

Usage

This page contains a log of all the changes that have been done on the MediaWiki configuration, to become the RadiWiki site as it is right now. All changes to the settings of MediaWiki, and installation and modification of extensions, etc.., should be included on this page, to easily reproduce the RadiWiki site on a clean MediaWiki installation.

Log

Added user accounts for joro and jewe

Netadmin 10:50, 14 June 2007 (CEST)


Set some restrictions, so it can only be edited/changed by a limited set of users.

# Prevent new user registrations except by sysops
$wgGroupPermissions['*']['createaccount'] = false;
# Disable anonymous editing
$wgGroupPermissions['*']['edit'] = false;

Netadmin 11:21, 14 June 2007 (CEST)