in reply to Missing Modules
Hi jjeff007,
Try running this from the browser and from the command line, maybe it will give you a clue:
#!/usr/bin/env perl use warnings; use strict; use Config; use CGI qw/header/; print header('text/plain'); print "Perl $] at $^X, perlpath is $Config{perlpath}\n", "EUID/EGID: $>/$)\n", "\@INC:\n"; print +((-r)?'':'NOT READABLE: ')."\"$_\"\n" for @INC;
Just remember to delete it from your webserver after you test; it may reveal information to an attacker.
Hope this helps,
-- Hauke D
|
|---|