The following 426 words could not be found in the dictionary of 615 words (including 615 LocalSpellingWords) and are highlighted below:

16x16   above   absolute   absolutely   action   actions   add   Add   Adding   address   Admin   Alias   alias   all   Allow   allow   although   always   an   and   another   Apache   apache   Apache2   apache2   application   apply   around   Asked   at   automatically   avoid   bad   base   be   because   before   besides   bin   bookmarks   bottom   brackets   browsers   browsing   bugs   but   button   by   Cache   caching   can   cannot   Centralized   certain   changes   Changes   checkboxes   clean   clicks   Command   command   commentary   commonapache2   commonly   Compatibility   conf   config   configuration   Configuration   configured   contain   Contents   converted   counter   current   datadir   de   Delete   deny   derefer   dereferer   describe   detail   detected   dict   different   direct   directories   display   displayed   document   Document   documents   does   doing   domain   done   double   due   dump   each   earlier   edit   editor   emoticons   Engine   environments   especially   etc   event   every   exact   example   Exec   Experimental   explain   explanation   explicitly   external   fancy   Farm   farmconfig   farms   favicon   features   Features   field   fields   file   files   folder   following   for   form   Frequently   from   Front   generated   Gentoo   get   global   globaledit   google   handling   he   head   header   help   Help   her   Highlighting   his   home   hopefully   Host   host   hosted   hosting   how   href   htdocs   httpd   ico   icon   icons   if   If   image   images   in   include   included   inline   installation   instance   Instructions   intermap   interwiki   into   intra   intranet   intranets   jump   Just   just   keep   key   known   language   large   last   lib   like   limited   line   link   links   Linux   little   Load   local   logging   lookup   Lost   Ls   macro   macros   mail   Mail   Make   map   mappings   maybe   me   means   might   mod   modification   Module   module   more   most   move   Mozilla   must   My   my   mywiki   name   Name   namespace   need   needed   Needing   needs   new   no   normal   Note   notice   noticed   notification   notifications   now   of   Of   On   on   one   ones   Only   only   optimize   option   options   or   Order   Other   other   otherwise   outside   own   page   Page   pages   pagescleaner   password   Password   path   pathname   pathto   Perhaps   Permanent   permissions   placeholder   Please   plugin   points   Preferences   prefix   prefixes   privileges   Processing   processing   Protected   put   putting   Questions   reason   recent   Recent   record   Redirect   redirect   refer   referrer   rel   relative   remap   remapped   Remapping   Remove   replaced   replacement   require   results   rewrite   Rewrite   robots   root   Root   Rule   rules   run   sax   saxutils   scale   script   Script   search   secret   sections   Securing   See   see   Self   sent   Server   Serving   settings   setup   several   share   shared   short   shortcut   should   show   shown   shows   simply   single   site   size   so   some   spamming   special   Special   specific   spellchecking   static   still   store   stored   stuff   subscribed   Subtopics   Support   support   sure   tabbed   table   Table   template   templates   test   that   The   the   their   then   There   things   this   This   those   to   To   tool   tools   topics   totally   trail   trailing   trails   transfered   trees   tricks   type   unlikely   unused   use   used   useful   User   user   users   using   usr   value   var   variable   versions   vhosts   via   Virtual   virtual   visited   want   way   well   when   where   whitespace   whole   wikiconfig   wikipages   with   words   work   would   yes   You   you   your  

Clear message

Other MoinMoin help topics

Subtopics

Contents

Lost password for a user

If you have mail configured for your moin (see HelpOnConfiguration) then users can have their password sent to the email address in their current record. If SMTP is not configured, then the "Mail me my password" button is not shown on UserPreferences, and subscribed pages cannot be sent to users.

Adding an icon to your wiki setup

You maybe want to add some icon to your wiki site, commonly known as favicon.ico. To get those little icons besides bookmarks and with tabbed browsing, add this to your wikiconfig.py:

html_head = '''
<link rel="shortcut icon" href="/wiki/favicon.ico">
<!-- ... more header stuff ... -->
'''

The image size must be 16x16 and simply putting it as /favicon.ico (into your DocumentRoot) does not work with all browsers (e.g. does not work with Mozilla versions 1.0 - 1.3).

Apache tricks

Securing access to a wiki via Apache means

See PasswordProtectedEditing

Serving the wiki from a domain root

httpd.conf modification for MoinMoin installation at "/":

# global section:
LoadModule rewrite_module /usr/lib/apache/1.3/mod_rewrite.so
# virtualhost section:
RewriteEngine on
RewriteRule ^/wiki/       -                      [last]
RewriteRule ^/robots.txt  -                      [last]
RewriteRule ^/favicon.ico -                      [last]
RewriteRule ^/?(.*) /file/path/to/moin.cgi/$1  [last,type=application/x-httpd-cgi]

This way you can use short and clean URLs like http://LinuxWiki.de/FrontPage.

Note:

Redirect /mywiki/MyWiki to the user's language FrontPage

Perhaps you want to use MyWiki in your wiki to refer to your wiki. If a user clicks this link s/he should be transfered to the FrontPage, that is to the FrontPage of her/his language.

Add this to your httpd.conf before the ScriptAlias:

RedirectPermanent /mywiki/MyWiki    http://www.domain.org/mywiki?action=show

Serving the wiki from wiki.domain.com and home page from www.domain.com

Here is a configuration for virtual hosting with special permissions on Gentoo Linux. The following configuration is for Apache2 config files. Just put it all in httpd.conf for Apache 1.

Add this to /etc/apache2/conf/vhosts/vhosts.conf

NameVirtualHost *
<VirtualHost *>
   ServerName www.domain.org
   ServerAlias domain.org
   DocumentRoot /var/www/domain.org/htdocs
</VirtualHost>
 
<VirtualHost *>
   ServerName wiki.domain.org
   Alias /wiki/ "/usr/share/moin/htdocs/"
   Alias /favicon.ico "/var/www/htdocs/favicon.ico"
   ScriptAlias / "/usr/share/moin/mywiki/moin.cgi/"
</VirtualHost>

Add this to /etc/apache2/conf/commonapache2.conf

<Directory /usr/share/moin/htdocs/>
   Order deny,allow
   Allow from all
</Directory>

<Directory /usr/share/moin/domain.org/>
   Order deny,allow
   Allow from all
</Directory>

Special features for wiki farms and intranets

The following shows how certain features can help you to optimize your configuration when you run several wikis on one host, or when you use MoinMoin in intranet environments.

Centralized settings

Remapping URLs

The configuration variable "url_mappings" can be used to remap URLs, for example to change certain URL prefixes to totally different ones. This is especially useful in intranets, when whole trees of documents hosted outside of the wiki move around. It does not apply to most intra-wiki links as those are relative and are not remapped.

"url_mappings" is a lookup table in the form of a dict, the key is the prefix to be replaced, the value is the replacement.

You could also use "url_mappings" to include a dereferer-script for external links, like this:

url_mappings = {
    'http://my-wiki/': 'http://my-wiki/',
    'http://': '/cgi-bin/derefer.cgi?url=http://'
  }

The reason you might want to use this is to avoid google spamming in your wiki (although this is unlikely to be noticed and would only counter the link spamming if done large-scale) or to keep your wikipages secret. Note that your own wiki needs to be included explicitly because URLs that might be generated automatically (for example for email notifications) would otherwise be remapped to your referrer script as well.

Please notice: If you want to redirect a single page to another, just type #REDIRECT and the name of the page to direct to in the first line of your page. See HelpOnProcessingInstructions.

TODO

<!> TODO: explain the following things in detail, and add more detail to the above sections

Needing more explanation:

Admin stuff:

Command-line tools:

Compatibility:

HelpMiscellaneous (last modified 2007-01-22 09:11:30)