Based on your @INC, one thing that may be worth checking is
the following.
HTTP::Request requires
HTTP::Message, which in turn potentially requires a number of other modules (one can use
scandeps.pl to see which ones). The pure Perl modules
such as
HTTP::Headers are presumably available under
/the/full/dir/path/8080/cgi-bin/usr/local/lib/perl5/site_perl,
if not under the system
/usr/lib/perl5/ tree,
but there's some XS-based modules, such as
MIME::Base64 or
Compress::Zlib, that may also be needed.
Such modules normally get installed into
an architecture-specific subdirectory, such as
i386-linux-thread-multi. The
lib module will add such architecture-specific
directories to @INC for you, but they don't seem
to be present in your
/the/full/dir/path/8080/cgi-bin/usr/local/lib/perl5/site_perl
tree. If modules such as MIME::Base64 and
Compress::Zlib are not available under the system
/usr/lib/perl5/ tree, are they present in your
/the/full/dir/path/8080/cgi-bin/usr/local/lib/perl5/site_perl
tree? If so,
are they in such an architecture-specific directory?
If they are available, but in a non-standard location,
you may have to add such directories to your
use lib statement.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.