in reply to locally installed modules not interfacing

Is the listing you provided for the local HTTP subdirectory:
/path/to/the/cgi/bin/cgi-bin/usr/local/lib/perl5/site_perl/HTTP> ls -l -r--r--r-- 1 mhalunen user 19433 Dec 8 2004 Message.pm -r--r--r-- 1 mhalunen user 5030 Apr 7 2004 Request.pm -r--r--r-- 1 mhalunen user 11827 Dec 11 2004 Response.pm
a complete one? The HTTP::* modules provided by libwww-perl indicates that there's more; in particular, HTTP::Headers is present, which is required by HTTP::Message, but is missing in your listing above - is it available elsewhere?. HTTP::Message also may require other modules, such as URI, HTTP::Headers::Util, Compress::Zlib, and others, depending on the context - are these available within the set of directories specified in your use lib statement?

Replies are listed 'Best First'.
Re^2: locally installed modules not interfacing
by mike hal (Initiate) on Sep 23, 2005 at 12:55 UTC
    Hi randyk, I abbreviated the listing. Here's the full file list:
    drwxr-xr-x 2 mhalunen user 4096 Sep 20 17:56 Cookies -rwxrwxrwx 1 mhalunen user 20549 Nov 12 2004 Cookies.pm -rwxrwxrwx 1 mhalunen user 22179 Dec 11 2004 Daemon.pm -rwxrwxrwx 1 mhalunen user 10744 Oct 23 2003 Date.pm -rw-rw-r-- 1 mhalunen user 0 Sep 23 08:48 docs.txt drwxr-xr-x 2 mhalunen user 4096 Sep 20 17:56 Headers -rwxrwxrwx 1 mhalunen user 21243 Nov 12 2004 Headers.pm -rwxrwxrwx 1 mhalunen user 19433 Sep 22 16:35 Message.pm -rwxrwxrwx 1 mhalunen user 16242 Apr 9 2004 Negotiate.pm -rw-rw-r-- 1 mhalunen user 78 Sep 22 12:31 pwd.txt drwxr-xr-x 2 mhalunen user 4096 Sep 20 17:56 Request -rwxrwxrwx 1 mhalunen user 5030 Apr 7 2004 Request.pm -rwxrwxrwx 1 mhalunen user 11827 Sep 22 16:35 Response.pm -rwxrwxrwx 1 mhalunen user 6653 Oct 23 2003 Status.pm
    Normally the file permissions are '-r--r--r--'. I changed them for testing.