Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

RE: RE: Re: Alternative to NET::FTP

by gnat (Beadle)
on Jun 20, 2000 at 02:24 UTC ( [id://18894]=note: print w/replies, xml ) Need Help??


in reply to RE: Re: Alternative to NET::FTP
in thread Alternative to NET::FTP

Using a module that's not installed in the normal places Perl looks always takes an extra step:
use lib '/your/module/directory';
After you do that, Perl will look in that directory for any subsequent modules you load. You still have to load Net::FTP:
use Net::FTP; # after the earlier use statement
So you need both those steps (point Perl at the right place, then load the module). You can't compress it into one, as you're trying to do.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://18894]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 23:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found