in reply to Problem with new failing within Net::FTP
There's a very quick and easy way to solve your problem:
Change the 'a' in the type() function to 'A'.
Net::FTP::_dataconn sets
$pkg = 'Net::FTP::' . $ftp->type; but type never gets specified as uppercase.
The script needs to look for a /<lib>/Net/FTP/A.pm rather than a /<lib>/Net/FTP/a.pm
I don't know if this has been fixed in any later versions...?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Problem with new failing within Net::FTP
by zigster (Hermit) on Feb 23, 2001 at 21:58 UTC | |
by pileswasp (Monk) on Mar 06, 2001 at 19:44 UTC |