|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-09-07 17:34 UTC] rasmus@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 06:00:01 2025 UTC |
Software: Apache/1.3.19 (Unix) PHP/4.0.4pl1 mod_ssl/2.8.2 OpenSSL/0.9.6 and PHP is built as a loadable module for Apache. './configure' '--prefix=/var/php' '--with-config-file-path=/var/php' '--enable-track-vars' '--with-apxs=/var/apache/bin/apxs' '--with-ftp' '--with-xml' '--with-mcrypt=/var/libmcrypt' '--enable-sigchild' '--with-oci8=/u01/app/oracle/product/8.1.7' '--with-pgsql=/var/postgresql' '--with-mysql=/var/mysql' HEAD requests to PHP pages that have calls to ob_start() and ob_end_flush() do not work properly. index.php - *without* ob_start() / ob_end_flush() ------------------------------------------------- <? phpinfo(); ?> Here's the response from a HEAD request to that index.php: ---------------------------------------------------------- HTTP/1.1 200 OK Date: Fri, 07 Sep 2001 21:11:00 GMT Server: Apache/1.3.19 (Unix) PHP/4.0.4pl1 mod_ssl/2.8.2 OpenSSL/0.9.6 X-Powered-By: PHP/4.0.4pl1 Connection: close Content-Type: text/html Connection closed by foreign host. =========================================================================== index.php - *with* ob_start() / ob_end_flush() ---------------------------------------------- <? ob_start(); phpinfo(); ob_end_flush(); ?> Here's the response from a HEAD request to that index.php: ---------------------------------------------------------- Connection closed by foreign host. Is this a bug with PHP 4.0.4pl1?