From Fedora Project Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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\* ).
  2. Create a directory for the new Kwiki root (mkdir /var/www/kwiki).
  3. Run kwiki -new /var/www/kwiki and kwiki -update /var/www/kwiki to initialize the Kwiki root.
  4. 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 .