I had been wondering how to solve an FTP problem and came up with this Perl module as a possible solution. But I can't seem to log in to FQ using it.
When I try this:
$ftp = Net::FTP->new($ftp_host);
$success = $ftp->login($username,$password,$account);
with $ftp_host =
www.mydomain.com or ftp.mydomain.com and $account = 'xdomain' it returns false with an error message of 'login incorrect' (from $ftp->message). Likewise, leaving off $account it fails. I haven't used this module before, so if someone could tell me what foolish thing I'm doing I'd appreciate it.
Thanks.