<?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>Kurinchi Blogger Scribbles ... &#187; permission denied</title>
	<atom:link href="http://kurinchilamp.kurinchilion.com/tag/permission-denied/feed" rel="self" type="application/rss+xml" />
	<link>http://kurinchilamp.kurinchilion.com</link>
	<description>On Open Source Technologies</description>
	<lastBuildDate>Mon, 02 Jan 2012 06:14:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Permission denied: exec of failed in Apache Server</title>
		<link>http://kurinchilamp.kurinchilion.com/2009/08/permission-denied-exec-of-failed-in-apache-server.html</link>
		<comments>http://kurinchilamp.kurinchilion.com/2009/08/permission-denied-exec-of-failed-in-apache-server.html#comments</comments>
		<pubDate>Sat, 15 Aug 2009 06:10:54 +0000</pubDate>
		<dc:creator>kurinchilamp</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Linux Server]]></category>
		<category><![CDATA[Tips, Tricks, Guides]]></category>
		<category><![CDATA[apache error]]></category>
		<category><![CDATA[CGI]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[permission denied]]></category>

		<guid isPermaLink="false">http://kurinchilamp.kurinchilion.com/?p=631</guid>
		<description><![CDATA[Apache Permission Denied Error can be caused due to one of many configuration mistakes listed below Check the apache configuration settings i) The first is the reference to folder where cgi or perl files will reside and its execute permission settings &#60;ScriptAlias /cgi-bin/ /usr/local/cgi-bin/&#62; &#60;Directory "/usr/local/cgi-bin"&#62; AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Apache Permission Denied Error </strong>can be caused due to one of many configuration mistakes listed below</p>
<p><em>Check the apache configuration settings</em></p>
<p><strong>i) The first is the reference to folder where cgi or perl files will reside and its execute permission settings</strong></p>
<pre>
 &lt;ScriptAlias /cgi-bin/ /usr/local/cgi-bin/&gt;
 &lt;Directory "/usr/local/cgi-bin"&gt;
     AllowOverride None
     Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
     Order allow,deny
     Allow from all
 &lt;/Directory&gt;
</pre>
<p><strong>ii) The second is the proper add handlers that are set for the file execution</strong></p>
<pre>
AddHandler cgi-script .cgi .pl
&lt;Files ~ "\.pl$"&gt;
    Options +ExecCGI
&lt;/Files&gt;
&lt;Files ~ "\.cgi$"&gt;
   Options +ExecCGI
&lt;/Files&gt;
</pre>
<p>Check the apache error log for any messages <strong>(/var/log/apache2/error.log).</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://kurinchilamp.kurinchilion.com/2009/08/permission-denied-exec-of-failed-in-apache-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

