mal ein switch-scripts "Old" ->"New" und reverse basteln
fast-cgi ev. Reicht der Speicher nun dicke aus ?
Follow the basic apache installation for your operating system as described in other parts of the MoinMoin installation documentation.
In places where the documentation refers to
moin.cgi you use
moin.fcg instead.
Be sure that .fcg is handled by the FastCGI module (
AddHandler fastcgi-script .fcg in your apache config).
Add a safe fallback
Install and test MoinMoin according to HelpOnInstalling/ApacheOnLinux. Then make and test the changes to run mod_fastcgi. If you are satisfied, you can add the following block to your apache config:
<IfModule !mod_fastcgi.c>
ScriptAlias /mywiki "/your/path/to/moin.cgi"
</IfModule>
<IfModule mod_fastcgi.c>
AddHandler fastcgi-script .fcg
ScriptAlias /mywiki "/your/path/to/moin.fcg"
</IfModule>
Anpassungen
Uwe W. hat Druck gemacht ich beuge mich
navi_bar = [
# Will use page_front_page, (default FrontPage)
u'MobBing',
u'RecentChanges',
u'FindPage',
u'HelpContents',
]
Scripts
#!/usr/bin/python """ vergleicht2 Verzeichnisse und gibt die aus, die in beiden vorhanden sind """ import filecmp, sys base="." left = base + "/data/pages" right = base + "/underlay/pages" d=filecmp.dircmp(left,right) print d.report() print d.common_dirs
http://moinmoin.wikiwikiweb.de/MoinMoinExtensions/PagesDirCleaner
http://moinmoin.wikiwikiweb.de/ScriptMarket/WikiCreationScript
Erweiterungen
wichtig ist natürlich das LESEN der README`s
Spam ist wohl nun kein Thema mehr
Spam an
Spam aus
http://www.onlamp.com/pub/a/python/2000/11/29/pythonnews.html
http://ovh.dl.sourceforge.net/sourceforge/moin/moin-1.3.1.tar.gz
Tags: python | wiki | moinmoin
Linux/MoinMoin/MyNotes (last modified 2008-11-04 07:00:14)