Entry
CGI Error:Specified CGI application misbehaved by not returning complete set of HTTP header.Headers it return are:PHP:Unable to parse config. file
Sep 5th, 2001 20:48
Mark Davies, Sanveer Khurana,
This error can occur in instances where you are sending "multiple"
instances of a header.
Take for example, the following sample.
<html>
<head><title>My title</title></head>
<body><? phpinfo(); ?></body>
</html>
The following can generate the header error due to the fact that your
are sending headers twice. Once will be by this HTML page, the other
will be sent by the page generated by phpinfo().