ID:               39803
 Updated by:       [EMAIL PROTECTED]
 Reported By:      marcelo at tpn dot com dot br
-Status:           Open
+Status:           Feedback
 Bug Type:         Sockets related
 Operating System: FreeBSD 5.3
 PHP Version:      4.4.4
 New Comment:

So you're saying this problem exist in PHP 5.2.3 also?
If so, please set the version in this report to "5.2.3, 4.4.7" 


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

[2007-05-03 18:29:51] marcelo at tpn dot com dot br

This is a PHP problem.

I have both CGI and Apache Module.

fsockopen() works on CGI mode, but doesn't in Apache Module.

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

[2007-04-05 19:59:08] [EMAIL PROTECTED]

>The system is always returning EINPROGRESS.
Why is that PHP problem?
Fix your system instead.

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

[2007-04-05 13:39:29] marcelo at tpn dot com dot br

An user could fix this problem in PHP 5 adding 3 lines of code in
main/network.c.

   if (!asynchronous) {
      /* back to blocking mode */
      RESTORE_SOCKET_BLOCKING_MODE(sockfd, orig_flags);
   }
/* Start changes */
   if (error == EINPROGRESS) {
       error = 0;
   }
/* End changes */
   if (error_code) {
      *error_code = error;
   }
   if (error && error_string) {
     *error_string = php_socket_strerror(error, NULL, 0);
     ret = -1;
   }
   return ret;

I try to modify PHP 4 but the code is a bit different. Can you help me
to fix this problem?

The system is always returning EINPROGRESS.

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

[2006-12-18 17:11:42] [EMAIL PROTECTED]

I really doubt I can reproduce or investigate it with only an FTP
account. When I said "account on this machine" I meant SSH access.

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

[2006-12-13 14:30:38] marcelo at tpn dot com dot br

Sent to [EMAIL PROTECTED]

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

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/39803

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

Reply via email to