I inherited an FTP program which uses the Net::FTP package.
I was running the program on perl version 5.003 with no
problems. When my company upgraded to perl v5.6.1, the program fails on login to the host machine.
$ftp = new Net::FTP($host, Debug => $debug, Timeout => $timeout, Firew
+all => $firewall);
unless ($ftp) {
#not important
}
else {
print("Connected to $host...\n");
if ( $ftp->login( $acct, $pwd ) {
print("Logged in...\n");
}
else {
if ( ${*$ftp}{'net_cmd_code'} >= 300 ) {
die("Bad account and/or password.\n");
}
}
}
i tried to windiff the versions of the Net::FTP
between 5.003 and 5.6.1, but the differences are too
many. I also tried to search for 'net_cmd_code'
in both versions of FTP.pm except this did not help at all. Does someone know the difference between the
versions that would cause this problem. btw, i'm running
this code on winNT4 SP6.
thanks,
michael
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.