iliaa Mon Feb 28 17:09:23 2005 EDT Modified files: /php-src php.ini-dist php.ini-recommended Log: Added notes about ignore_user_abort to php.ini* http://cvs.php.net/diff.php/php-src/php.ini-dist?r1=1.223&r2=1.224&ty=u Index: php-src/php.ini-dist diff -u php-src/php.ini-dist:1.223 php-src/php.ini-dist:1.224 --- php-src/php.ini-dist:1.223 Mon Feb 14 03:23:53 2005 +++ php-src/php.ini-dist Mon Feb 28 17:09:21 2005 @@ -222,6 +222,10 @@ ;highlight.default = #0000BB ;highlight.html = #000000 +; If enabled, the request will be allowed to complete even if the user aborts +; the request. Consider enabling it if executing long request, which may end up +; being interrupted by the user or a browser timing out. +; ignore_user_abort = On ; ; Misc http://cvs.php.net/diff.php/php-src/php.ini-recommended?r1=1.168&r2=1.169&ty=u Index: php-src/php.ini-recommended diff -u php-src/php.ini-recommended:1.168 php-src/php.ini-recommended:1.169 --- php-src/php.ini-recommended:1.168 Mon Feb 14 03:23:54 2005 +++ php-src/php.ini-recommended Mon Feb 28 17:09:22 2005 @@ -280,6 +280,10 @@ ;highlight.default = #0000BB ;highlight.html = #000000 +; If enabled, the request will be allowed to complete even if the user aborts +; the request. Consider enabling it if executing long request, which may end up +; being interrupted by the user or a browser timing out. +; ignore_user_abort = On ; ; Misc
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php