
Cure
User
Jun 8, 2002, 10:03 AM
Post #4 of 5
(21385 views)
|
For windows use ppm, for unix --> I would manually compile mod_perl to enable all the mod_perl hooks installation website: http://perl.apache.org/embperl/INSTALL.pod.1.html Apache's DSO(Dynamic Shared Object) features allows you to add modules on-the-fly at startup using httpd.conf directives.... install mod_perl as a shared object library. example::: gzip -dc mod_perl-1.26.tar.gz | tar -xvf - cd mod_perl-1.26 perl Makefile.PL USE_APXS=1 WITH_APXS=/usr/local/etc/apache/bin/apxs EVERYTHING=1 make make install that's it.... EVERYTHING=1 will enable all the mod_perl hooks. This includes all the advanced features of mod_perl such as authentication and authorization control, configuration of the server with Perl, output filtering, and more... I recommend getting the mod_perl cookbook. www.modperlcookbook.org Cure
(This post was edited by Cure on Jun 8, 2002, 1:36 PM)
|