ID:               21109
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Open
+Status:           Feedback
 Bug Type:         FTP related
 Operating System: linux debian
 PHP Version:      4.2.3
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php4-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-latest.zip


Previous Comments:
------------------------------------------------------------------------

[2002-12-20 05:33:55] [EMAIL PROTECTED]

$this->_connection = ftp_connect($host);
if (!$this->_connection) {
        trigger_error('FTP Connection to '.$host.'
failed.',E_USER_ERROR);
}
$this->_login = ftp_login($this->_connection,$user,$pass);
if (!$this->_login) {
        trigger_error('FTP Login to '.$user.'@'.$host.'
failed.',E_USER_ERROR);
}
$this->_passive = ftp_pasv($this->_connection,$passive);
$this->_systype = ftp_systype($this->_connection);

- this is the code for my connect function inside a ftp class, and it
should be valid according to documentation provided, and i really cant
complain

i have everything routed trough error handlers, but every once in a
while i get a scripting error (ughm, i dont know if that is the correct
term) which basially halts the script and doesnt go trough error
handlers

the error message displayed is:

"connect: Connection timed out"

this could/should be changed to E_WARNING or E_NOTICE from this
critical error kinda thing.

------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=21109&edit=1

Reply via email to