These is the install file for the Contest extension. Extension page on mediawiki.org: https://www.mediawiki.org/wiki/Extension:Contest Latest version of the install file: https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/extensions/Contest.git;a=blob;f=INSTALL == Requirements == Contest requires: * MediaWiki 1.19 or above * PHP 5.3 or above * MySQL == Download == git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions/Contest.git == Installation == Once you have downloaded the code, place the ''Contest'' directory within your MediaWiki 'extensions' directory. Then add the following code to your [[Manual:LocalSettings.php|LocalSettings.php]] file: # Contest require_once( "$IP/extensions/Contest/Contest.php" ); == Configuration == Configuration of Contest is done by assigning to $egContestSettings in your [[Manual:LocalSettings.php|LocalSettings.php]] file, AFTER the inclusion of the extension. The options are listed below and their default is set in the Contest settings file: http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Contest/Contest.settings.php?view=markup You should NOT modify the settings file, but can have a look at it to get an idea of how to use the settings, in case the below descriptions do not suffice. {| class="wikitable sortable" ! Name ! Type ! Default ! Description |- | votevalues | array of integer | range( 0, 5 ) | Values that can be voted by judges on a participant |- | enableTopLink | boolean | True | Enable display of the top link to Special:MyContests |- | submissionDomains | array of string | array( 'mediawiki.org', 'github.com', 'gitorious.org' ) | Domains on which submissions can be placed |- | mailSender | string | $GLOBALS['wgPasswordSender'] | Email address used as sender in signup and reminder emails. |- | mailSenderName | string | $GLOBALS['wgPasswordSenderName'] | Sender name used for signup and reminder emails. |- | contestDeletionEnabled | boolean | true | Allow deleting of contests and challenges. |}