Open main menu

MINE Wiki β

Changes

MediaWiki

191 bytes added, 15:17, 26 February 2018
Why i should run my own MediaWiki
* If you follow this step by step instruction, it will take you 10-15min to have your own MediaWiki up and running
== Why i should run my own MediaWiki ==
* You are independent
* You can add plugins and extensions that you need and want
* You decide where the data is stored
* You can adapt it to your needs
 
== Used tools ==
* Webbrowser
== Change the default editor ==
# By default, the mediawiki comes with a very puristic editor. To enable the little more modern one, add this to your LocalSettings.php:<br>
<br>{| class="wikitable"|-| wfLoadExtension( 'WikiEditor' );<br>$wgDefaultUserOptions['usebetatoolbar'] = 1;<br>|} 
== Mobile Frontend ==
Mediawiki has a great frontend for mobile devices, which is NOT in the default setup. To make a better mobile frontend working, follow this steps:<br>
{| class="wikitable"
|-
| wfLoadExtension( 'MobileFrontend' );<br>$wgMFAutodetectMobileView = true;<br>wfLoadSkin( 'MinervaNeue' );<br>
$wgMFDefaultSkinClass = 'SkinMinerva'; // use Minerva skin
|}