From:             zulcss at ubuntu dot com
Operating system: Ubuntu
PHP version:      5.2.5
PHP Bug Type:     CGI related
Bug description:  connection_abort() always returns 0

Description:
------------
When using php in fastcgi mode, it does not detect any user abort.
connection_status() always return 0, even after user aborts connection.

Reproduce code:
---------------
<?
ignore_user_abort(true);

echo "hello";
flush();
sleep(10);
echo "bye"

$fp=fopen('/tmp/conection_log.txt','a');
fputs($fp,'Connection status is: '.connection_status()."\n");
fclose($fp);
?>

Expected result:
----------------
Return 0

Actual result:
--------------
Not return 0.

-- 
Edit bug report at http://bugs.php.net/?id=44186&edit=1
-- 
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=44186&r=trysnapshot52
Try a CVS snapshot (PHP 5.3): 
http://bugs.php.net/fix.php?id=44186&r=trysnapshot53
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=44186&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=44186&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=44186&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=44186&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=44186&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=44186&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=44186&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=44186&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=44186&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=44186&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=44186&r=globals
PHP 4 support discontinued:   http://bugs.php.net/fix.php?id=44186&r=php4
Daylight Savings:             http://bugs.php.net/fix.php?id=44186&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=44186&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=44186&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=44186&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=44186&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=44186&r=mysqlcfg

Reply via email to