|
Posted by Vakayil Thobias on March 27, 2008, 4:23 am
Please log in for more thread options
> Dear all,
>
>
>
> Would you mind telling me how to fix this problem?
>
>
>
> "You don't have permission to access abc.cgi on this server."
>
>
>
> I've changed httpd.conf to include the doNav.cgi in the non cgi-bin
> directory,
>
>
>
> ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
>
> ScriptAlias /cgi-bin/ "/var/www/html/ice-front/test/"
>
>
>
> and
>
>
>
> added Addtype
>
>
>
> AddType application/x-httpd-cgi .cgi
>
>
>
> restart the httpd service
>
>
>
> Google search returns results which may be of no information.
>
>
>
> And my link is :
>
>
>
> http://137.189.50.236/test
>
>
>
> Best Regards,
>
> Ela
>
>
Hello,
Please include the following statement in the httpd.conf file :
<Directory "..../.../.. " > # cgi script directory has to mention here
Options +ExecCGI
AddHandler cgi-script .cgi .pl
</Directory>
Regards,
Thobias
|