Sara,


Wiggins is right, one of the questions is what exactly
did the Apache Error Log say was it's chief complaint.

The 'premature end of script headers' suggest that your
output does not have a content-type or there is
<CR><LF> separating them.

eg:
[jeeves: 45:] test_cgi GET simple.cgi
Content-Type: text/plain
hello World
[jeeves: 46:]

which is not a separation from the header and the body:

[jeeves: 47:] test_cgi GET simple.cgi
Content-Type: text/plain

hello World
[jeeves: 48:]

The script for that is at the end.

Excuse me while I help adjust Wiggins Hair....

On Thursday, Sep 11, 2003, at 15:45 US/Pacific, Wiggins d'Anconia wrote:
[..]

Without that all the claims you make to checking everything are suspect....

bad hair day there wiggins?


THWACK! THWACK! THWACK!!!!

did that help loosen up the dandruf.

ciao
drieux

---
the simple code:
### #!/usr/bin/perl -w
### use strict;
###
### our $CRLF = "\015\012";   # "\r\n" is not portable
### my $type = "text/plain";
### print "Content-Type: $type" . $CRLF . $CRLF . "hello World"



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to