--000e0cd209d0986df6046786fb09
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
I have saved the following file C:\Program Files\Apache Software
Foundation\Apache2.2\Perl\printenv.cgi
# printenv -- demo CGI program which just prints its environment
use strict;
print "Content-type: text/html\n\n";
print "<HTML><BODY><H3>Environment variables</H3><UL>";
foreach (sort keys %ENV) {
my $val = $ENV{$_};
$val =~ s|\n|\\n|g;
$val =~ s|"|\\"|g;
print "<LI>$_ = \"${val}\"</LI>\n";
}
#sleep(10);
print "</UL></BODY></HTML>";
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
--000e0cd209d0986df6046786fb09
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
<p>I have saved=A0the following=A0file C:\Program Files\Apache Software Fou=
ndation\Apache2.2\Perl\printenv.cgi</p>
<p>#=A0 printenv -- demo CGI program which just prints its environment<br>=
=A0=A0<br>=A0 use strict;<br>=A0 print "Content-type: text/html\n\n&qu=
ot;;<br>=A0 print "<HTML><BODY><H3>Environment varia=
bles</H3><UL>";<br>
=A0 foreach (sort keys %ENV) {<br>=A0=A0=A0 my $val =3D $ENV{$_};<br>=A0=A0=
=A0 $val =3D~ s|\n|\\n|g;<br>=A0=A0=A0 $val =3D~ s|"|\\"|g;<br>=
=A0=A0=A0 print "<LI>$_ =3D \"${val}\"</LI>\n&qu=
ot;;<br>=A0 }<br>=A0 #sleep(10);<br>
=A0 print "</UL></BODY></HTML>";</p>
<p>and put the following code in httpd.conf</p>
<p>#Alias /perl/ "/Apache2/perl/"<br>=A0Alias /perl/ "C:/Pro=
gram Files/Apache Software Foundation/Apache2.2/perl/"<br>=A0 <Loca=
tion /perl><br>=A0=A0=A0=A0 SetHandler perl-script<br>=A0=A0=A0=A0 PerlR=
esponseHandler ModPerl::Registry<br>
=A0=A0=A0=A0 Options +ExecCGI<br>=A0=A0=A0=A0 PerlOptions +ParseHeaders<br>=
=A0 </Location></p>
<p><br>But it gives the error 403 in browser and in log </p>
<p>client denied by server configuration: C:/Apache2</p>
<p><br>=A0</p>
--000e0cd209d0986df6046786fb09--
