[prev in list] [next in list] [prev in thread] [next in thread] 

List:       php-windows
Subject:    RE: [PHP-WIN] ftp_connect() failed
From:       "Mike Matz" <mmatz () 2advanced ! com>
Date:       2006-12-13 23:13:22
Message-ID: E3246F06C06F1949B569B84C48AA9C7A01D7A339 () butters ! 2advanced ! com
[Download RAW message or body]

Could it be the FTP server throttling repeated connects from the same
IP?  Have you tried on different FTP server software? 

-----Original Message-----
From: Alek Silverstone [mailto:alek.silverstone@gmail.com] 
Sent: Friday, December 08, 2006 8:01 AM
To: php-windows@lists.php.net
Subject: [PHP-WIN] ftp_connect() failed

<?php
  set_time_limit(0);
  $i=1;

  while (TRUE)
  {
    $date=date('H:i:s');
    $ftp=ftp_connect('127.0.0.1',21,10);
    if ($ftp) $login=ftp_login($ftp,'anonymous',$i);
    if ($ftp && $login)
    {
      if (($i % 100) === 0) echo "[$date] $i - online.\n";
    } else {
      echo "[$date] $i - offline.\n";
      break;
    }
    if ($ftp!==FALSE) ftp_close($ftp);
    $i++;
  }
?>

This script failed after 100-10000 loops.
Tested on various servers and OSes.

What's wrong?

--
PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit:
http://www.php.net/unsub.php

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic