Premature end of script headers

ortega

New Member
Hi all
I have running webspeed in Windows Xp and
with a apache web server and have frecuently this error i the apache error log file with web speed
And I'm not found where the program is making this error, the unique thig that i'm shure is
on Webspeed,
Actualy i'm using Progress 10.1a and database same version .

Knows some one the soluction about this roblem ?
 

medu

Member
this means that the server didn't get the header section right from the cgi-bin webspeed messenger, it could be that it didn't get anything at all (most probably due to the fact that the webspeed agent died before letting any word about what made him so sad) or you might have been send something on the out stream but forgot to set the content-type header info.
 

medu

Member
output with no content-type header info:

Code:
{&OUT} '<html><body>toto</body></html>'.

or

if someCondition then do:
   output-content-type ('text\html').
   {OUT} 'valid output'.
end.
else do:
   {OUT} 'invalid output... no content-type'.
end.

same for no output at all, you either have some flow path that does not return anyting to the web stream or simply the program reach the stop condition and the messenger has nothing to throw in... it can happen when you try to run some procedure that does not exist or did someting that lead to a core dump, look for procore files in webspeed broker running directory.
 
Top