Okay, I installed mod_perl, Apache::ASP and required modules like
Apache::Filter, and Apache::SSI. (Note, some of the Apache:: modules will
not isntall via CPAN.pm, they look for HTTP in some messed up directory
where it oviously doesn't exist, you have to run make install manually or
force the install through cpan which I have NO IDEA how to do).
Anhow, Apache::ASP works fine, mod_perl works fine, no complaints from
anyone. However, Apache::SSI will not run on top of Apache::ASP.
Here is my statement:
<Files ~ (\.phtml)>
SetHandler perl-script
PerlHandler Apache::ASP Apache::SSI
PerlSetVar NoCache 1
PerlSetVar Global /tmp/
PerlSetVar Filter On
PerlSetVar Dynamic Includes 0
PerlSetVar StateDB DB_File
PerlSetVar GlobalPackage main
PerlSetVar Debug
PerlSetVar UseStrict 1
<Files>
And in error_log I get the message
[date..] [err]r Can't locate object method "filter_input" via package
"Apache" at /usr/lib/perl5/site_perl/Apache/SSI.pm line 28
I just installed all the modules off CPAN yesterday.
I have a distinct feeling that mod_perl is not configured
properly. I let CPAN do the installation and I put
AddModule mod_perl.c
in my httpd.conf.
Is there anything else to do?
PS I am running apache 1.3.9
PPS I am downloading 1.3.11
Eric