On Tue, 30 Jul 2002, Scott Holder wrote: > thttpd seems to be almost doing it. If the scripts are -x, > they display in the browser window. If they're +x, they just show a blank > white page with nothing useful.
This sounds like your scripts don't output a header, so the entire output is parsed as headers by the httpd and discarded because HTML does not look like RFC 822 data. Writing "Content-type: text/html" and a blank line afterwards should be enough. Simon -- GPG public key available from http://phobos.fs.tum.de/pgp/Simon.Richter.asc Fingerprint: 040E B5F7 84F1 4FBC CEAD ADC6 18A0 CC8D 5706 A4B4 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

