From Fedora Project Wiki
< Perl
Please note: This documentation is from memory, and needs to be tested. - StevenPritchard
Setting up Kwiki is fairly trivial.
- Install the main Kwiki package with
yum install perl-Kwiki
(or you can install Kwiki and all of the plugins currently packaged withyum install perl-Kwiki\*
). - Create a directory for the new Kwiki root (
mkdir /var/www/kwiki
). - Run
kwiki -new /var/www/kwiki
andkwiki -update /var/www/kwiki
to initialize the Kwiki root. - 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 .