Changes between Version 31 and Version 32 of NewLiveServer
- Timestamp:
- 10/25/10 18:39:35 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewLiveServer
v31 v32 14 14 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. 15 15 16 Mediawiki is installed in /web/wiki.transitionnetwork.org/www. 17 16 18 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: 17 19 18 20 {{{ 19 21 kiwi:~# mediawiki-upgrade 1.16.0 22 }}} 23 24 The main configuration file for Mediawiki is /web/wiki.transitionnetwork.org/www/LocalSettings.php and this are the things that have been changed from their default values: 25 26 {{{ 27 $wgScript = "/index.php"; 28 $wgRedirectScript = "/redirect.php"; 29 $wgArticlePath = "/$1"; 30 31 $wgLogo = "/images/wiki.png"; 32 33 $wgEmergencyContact = "wiki@transitionnetwork.org"; 34 $wgPasswordSender = "wiki@transitionnetwork.org"; 35 36 $wgRightsPage = "Copyright"; # Set to the title of a wiki page that describes your license/copyright 37 $wgRightsUrl = "http://creativecommons.org/licenses/by-sa/2.0/uk/"; 38 $wgRightsText = "Creative Commons Attribution-Share Alike 2.0 UK: England & Wales"; 39 $wgRightsIcon = "/images/cc-by-sa.png"; 20 40 }}} 21 41