Ah, the fun of different wiki applications: Mediawiki: too hot1; MoinMoin: too cold2; Dokuwiki: Just right 3
You can get Dokuwiki from dokuwiki.orgDokuwiki
22nd Jan 2009
Ah, the fun of different wiki applications: Mediawiki: too hot1; MoinMoin: too cold2; Dokuwiki: Just right 3
You can get Dokuwiki from dokuwiki.orgThis is time consuming and I ultimately didn’t use the thing in the end. Not enough guidance.
MoinMoin was supposedly an easy wiki to use. It is, sort of. This is how I set it up in the end. It’s based around the FTP install instructions, however I used my SSH access to do most of it.
Just for reference the folder structure was:
[wiki.site.com] | +- [HTML[ | +- [cgi-bin]
AddHandler cgi-script .cgi Options +ExecCGI
[wiki.site.com] | +- [HTML] | +- [cgi-bin] | +- [data] | +- [underlay] | +- [MoinMoin]
[wiki.site.com] | +- [HTML] | | | +-[moin_static181] | +- [cgi-bin] | +- [data] | +- [underlay] | +- [MoinMoin]
[wiki.site.com] | +- [HTML] | | | +-[moin_static181] | +- [cgi-bin] | +- [data] | +- [underlay] | +- [MoinMoin] | +- [config]
Three things need changing:
#!/usr/bin/env python to #!/usr/bin/python# sys.path.insert(0, 'PREFIX/lib/pythonX.X/site-packages') and change it to # sys.path.insert(0, '../')sys.path.insert(0, '/path/to/wikiconfig') and change to sys.path.insert(0, '../config')Two things to change:
data_dir = '../data/'data_underlay_dir = '../underlay/'You will now have a functioning MoinMoin wiki.
Playing around though I wasn’t impressed though, too much still needed to be done.