822eb3e021
A Wiki is a website that allows its users to add pages, and edit any existing pages. You can create a new kwiki website with a single command. The module has no prerequisite modules, except the ones that ship with Perl. It doesn't require a database backend, although it could be made to use one. The default kwiki behaviour is fairly full featured, and includes support for html tables. Any behaviour of the kwiki can be customized, without much trouble.
22 lines
741 B
Text
22 lines
741 B
Text
===========================================================================
|
|
$NetBSD: MESSAGE,v 1.1.1.1 2004/05/13 09:22:30 mjl Exp $
|
|
|
|
To actually install Kwiki, make a directory in your web server's
|
|
document root and run "kwiki-install". This will set up all necessary
|
|
files.
|
|
|
|
You may need to adjust your web server's configuration a bit
|
|
to run cgi scripts from that directory, adapt the following sample
|
|
config snippet to taste:
|
|
|
|
Alias /kwiki/ /home/www/htdocs/kwiki/
|
|
<Directory /home/www/htdocs/kwiki/>
|
|
Order allow,deny
|
|
Allow from all
|
|
AllowOverride None
|
|
Options ExecCGI
|
|
AddHandler cgi-script .cgi
|
|
DirectoryIndex index.cgi
|
|
</Directory>
|
|
|
|
===========================================================================
|