> Hi guys,
Hi Eric!
> >
>
> 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);
Can you do
Debug => 1
instead of Debug => 0 and post the debug output? In other words:
$es = Net::FTP::Common->new($common_cfg, Debug => 0);
$es = Net::FTP::Common->new($common_cfg, Debug => 1);
> $es->login or die print "FTP Logon Failure\n";
You never have to login before calling the Net::FTP::Common API
functions... it automatically does that.
> $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.
Yes, that would be annoying.
> >
> Thanks!
I hope to have this solved soon!
--
Carter's Compass: I know I'm on the right track when,
by deleting something, I'm adding functionality.
Message-ID: <6mwton3hph.fsf@...>