Difference between revisions of "User talk:Pickens"
(I have had my first spam links on a discussion page - going to prevent new users and then go in and delete all users) |
(→Changes on 12-19-2007: Numbered Changes) |
||
Line 3: | Line 3: | ||
Wikimedia installed at [http://researchandideas.com Research and Ideas] | Wikimedia installed at [http://researchandideas.com Research and Ideas] | ||
− | ===Preventing anonymous editing=== | + | ===Change 1: Preventing anonymous editing=== |
Add this to LocalSettings.php | Add this to LocalSettings.php | ||
$wgGroupPermissions['*']['edit'] = false; | $wgGroupPermissions['*']['edit'] = false; | ||
− | ===Allowing only admins to create accounts=== | + | ===Change 2: Allowing only admins to create accounts=== |
Add this to LocalSettings.php (requires 1.5.1) | Add this to LocalSettings.php (requires 1.5.1) | ||
$wgGroupPermissions['*']['createaccount'] = false; | $wgGroupPermissions['*']['createaccount'] = false; | ||
− | ===Allow Uploads=== | + | ===Change 3: Allow Uploads=== |
To enable image uploads, make sure the 'images' directory is writable, then set this to true: | To enable image uploads, make sure the 'images' directory is writable, then set this to true: | ||
$wgEnableUploads = true; | $wgEnableUploads = true; | ||
− | ===Changed Logo=== | + | ===Change 4: Changed Logo=== |
Created an 135 by 135 png logo | Created an 135 by 135 png logo | ||
Line 25: | Line 25: | ||
directory and renamed it wiki.png | directory and renamed it wiki.png | ||
− | ===Added Citation Extension=== | + | ===Change 5: Added Citation Extension=== |
Downloaded citation extension from [http://www.mediawiki.org/wiki/Extension:Cite/Cite.php MediaWiki] | Downloaded citation extension from [http://www.mediawiki.org/wiki/Extension:Cite/Cite.php MediaWiki] | ||
Line 35: | Line 35: | ||
require_once( $IP.'/extensions/Cite/Cite.php' ); | require_once( $IP.'/extensions/Cite/Cite.php' ); | ||
− | ===Installed the Template:Reflist=== | + | ===Change 6: Installed the Template:Reflist=== |
Went to [http://en.wikipedia.org/wiki/Template:Reflist Template:Reflist] on Wikipedia | Went to [http://en.wikipedia.org/wiki/Template:Reflist Template:Reflist] on Wikipedia | ||
Revision as of 20:47, 25 September 2012
Changes on 12-19-2007
Installation
Wikimedia installed at Research and Ideas
Change 1: Preventing anonymous editing
Add this to LocalSettings.php
$wgGroupPermissions['*']['edit'] = false;
Change 2: Allowing only admins to create accounts
Add this to LocalSettings.php (requires 1.5.1)
$wgGroupPermissions['*']['createaccount'] = false;
Change 3: Allow Uploads
To enable image uploads, make sure the 'images' directory is writable, then set this to true:
$wgEnableUploads = true;
Change 4: Changed Logo
Created an 135 by 135 png logo
Uploaded it to /www/skins/common/images/
directory and renamed it wiki.png
Change 5: 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' );
Change 6: 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;