hoelc wrote:
> I have wrote a simple html page to trigger a cgi program. I test it using
> the same computer, have no problem connecting to the Apache server and
> getting the HTML page, but can't get to run to cgi program, it give error
> massage of
>
> " Forbidden: You don't have permission to access /try1.cgi on this server. "
First, Apache has to be configured to recognise the .cgi suffix as
indicating a CGI script, with:
AddHandler cgi-script .cgi
(typically in srm.conf)
Second, you have to enable execution of CGI scripts with
Options ExecCGI
(typically in access.conf)
Also, the script itself has to have the execute bit set.
--
Glynn Clements <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]