Problem with some hobbit manpages
Anonymous mailed me - he had the same problem and found the solution: This occurs because by default, apache associates the cgi-script handler with any filename containing ".cgi". I fixed this on my server by changing the following line in my httpd.conf AddHandler cgi-script .cgi ->to-> AddHandler cgi-script .cgi$ This forces the match to only occur if the ".cgi" is at the end of the filename (duh) :)
That did the trick. Thanks ! -- Frédéric Mangeant