Compbio: Difference between revisions

From MDWiki
Jump to navigationJump to search
Line 14: Line 14:
require_once("extensions/MWCalendar.php");
require_once("extensions/MWCalendar.php");
require_once("extensions/ConfirmAccount/SpecialConfirmAccount.php");
require_once("extensions/ConfirmAccount/SpecialConfirmAccount.php");
require_once( "$IP/extensions/UserMerge/UserMerge.php" );
$wgConfirmAccountContact = "t.huber@uq.edu.au";
$wgConfirmAccountContact = "t.huber@uq.edu.au";
$wgGroupPermissions['bureaucrat']['usermerge'] = true;
</pre></code>
</pre></code>


The last lines are to use an extension to ensure all new user requests are manually confirmed by Thomas.
The last lines are to use an extension to ensure all new user requests are manually confirmed by Thomas.

Revision as of 09:22, 12 May 2009

Compbio

compbio is one of our servers. This document provides a full description of its services. If a service is moved to another server, please just move the corresponding description to its page.

Mediawiki

This is the software you are looking at now. It's a standard setup except for a few modifications:

in LocalSettings.php:

$wgGroupPermissions['*']['edit'] = false;  # This means you need an account to edit the wiki
$wgEmailAuthentication = true; 
$wgMaxUploadSize    = 16000000; # We found the default was too small

# Installed plugins
require_once("extensions/MWCalendar.php");
require_once("extensions/ConfirmAccount/SpecialConfirmAccount.php");
require_once( "$IP/extensions/UserMerge/UserMerge.php" );
$wgConfirmAccountContact = "t.huber@uq.edu.au";
$wgGroupPermissions['bureaucrat']['usermerge'] = true;

The last lines are to use an extension to ensure all new user requests are manually confirmed by Thomas.