ID: 39803 User updated by: marcelo at tpn dot com dot br Reported By: marcelo at tpn dot com dot br -Status: No Feedback +Status: Open Bug Type: Sockets related -Operating System: FreeBSD 5.3 +Operating System: FreeBSD 6.2 -PHP Version: 4.4.4 +PHP Version: 4.4.9 New Comment:
Now fsockopen crashes apache, but only when PHP is in apache module mode. Previous Comments: ------------------------------------------------------------------------ [2007-07-19 01:00:03] php-bugs at lists dot php dot net No feedback was provided for this bug for over a week, so it is being suspended automatically. If you are able to provide the information that was originally requested, please do so and change the status of the bug back to "Open". ------------------------------------------------------------------------ [2007-07-11 12:40:39] j...@php.net 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" ------------------------------------------------------------------------ [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] tony2...@php.net >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. ------------------------------------------------------------------------ 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