How do I check which version of Perl is Apache2 using? I have a few versions of Perl installed and I want to make sure.
|
feedback
|
|
perldoc perlvar $^V contains the version. perl -le 'print $^V' | |||||||
feedback
|
|
Shouldn't this depend on what your actual scripts have for the shebang line? perl -V I believe would report what perl version the 'perl' command is set up for, but it depends on which one you specify in your scripts. Are you using mod_perl? .cgi files? How exactly are you using the perl files in Apache? | |||
|
feedback
|
|
There should be an entry in the For example, our server returns
(This may require mod_perl, I'm not certain.) | |||
|
feedback
|