Al Hospers wrote:
: ... HOWEVER, I cannot get my
: script to find the modules.
: 
: here's the initial part of the code. according to the error message it fails
: on line 4 where it cannot find the Net::FTP module.
: 
:  #!/usr/local/bin/perl
:  use CGI qw(:all);
:  use lib "/libnet/Net";
:  use Net::FTP;
:  print header;

The path to the modules needs to be a filesystem path, not a URL path.
Try

use line "./libnet";

-- tdk

Reply via email to