<?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: Setting Up Perl and CGI For Wamp Server WAMP(P)</title>
	<atom:link href="http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html</link>
	<description>Design With A Chrome</description>
	<lastBuildDate>Sun, 28 Feb 2010 00:58:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Brett The Tech Guy</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-288</link>
		<dc:creator>Brett The Tech Guy</dc:creator>
		<pubDate>Tue, 12 Jan 2010 03:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-288</guid>
		<description>Thank you very much for posting this tutorial, it seemed to point me in the right direction!

I did find you can combine these lines into one:
   1. AddHandler cgi-script .cgi  
   2. AddHandler cgi-script .pl  
AddHandler cgi-script .pl .cgi

I also found you can type:
Options Indexes FollowSymLinks +ExecCGI

Lastly you definitely need to declare the path as
#!c:/wamp/bin/perl/bin/perl
If you don&#039;t have the right path you&#039;ll receive 403 Permissions Denied</description>
		<content:encoded><![CDATA[<p>Thank you very much for posting this tutorial, it seemed to point me in the right direction!</p>
<p>I did find you can combine these lines into one:<br />
   1. AddHandler cgi-script .cgi<br />
   2. AddHandler cgi-script .pl<br />
AddHandler cgi-script .pl .cgi</p>
<p>I also found you can type:<br />
Options Indexes FollowSymLinks +ExecCGI</p>
<p>Lastly you definitely need to declare the path as<br />
#!c:/wamp/bin/perl/bin/perl<br />
If you don&#8217;t have the right path you&#8217;ll receive 403 Permissions Denied</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach Browne</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-232</link>
		<dc:creator>Zach Browne</dc:creator>
		<pubDate>Sat, 26 Dec 2009 22:50:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-232</guid>
		<description>Great explanation, worked flawlessly.  I was trying to get Warrick - http://warrick.cs.odu.edu, a website archive re-builder working with WAMP Server and this was the ticket.  Thanks, great job.  Very thorough and easy to follow.
Zach Browne</description>
		<content:encoded><![CDATA[<p>Great explanation, worked flawlessly.  I was trying to get Warrick &#8211; <a href="http://warrick.cs.odu.edu" rel="nofollow">http://warrick.cs.odu.edu</a>, a website archive re-builder working with WAMP Server and this was the ticket.  Thanks, great job.  Very thorough and easy to follow.<br />
Zach Browne</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhav</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-229</link>
		<dc:creator>madhav</dc:creator>
		<pubDate>Wed, 09 Dec 2009 09:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-229</guid>
		<description>i got 500 internal server error</description>
		<content:encoded><![CDATA[<p>i got 500 internal server error</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shamit Kumar Tomar</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-177</link>
		<dc:creator>Shamit Kumar Tomar</dc:creator>
		<pubDate>Thu, 26 Nov 2009 17:29:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-177</guid>
		<description>@matrix,

I solved the same problem as yours. Here&#039;s how to do it:
Let&#039;s write Hello World script for Perl. I copied it from Wikipedia that has this script:

#!/usr/bin/perl
print &quot;Hello, world!\n&quot;;

But it gives 500:Internal Server Error. This is because, this script tells WampServer to look into /usr/bin/perl for perl.exe but out perl.exe is in c:/wamp/bin/perl/bin/. So, we have to use a script like this:

#!c:/wamp/bin/perl/bin/perl
print &quot;Hello, world!\n&quot;;

So, insert this #! commented line at top of your every script and it will work fine without giving HTTP 500 error.

Enjoy@Perl. This is my first day on Perl.</description>
		<content:encoded><![CDATA[<p>@matrix,</p>
<p>I solved the same problem as yours. Here&#8217;s how to do it:<br />
Let&#8217;s write Hello World script for Perl. I copied it from Wikipedia that has this script:</p>
<p>#!/usr/bin/perl<br />
print &#8220;Hello, world!\n&#8221;;</p>
<p>But it gives 500:Internal Server Error. This is because, this script tells WampServer to look into /usr/bin/perl for perl.exe but out perl.exe is in c:/wamp/bin/perl/bin/. So, we have to use a script like this:</p>
<p>#!c:/wamp/bin/perl/bin/perl<br />
print &#8220;Hello, world!\n&#8221;;</p>
<p>So, insert this #! commented line at top of your every script and it will work fine without giving HTTP 500 error.</p>
<p>Enjoy@Perl. This is my first day on Perl.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asakura</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-176</link>
		<dc:creator>Asakura</dc:creator>
		<pubDate>Fri, 20 Nov 2009 00:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-176</guid>
		<description>thanks for the explicit walkthrough helped me quite a bit.</description>
		<content:encoded><![CDATA[<p>thanks for the explicit walkthrough helped me quite a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: matrix</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-175</link>
		<dc:creator>matrix</dc:creator>
		<pubDate>Tue, 27 Oct 2009 09:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-175</guid>
		<description>Hi Everyone,
 I followed above all steps to configure perl but i am unable to execute .pl &amp; .cgi file extension in the wamp2.0 server.
i am getting error: Internal server error...

Components: 
wamp2.0
ActivePerl-5.10.1.1006-MSWin32-x86-291086.msi


So please help me to solve this problem.</description>
		<content:encoded><![CDATA[<p>Hi Everyone,<br />
 I followed above all steps to configure perl but i am unable to execute .pl &amp; .cgi file extension in the wamp2.0 server.<br />
i am getting error: Internal server error&#8230;</p>
<p>Components:<br />
wamp2.0<br />
ActivePerl-5.10.1.1006-MSWin32-x86-291086.msi</p>
<p>So please help me to solve this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hemi</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-174</link>
		<dc:creator>hemi</dc:creator>
		<pubDate>Fri, 02 Oct 2009 14:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-174</guid>
		<description>thank u, that really helped me a lot</description>
		<content:encoded><![CDATA[<p>thank u, that really helped me a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: perl execution - Hot Scripts Forums</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-173</link>
		<dc:creator>perl execution - Hot Scripts Forums</dc:creator>
		<pubDate>Fri, 02 Oct 2009 02:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-173</guid>
		<description>[...] Setting Up Perl and CGI For Wamp Server WAMP(P) &#124; Chromic Design [...]</description>
		<content:encoded><![CDATA[<p>[...] Setting Up Perl and CGI For Wamp Server WAMP(P) | Chromic Design [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahboob</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-172</link>
		<dc:creator>Mahboob</dc:creator>
		<pubDate>Thu, 17 Sep 2009 22:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-172</guid>
		<description>very nice and to the point, thanks a lot.</description>
		<content:encoded><![CDATA[<p>very nice and to the point, thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen</title>
		<link>http://www.chromicdesign.com/2009/05/setting-up-perl-for-wampp.html/comment-page-1#comment-171</link>
		<dc:creator>Jeroen</dc:creator>
		<pubDate>Sat, 29 Aug 2009 18:07:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromicdesign.com/?p=229#comment-171</guid>
		<description>Thanx for the info :) it worked!</description>
		<content:encoded><![CDATA[<p>Thanx for the info <img src='http://www.chromicdesign.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  it worked!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
