Here's my code:
use Net::FTP; my $hostname="hostname"; my $user="user"; my $password="pass"; $ftp=Net::FTP -> new("$hostname",Debug=>1) or die ("Connect failed"); $ftp->login("$user","$password"); $ftp->binary; $ftp->put("filename.ext")
Here's the output:
Net::FTP: Net::FTP(2.62) Net::FTP: Exporter Net::FTP: Net::Cmd(2.20) Net::FTP: IO::Socket::INET Net::FTP: IO::Socket(1.1603) Net::FTP: IO::Handle(1.1505) Net::FTP=GLOB(0x81b3320)<<< 220 Server ready. Net::FTP=GLOB(0x81b3320)>>> user user Net::FTP=GLOB(0x81b3320)<<< 331 Password required for user. Net::FTP=GLOB(0x81b3320)>>> PASS .... Net::FTP=GLOB(0x81b3320)<<< 230 User user logged in. Net::FTP=GLOB(0x81b3320)>>> TYPE I Net::FTP=GLOB(0x81b3320)<<< 200 Type set to I. Net::FTP=GLOB(0x81b3320)>>> PORT 10,1,4,49,219,108 Net::FTP: Unexpected EOF on command channel at script.cgi line 37
What does the EOF mean here? It also occurs for $ftp->ls(). How can I fix this?

In reply to Net::FTP Unexpected EOF by SiN8

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.