Posted on 2008-07-22 06:54:40-07 by viraj in response to 6729
Re: Error parsing 227-line on PASV command
Yes I got the same error and get through buy just ignoring the 227 server messages. Basically the module is looking for a 230 message with the passive command to run in on client server. My Hack is,

if ($msg =~ /(230)/i)
{
  while($msg !~ /(227)/i)
  {
    $msg = $self-<getline();
  }
}

If anyone found a better solution than this. Please let us know.
Direct Responses: Write a response
Perl Weekly newsletter
A free weekly newsletter for people who are busy to read all the blogs. click here to check it out.