Skins

Skins

Installing
MediaWiki skins can be installed as follows:
  1. Use the File manager to upload the tarball and extract the package under /app/data/skins.
  2. Change the ownership of the newly uploaded directory to www-data
  3. Load the skin in /app/data/LocalSettings.php by adding this line:
    wfLoadSkin( '<skin-name>' );
  4. The default skin for new users can be changed by adding this line to /app/data/LocalSettings.php:
    $wgDefaultSkin = '<skin-name>';


Suppressing skins
To suppress one or more skins add the following line to /app/data/LocalSettings.php:
$wgSkipSkins = array( "cologneblue", "monobook" )