Re: apache-ssl + cgi

2000-01-26 Thread sixx
make it two to be safe ... eg echo \n\n At 16:45 00/01/26 +0100, you wrote: >On Wed, 26 Jan 2000 [EMAIL PROTECTED] wrote: > > > #!/bin/bash > > echo 'Content-type: text/html' > > echo '' > >The RFCs say that the header (Content-type) needs to be separated from >the actual html stuff by a newline,

Re: apache-ssl + cgi

2000-01-26 Thread bcjohans
lear text insecure server... Bruce Bernhard Rosenkraenzer <[EMAIL PROTECTED]> on 01/26/2000 09:45:12 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Re: apache-ssl + cgi On Wed, 26 Jan 2000 [EMAIL PROTECTED] wrote: > #!/bin/bash > echo 'Content-type

Re: apache-ssl + cgi

2000-01-26 Thread Jason Hirsch
I believe you need to put 2 newline characters between the content type and the first tag= so echo echo echo ... jason -- Jason Hirsch, ChemEng/Chemistry Make it myself? But I'm a physical organic chemist! Visit the Dorm Room Life may never http://icdweb.cc.purdue.edu/

Re: apache-ssl + cgi

2000-01-26 Thread Bernhard Rosenkraenzer
On Wed, 26 Jan 2000 [EMAIL PROTECTED] wrote: > #!/bin/bash > echo 'Content-type: text/html' > echo '' The RFCs say that the header (Content-type) needs to be separated from the actual html stuff by a newline, so it's echo 'Content-type: text/html' echo echo '' LlaP bero -- Anyone sending uns

apache-ssl + cgi

2000-01-26 Thread bcjohans
I recently installed the apache-ssl-1.3.6_1.35-3 rpm, set up both a secure web server and an insecure web server through the directive in the apache config file. When trying to access a cgi page, I get a 'premature end of headers' error in the errorlog when connecting through the secure server