Hi guys,
I am doing this, nothing really special.
use Net::FTP::Common;
$common_cfg = { Host => "localhost",
User => "eric",
Pass => "Test123456",
RemoteDir => "/"
} ;
$es = Net::FTP::Common->new($common_cfg, Debug => 0);
$es->login or die print "FTP Logon Failure\n";
$es->send(LocalFile => "test.txt");
$es->quit;
I got this message back :
Not a GLOB reference at C:/Perl/lib/Net/FTP.pm line 1103.
The script still works, but it is very annoying to have this message
back. I wonder how I can I get rid of it.
Thanks!