[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] PERL modules (WAS: (no subject))



on 9/5/00 2:20 AM, Glen Scott at glen@xxxxxxxxxxxxxxxxxxxx wrote:

> Hi there,
> 
> I am new to the Cobalt world so excuse me if these questions seem simple.

Welcome to the list.  First and foremost, please make a concerted effort to
use a subject line that accurately reflects the content of the message.  If
it pertains to a specfic platform place [RAQ3] or similar before the
content.

i.e.
Subject: [RAQ3] Perl Modules

Now, on to the solution.

> I have a perl script on our server that requires various modules.  I have
> copied them to the server and placed them in the correct directories e.g.
> 
> use Business::CreditCard;
> use HTTP::Request::Common qw(POST);
> use LWP::UserAgent;
> 
> myscript.pl
> Business/CreditCard.pm
> HTTP/Request/Common.pm
> 
> etc
> 
> However, I am getting the following software error when I try to access the
> script;
> 
> Can't locate loadable object for module HTML::Parser in @INC .....
> 
> Any idea what`s going on here?  HTML/Parser.pm is present.

This is a stab in the dark, but I am going to give it a shot.  Did you use
the 
perl ./Configure
make
make install

Method to install the modules?  It sounds like you may have hand-copied the
module binaries--perhaps they ended up in the wrong path or something.

-k