[cc to author]
>Apache give me the error message
>access to /usr/lib/cgi-bin/search_library.cgi failed for
>keng-ppp.hybrid.com, reason: malformed header from script. Bad header=
>when I try to run this script:
>#!/bin/bash
>#
># search_library.cgi - searches files for matching keywords using
># ISINDEX.
>#
>echo "Content-type: text/html"
>echo " "
The end of your headers needs to be a blank line, not a line with
a blank. Try this:
echo "Content-type: text/html"
echo
# rest of stuff
Hope this helps.
--
Michael Fuhr
http://www.dimensional.com/~mfuhr/