Vlad Alexa Mancini
Joined: 07 Jul 2003
Posts: 1538
|
| Posted: Mon Jan 23, 2006 8:11 am Post subject: mod_perl 2.0.1 bug |
|
|
there is a bug in mod_perl 2.0.1 in Apache::ASP which totaly disables it
in perl\site\lib\Apache\ASP.pm find Code: $ModPerl2 = ($ver >= 1.99); and replace it with
Code: my $ver = $mod_perl::VERSION;
if ($ver eq "") { $ver = $ENV{MOD_PERL_API_VERSION}; }
$ModPerl2 = ($ver >= 1.99);
or download the archived patched asp.pm attached here
NOTE:
do not forget to restart apache after the change |
|