Additional Perl modules are installed on the server (aside from the standard libraries) run from a web broswer.
1 2 3 4 5 6 7 8 9 10 11 12 | <!--#include virtual="/directory/included.html" -->
# script to find installed modules
#!/var/www/cgi-bin/perl/bin:perl.exe
use ExtUtils::Installed;
# set the http header as html
print "Content-type: text/html\n\n";
my $inst = ExtUtils::Installed->new();
my @modules = $inst->modules();
print join "<br>", @modules;
|