Changes between Version 58 and Version 59 of NewLiveServer


Ignore:
Timestamp:
11/15/10 14:14:17 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewLiveServer

    v58 v59  
    117117== mediawiki == 
    118118 
    119 The Mediawiki site at http://wiki.transitionnetwork.org/ is running on quince.webarch.net (see ticket:147 and ticket:148 for the move), it is also available at  http://wiki.quince.webarch.net/ 
    120  
    121 There is also a wiki:DevelopmentServer#Mediawiki version of this site at http://wiki.dev.transitionnetwork.org/ -- when upgrading Mediawiki please first test the upgrade on the dev server first. 
     119The Mediawiki site at http://wiki.transitionnetwork.org/ is running on quince.webarch.net (see ticket:147 and ticket:148 for the move). 
     120 
     121There is also a wiki:DevelopmentServer#Mediawiki version of this site at http://wiki.dev.transitionnetwork.org/ -- when upgrading Mediawiki please test the upgrade on the dev server first. 
    122122 
    123123Mediawiki is installed in /web/wiki.transitionnetwork.org/www and the apache !VirtualHost configuration is in /etc/apache2/sites-available/wiki.transitionnetwork.org.conf. 
    124124 
    125 To upgrade the site to the latest version of Mediawiki, from http://www.mediawiki.org/wiki/Download you could follow the instructions from http://www.mediawiki.org/wiki/Upgrade or use the '''mediawiki-upgrade''' script which takes the latest version of Mediawiki as an argument on the command line and then does everything for you: 
     125To upgrade the site to the latest version of Mediawiki, from http://www.mediawiki.org/wiki/Download you could follow the instructions from http://www.mediawiki.org/wiki/Upgrade or use the '''mediawiki-upgrade''' script which takes the latest version of Mediawiki as an argument on the command line and then does everything for you, including upgrading the [http://wiki.transitionnetwork.org/Special:Version#Installed_extensions installed extensions] using subversion: 
    126126 
    127127{{{ 
     
    145145$wgRightsText = "Creative Commons Attribution-Share Alike 2.0 UK: England & Wales"; 
    146146$wgRightsIcon = "/images/cc-by-sa.png"; 
     147 
     148# file types for uploads 
     149$wgUploadSizeWarning = 6000 * 3000; 
     150$wgMimeDetectorCommand = "file -bi"; 
     151$wgFileExtensions = array( 'avi', 'mp3', 'rm', 'mpg', 'mpeg', 'mp4', 'svg', 'png', 'gif', 'jpg', 'jpeg', 'pdf', 'rtf', 'doc', 'txt', 'ppt', 'odp', 'odc', 'odf', 'odg', 'odi', 'odif', 'odm', 'ods', 'odt', 'otc', 'otf', 'otg', 'oth', 'oti', 'otp', 'ots', 'ott', 'psd', 'ai', 'eps', 'tif'); 
     152 
     153# No anonymous editing allowed - 
     154$wgGroupPermissions['*']['edit'] = false; 
     155 
     156# allow users to be banned 
     157$wgSysopUserBans = true; 
     158 
     159# http://www.mediawiki.org/wiki/Extension:SyntaxHighlight_GeSHi 
     160require_once("$IP/extensions/SyntaxHighlight_GeSHi/SyntaxHighlight_GeSHi.php"); 
     161 
     162# http://www.mediawiki.org/wiki/Extension:SpamBlacklist 
     163require_once( "$IP/extensions/SpamBlacklist/SpamBlacklist.php" ); 
     164$wgSpamBlacklistFiles = array( 
     165   "$IP/extensions/SpamBlacklist/blacklist", // Combined blacklist  
     166); 
     167 
     168# http://www.mediawiki.org/wiki/Extension:FCKeditor_%28Official%29 
     169require_once( "$IP/extensions/FCKeditor/FCKeditor.php" ); 
    147170}}} 
    148171