Basic configuration

Just edit the wikiconfig.py file. You can use the options listed on the page HelpOnConfiguration.

Here is a sample:

   1 from MoinMoin.multiconfig import DefaultConfig
   2 
   3 class Config(DefaultConfig):
   4     sitename = "My local notebook"
   5     logo_string = u'<img src= "/wiki/mylogo.png"> My local notebook-Wiki'
   6     acl_rights_default = u"All:read,write,delete"

Note that the last line is needed if you want to disable administrator access for all users. This is very important if you are using your wiki on the Internet.

Note that you need admin rights to install help pages in your language. So, install them before you use the acl_rights_default above.