From: [EMAIL PROTECTED] Operating system: Redhat Linux 6.1 PHP version: 4.0.4pl1 PHP Bug Type: Output Control Bug description: HEAD request problem when use ob_start and ob_end_flush 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? -- Edit bug report at: http://bugs.php.net/?id=13202&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]