RE: ftp_connect() failed

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxxxxx] 
Sent: Friday, December 08, 2006 8:01 AM
To: php-windows@xxxxxxxxxxxxx
Subject:  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



[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux