Difference between revisions of "User talk:Pickens"
(Copied this over from Reservoir Hill - Here are the permissions) |
(I have had my first spam links on a discussion page - going to prevent new users and then go in and delete all users) |
||
Line 67: | Line 67: | ||
$wgGroupPermissions['sysop']['createpage'] = true; | $wgGroupPermissions['sysop']['createpage'] = true; | ||
+ | |||
+ | |||
+ | ==Changes on 09-29-2009== | ||
+ | |||
+ | ===Do Not Allow Users to Register=== | ||
+ | Add this to LocalSettings.php (requires 1.5.1) | ||
+ | |||
+ | $wgGroupPermissions['*']['createaccount'] = false; |
Revision as of 04:11, 30 September 2009
Changes on 12-19-2007
Installation
Wikimedia installed at Research and Ideas
Preventing anonymous editing
Add this to LocalSettings.php
$wgGroupPermissions['*']['edit'] = false;
Allowing only admins to create accounts
Add this to LocalSettings.php (requires 1.5.1)
$wgGroupPermissions['*']['createaccount'] = false;
Allow Uploads
To enable image uploads, make sure the 'images' directory is writable, then set this to true:
$wgEnableUploads = true;
Changed Logo
Created an 135 by 135 png logo
Uploaded it to /www/skins/common/images/
directory and renamed it wiki.png
Added Citation Extension
Downloaded citation extension from MediaWiki
Installed the extension files in the directory wiki/extensions/Cite.
Added the following to the LocalSettings.php file:
require_once( $IP.'/extensions/Cite/Cite.php' );
Installed the Template:Reflist
Went to Template:Reflist on Wikipedia
Clicked on "View Source" and copied the source
Created a new page: Template:Reflist
Copied the source.
It works.
Changes on 12-20-2007
Allow Users to Register
Add this to LocalSettings.php (requires 1.5.1)
$wgGroupPermissions['*']['createaccount'] = true;
Do Not Allow Users to Create New Pages
Add this to LocalSettings.php
$wgGroupPermissions['*']['createpage'] = false;
$wgGroupPermissions['user']['createpage'] = false;
Changes on 12-22-2007
Give the Administrator Permission to Create New Pages
Add this to LocalSettings.php
$wgGroupPermissions['sysop']['createpage'] = true;
Changes on 09-29-2009
Do Not Allow Users to Register
Add this to LocalSettings.php (requires 1.5.1)
$wgGroupPermissions['*']['createaccount'] = false;