tags:

views:

86

answers:

2

I am getting the following error while trying to run a PHP page

The specified CGI application misbehaved by not returning a complete set of HTTP headers.

The page was working fine earlier.Then i made some changes to the page for formating of the content(Added some more rows to the HTMLtable and gave some styles for it)

Can anyone tell me why its coming ?

In my local environemnt (WAMP ) its working fine . My Production server is running in an IIS

A: 

Different data might be causing an error. Copy your production database to your local environment and see what happens.

Ed Guiness
I checked with the production db.Its also working fine
Shyju
A: 

That means that the error occurred early in the script or that there was a parse error caused by the changes. Play with your php.ini's error level settings so that errors are printed to the web browser. I am unsure about ISS logs, but the error may be showing up there. Beware, though, that having PHP print errors to the web browser makes them world-viewable on an Internet-facing server.

Jeff Ober