Please note: This documentation is from memory, and needs to be tested. - StevenPritchard
Setting up Kwiki is fairly trivial.
1. Install the main Kwiki package with yum install perl-Kwiki
(or you can install Kwiki and all of the plugins currently packaged with yum install perl-Kwiki\*
).
1. Create a directory for the new Kwiki root (mkdir /var/www/kwiki
).
1. Run kwiki -new /var/www/kwiki
and kwiki -update /var/www/kwiki
to initialize the Kwiki root.
1. Point httpd at the new Kwiki root. If you yum install perl-Kwiki-ModPerl
, something like this (in /etc/httpd/conf.d/kwiki.conf
, for example) will work:
Alias /kwiki /var/www/kwiki
<Directory "/var/www/kwiki">
Order allow,deny
Allow from all
AllowOverride None
Options None
DirectoryIndex index.cgi
SetHandler perl-script
PerlSetVar KwikiBaseDir /var/www/kwiki
PerlHandler +Kwiki::ModPerl
</Directory>
More information can be found on the Kwiki web site .