<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hello System Admin &#124; Where system admins share technical article and tips &#124; Create free Blog &#124; Updates on domains, web hosting, servers and more &#187; Perl</title>
	<atom:link href="http://hellosystemadmin.com/blog/category/linux/apache-on-linux/perl/feed/" rel="self" type="application/rss+xml" />
	<link>http://hellosystemadmin.com</link>
	<description></description>
	<lastBuildDate>Wed, 06 Apr 2011 02:50:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>configure perl in apache</title>
		<link>http://hellosystemadmin.com/blog/configure-perl-in-apacheache/</link>
		<comments>http://hellosystemadmin.com/blog/configure-perl-in-apacheache/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 12:14:08 +0000</pubDate>
		<dc:creator>Aneesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://hellosystemadmin.com/?p=422</guid>
		<description><![CDATA[In order to browse  perl files (.pl) through apache serer you need to  add few lines in apache configuration file ( httpd.conf)
Add the following in  httpd.conf
AddHandler cgi-script .cgi .pl
Now find the following section
&#60;Directory /&#62;
Options FollowSymLinks
AllowOverride None
&#60;/Directory&#62;
Add   +ExecCGI to the options list. So it  looks like as follows now
Now find the following section
&#60;Directory /&#62;
Options FollowSymLinks +ExecCGI
AllowOverride [...]]]></description>
			<content:encoded><![CDATA[<p>In order to browse  perl files (.pl) through apache serer you need to  add few lines in apache configuration file ( httpd.conf)</p>
<p>Add the following in  httpd.conf</p>
<p><strong>AddHandler cgi-script .cgi .pl</strong></p>
<p>Now find the following section</p>
<p><em>&lt;Directory /&gt;<br />
Options FollowSymLinks<br />
AllowOverride None<br />
&lt;/Directory&gt;</em></p>
<p>Add   <code>+ExecCGI</code> to the options list. So it  looks like as follows now</p>
<p>Now find the following section</p>
<p>&lt;Directory /&gt;<br />
<strong>Options FollowSymLinks +ExecCGI</strong><br />
AllowOverride None<br />
&lt;/Directory&gt;</p>
<p>Now save httpd.conf and restart Apache server</p>
<p>Create a sample perl file called test.pl and add the following lines  and save it.</p>
<p>#!/usr/bin/perl<br />
print &#8220;content-type: text/html \n\n&#8221;;<br />
print &#8220;Hello, Perl!&#8221;;</p>
<p>Now browse the page</p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Fconfigure-perl-in-apacheache%2F', 'configure+perl+in+apache')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fhellosystemadmin.com%2Fblog%2Fconfigure-perl-in-apacheache%2F', title: '+configure+perl+in+apache+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://hellosystemadmin.com/blog/configure-perl-in-apacheache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

