I'm using mod_perl with 5.8. I had to re-install apache asp, but it worked after that.Originally posted by UpsideOut
I'd like to downgrade so that I can use mod_perl 1.26. Also I've had success with perl 5.6.1 on my other servers. I guess the alternative would be to get a newer version of mod_perl installed but I've relied on apache asp to install mod_perl for me in the past.
Originally posted by casey
I'm using mod_perl with 5.8. I had to re-install apache asp, but it worked after that.
Did you remember to put the code back in httpd.conf?Originally posted by UpsideOut
Hmm. I've reinstalled apache asp and it installs mod_perl as expected. However even a simple hello world script will die without error under Apache::Registry or Apache::PerlRun.
<Files ~ (\.asp)>
SetHandler perl-script
PerlModule Apache::ASP
PerlHandler Apache::ASP
PerlSetVar Global .
PerlSetVar StateDir /tmp/asp
</Files>
<html>
<body>
For loop incrementing font size: <p>
<% for(1..5) { %>
<!-- iterated html text -->
<font size="<%=$_%>" > Size = <%=$_%> </font> <br>
<% } %>
</body>
</html>
wget [url]http://search.cpan.org/CPAN/authors/id/G/GO/GOZER/mod_perl-1.29.tar.gz[/url]
tar xvzf mod_perl-1.29.tar.gz
rm mod_perl-1.29.tar.gz
cd mod_perl-1.29
perl Makefile.PL USE_APXS=1 PERL_USELARGEFILES=0 WITH_APXS=/usr/local/apache/bin/apxs EVERYTHING=1
make
make install