perl - Howto find out the version of mod_perl? -
in order debug perl code need find out mod_perl version.
how can find out version of mod_perl?
try:
perl -mmod_perl\ 999
if doesn't work, try:
perl -mmod_perl2\ 999
the first checks mod_perl, version 999. since doesn't exist, output actual version have installed or error saying can't found in @inc. second same thing, mod_perl2.
example output me:
> perl -mmod_perl2\ 999
mod_perl2 version 999 required--this version 2.000005. begin failed--compilation aborted.
Comments
Post a Comment