<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to enable PERL in Wampserver 2.0</title>
	<atom:link href="http://h8ersclub.com/how-to-enable-perl-in-wampser-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/</link>
	<description>not really a club, just me</description>
	<lastBuildDate>Tue, 19 Jan 2010 06:52:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: mr. H8ers</title>
		<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/comment-page-1/#comment-2461</link>
		<dc:creator>mr. H8ers</dc:creator>
		<pubDate>Tue, 08 Dec 2009 20:08:12 +0000</pubDate>
		<guid isPermaLink="false">http://h8ersclub.com/how-to-enable-perl-in-wampser-20/#comment-2461</guid>
		<description>@Paul Carden: freaky, I just put windows xp on a virtualbox and installed wampserver on it in arch linux, basically because paint.Net make&#039;s gimp look like, well, a gimp. It doesn&#039;t really mater where you put the cgi bin as long as it is configured in your httpd.conf also if. I haven&#039;t used windows in over a year. I&#039;m going to have to install perl and python now I&#039;ll let you know what I come up with and probably add another article.</description>
		<content:encoded><![CDATA[<p>@Paul Carden: freaky, I just put windows xp on a virtualbox and installed wampserver on it in arch linux, basically because paint.Net make&#8217;s gimp look like, well, a gimp. It doesn&#8217;t really mater where you put the cgi bin as long as it is configured in your httpd.conf also if. I haven&#8217;t used windows in over a year. I&#8217;m going to have to install perl and python now I&#8217;ll let you know what I come up with and probably add another article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Carden</title>
		<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/comment-page-1/#comment-2460</link>
		<dc:creator>Paul Carden</dc:creator>
		<pubDate>Tue, 08 Dec 2009 19:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://h8ersclub.com/how-to-enable-perl-in-wampser-20/#comment-2460</guid>
		<description>Just a couple of things to add from my experiences:

1. The default wampserver mandates placing scripts in:

C:\wamp\bin\apache\Apache2.2.11\cgi-bin

and not:

c:\wamp\www\cgi-bin

as I expected. 

I have a problem with IE8 as it offers:

&quot;Do you want to open or save the file&quot;

when I run a Perl script. However, Firefox runs the script AOK. I have not had time to check out why IE8 settings are causing this.</description>
		<content:encoded><![CDATA[<p>Just a couple of things to add from my experiences:</p>
<p>1. The default wampserver mandates placing scripts in:</p>
<p>C:\wamp\bin\apache\Apache2.2.11\cgi-bin</p>
<p>and not:</p>
<p>c:\wamp\www\cgi-bin</p>
<p>as I expected. </p>
<p>I have a problem with IE8 as it offers:</p>
<p>&#8220;Do you want to open or save the file&#8221;</p>
<p>when I run a Perl script. However, Firefox runs the script AOK. I have not had time to check out why IE8 settings are causing this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: me</title>
		<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/comment-page-1/#comment-349</link>
		<dc:creator>me</dc:creator>
		<pubDate>Thu, 03 Jul 2008 04:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://h8ersclub.com/how-to-enable-perl-in-wampser-20/#comment-349</guid>
		<description>To tell you the truth I haven&#039;t used wampserver in quite some time, I am suprised that they haven&#039;t made a module for perl yet. You might want to consult a Perl forum, But from what your comment says it seems that you are having a mime type issue. You might get lucky with &quot;AddHandler cgi-script .cgi .pl&quot; and you might want to add index.pl to your index lists in the httpd.conf file

#!/usr/bin/perl #comment: the real path to perl like the one above in the article

# comment:your httpd.conf should have something like this:

# Alias /perl/  /real/path/to/perl-scripts/

# &lt;Location /perl&gt;
# SetHandler  perl-script
# PerlHandler Apache::Registry
# PerlSendHeader On
# Options +ExecCGI
# &lt;/Location&gt;
try the above but un-comment the the non comments.</description>
		<content:encoded><![CDATA[<p>To tell you the truth I haven&#8217;t used wampserver in quite some time, I am suprised that they haven&#8217;t made a module for perl yet. You might want to consult a Perl forum, But from what your comment says it seems that you are having a mime type issue. You might get lucky with &#8220;AddHandler cgi-script .cgi .pl&#8221; and you might want to add index.pl to your index lists in the httpd.conf file</p>
<p>#!/usr/bin/perl #comment: the real path to perl like the one above in the article</p>
<p># comment:your httpd.conf should have something like this:</p>
<p># Alias /perl/  /real/path/to/perl-scripts/</p>
<p># <location /perl><br />
# SetHandler  perl-script<br />
# PerlHandler Apache::Registry<br />
# PerlSendHeader On<br />
# Options +ExecCGI<br />
# </location><br />
try the above but un-comment the the non comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: joran</title>
		<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/comment-page-1/#comment-347</link>
		<dc:creator>joran</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:54:32 +0000</pubDate>
		<guid isPermaLink="false">http://h8ersclub.com/how-to-enable-perl-in-wampser-20/#comment-347</guid>
		<description>Nice article....cept i cant quite get it to work.
It keeps giving me a forbidden message for anything ending in .pl
and if i try and goto my cgi-bin directory</description>
		<content:encoded><![CDATA[<p>Nice article&#8230;.cept i cant quite get it to work.<br />
It keeps giving me a forbidden message for anything ending in .pl<br />
and if i try and goto my cgi-bin directory</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Techy News &#187; Blog Archive &#187; How to enable PERL in Wampserver 2.0</title>
		<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/comment-page-1/#comment-68</link>
		<dc:creator>Techy News &#187; Blog Archive &#187; How to enable PERL in Wampserver 2.0</dc:creator>
		<pubDate>Fri, 14 Mar 2008 04:33:21 +0000</pubDate>
		<guid isPermaLink="false">http://h8ersclub.com/how-to-enable-perl-in-wampser-20/#comment-68</guid>
		<description>[...] Read the rest of this great post here [...]</description>
		<content:encoded><![CDATA[<p>[...] Read the rest of this great post here [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Techy News &#187; How to enable PERL in Wampserver 2.0</title>
		<link>http://h8ersclub.com/how-to-enable-perl-in-wampser-20/comment-page-1/#comment-67</link>
		<dc:creator>Techy News &#187; How to enable PERL in Wampserver 2.0</dc:creator>
		<pubDate>Fri, 14 Mar 2008 03:24:03 +0000</pubDate>
		<guid isPermaLink="false">http://h8ersclub.com/how-to-enable-perl-in-wampser-20/#comment-67</guid>
		<description>[...] Read the rest of this great post here [...]</description>
		<content:encoded><![CDATA[<p>[...] Read the rest of this great post here [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
