On Tue, Apr 14, 2009 at 12:15 PM, sandhya pawar
<sandhya.pawa...@gmail.com> wrote:
> I have saved the following file C:\Program Files\Apache Software
> Foundation\Apache2.2\Perl\printenv.cgi
[ ... ]
> and put the following code in httpd.conf
>
> #Alias /perl/ "/Apache2/perl/"
>  Alias /perl/ "C:/Program Files/Apache Software Foundation/Apache2.2/perl/"
>   <Location /perl>
>      SetHandler perl-script
>      PerlResponseHandler ModPerl::Registry
>      Options +ExecCGI
>      PerlOptions +ParseHeaders
>   </Location>
>
> But it gives the error 403 in browser and in log
>
> client denied by server configuration: C:/Apache2

That error indicates that there's a reference to C:\Apache2 somewhere
in your httpd.conf that you didn't include in the above snippet. If
there is such a reference, and you don't use it, try commenting it
out, as in the first line you included above:
    # Alias /perl/ "/Apache2/perl/"

-- 
best regards,
Randy

Reply via email to