CGI to check available versions and Perl modules

I am going to write a Perl CGI script that needs to be deployed on a host that does not allow shell access. You interact with them through your web interface, where you can upload files to a web server, including Perl CGI.

Before starting, I would like to check which version of Perl is installed and if some CPAN modules are available. I could write my own "probe.cgi" to do this, but maybe someone already made such a tool.

Is there a CGI that works with the possibly really old versions of Perl that you can simply access on any web server and that reports on the capabilities of your hosting provider?

+4
source share
1 answer

list of installed modulesApp :: Module :: Lister This is a program for listing all the Perl modules that it finds in @INC for a hosting account without a shell

+7
source

Source: https://habr.com/ru/post/1433504/


All Articles