faqts : Computers : Programming : Languages : PHP : Common Problems : HTTP Headers

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

126 of 576 people (22%) answered Yes
Recently 2 of 10 people (20%) answered Yes

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().