2005-04-06 10:25:42 +02:00
|
|
|
/* ================================================================= */
|
|
|
|
Note:
|
|
|
|
Kwiki-ModPerl plugin installed! Now you should modify
|
2005-06-29 14:12:29 +02:00
|
|
|
your Apache configuration:
|
2005-04-06 10:25:42 +02:00
|
|
|
|
2005-06-29 14:12:29 +02:00
|
|
|
<Location /kwiki>
|
|
|
|
SetHandler perl-script
|
|
|
|
PerlSetVar KwikiBaseDir /path/to/webroot/kwiki
|
|
|
|
PerlHandler +Kwiki::ModPerl
|
|
|
|
</Location>
|
2005-04-06 10:25:42 +02:00
|
|
|
|
2005-06-29 14:12:29 +02:00
|
|
|
If you have a custom lib directory for your Kwiki:
|
2005-04-06 10:25:42 +02:00
|
|
|
|
2005-06-29 14:12:29 +02:00
|
|
|
<Perl>
|
|
|
|
use lib '/path/to/webroot/kwiki/lib';
|
|
|
|
</Perl>
|
2005-04-06 10:25:42 +02:00
|
|
|
|
2005-06-29 14:12:29 +02:00
|
|
|
If you're using mod_perl2, please ensure that the following
|
|
|
|
modules are referenced by either your httpd.conf or a file
|
|
|
|
referenced by a PerlRequire directive:
|
2005-04-06 10:25:42 +02:00
|
|
|
|
2005-06-29 14:12:29 +02:00
|
|
|
Apache2::URI
|
|
|
|
Apache2::SubRequest
|
|
|
|
Apache2::ServerUtil
|
|
|
|
Apache2::Response
|
|
|
|
Apache2::RequestUtil
|
|
|
|
Apache2::RequestIO
|
|
|
|
Apache2::Request
|
|
|
|
Apache2::Log
|
|
|
|
Apache2::Access
|
|
|
|
Apache2::Const
|
|
|
|
APR::Table
|
|
|
|
|
|
|
|
Most mod_perl 2 applications require these modules at a minimum, so you
|
|
|
|
may have them listed already.
|
2005-04-06 10:25:42 +02:00
|
|
|
|
|
|
|
/* ================================================================= */
|