Tim Ware schrieb:
Where can I set the editing permissions? I want only registered users to be able to edit anything in the wiki. Thanks.
Have a look at include/Defaultsetting.php http://www.mediawiki.org/wiki/Defaultsettings.php, specially $wgGroupPermissions http://www.mediawiki.org/wiki/Manual:%24wgGroupPermissions. Copy it in your localsetting.php
At the end you'll have something like this:
$wgGroupPermissions ['*'] ['edit'] = false; $wgGroupPermissions ['user'] ['edit'] = true;
Swen