http://qs321.pair.com?node_id=196635


in reply to ftp attempt

The docs mention:
If the constructor fails undef will be returned and an error message will be in $@
If you change your code to:
$ftp = Net::FTP->new("myserver@here.com", Debug => 1) || die "Unable to connect: $@\n";
Hopefully the error message will help.

gav^