<?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: Apache Error: Client denied by server configuration</title>
	<atom:link href="http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/feed/" rel="self" type="application/rss+xml" />
	<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/</link>
	<description>code / ecommerce / life</description>
	<lastBuildDate>Sat, 21 Jan 2012 20:11:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Iain Wright</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26844</link>
		<dc:creator>Iain Wright</dc:creator>
		<pubDate>Wed, 26 Oct 2011 20:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26844</guid>
		<description>Cheers! Was the only thing that would fix my 403 forbidden</description>
		<content:encoded><![CDATA[<p>Cheers! Was the only thing that would fix my 403 forbidden</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SN</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26561</link>
		<dc:creator>SN</dc:creator>
		<pubDate>Fri, 24 Sep 2010 05:51:22 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26561</guid>
		<description>Awesome!! This helped me so much! Fixed my long pending error on a jiffy.. thanks so much</description>
		<content:encoded><![CDATA[<p>Awesome!! This helped me so much! Fixed my long pending error on a jiffy.. thanks so much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Veneroso</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26553</link>
		<dc:creator>Antonio Veneroso</dc:creator>
		<pubDate>Tue, 24 Aug 2010 04:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26553</guid>
		<description>Rabbit, remember that, each time you change something in httpd, you must restart apache.
damonp, your solution is nice, but I think instead of allowing everyone to see the root directory you should allow only the htdocs directory. In the httpd.conf, right after 


    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all


there is another rule, exclusive for the htdocs directory

# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something&#039;s not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
&lt;Directory &quot;&quot;&gt;
    #
    # Possible values for the Options directive are &quot;None&quot;, &quot;All&quot;,
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that &quot;MultiViews&quot; must be named *explicitly* --- &quot;Options All&quot;
    # doesn&#039;t give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks
    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be &quot;All&quot;, &quot;None&quot;, or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None
    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all


Hope this helps to someone.
Antonio.</description>
		<content:encoded><![CDATA[<p>Rabbit, remember that, each time you change something in httpd, you must restart apache.<br />
damonp, your solution is nice, but I think instead of allowing everyone to see the root directory you should allow only the htdocs directory. In the httpd.conf, right after </p>
<p>    Options FollowSymLinks<br />
    AllowOverride None<br />
    Order deny,allow<br />
    Deny from all</p>
<p>there is another rule, exclusive for the htdocs directory</p>
<p># Note that from this point forward you must specifically allow<br />
# particular features to be enabled &#8211; so if something&#8217;s not working as<br />
# you might expect, make sure that you have specifically enabled it<br />
# below.<br />
#<br />
#<br />
# This should be changed to whatever you set DocumentRoot to.<br />
#<br />
&lt;Directory &quot;&#8221;&gt;<br />
    #<br />
    # Possible values for the Options directive are &#8220;None&#8221;, &#8220;All&#8221;,<br />
    # or any combination of:<br />
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews<br />
    #<br />
    # Note that &#8220;MultiViews&#8221; must be named *explicitly* &#8212; &#8220;Options All&#8221;<br />
    # doesn&#8217;t give it to you.<br />
    #<br />
    # The Options directive is both complicated and important.  Please see<br />
    # <a href="http://httpd.apache.org/docs/2.2/mod/core.html#options" rel="nofollow">http://httpd.apache.org/docs/2.2/mod/core.html#options</a><br />
    # for more information.<br />
    #<br />
    Options Indexes FollowSymLinks<br />
    #<br />
    # AllowOverride controls what directives may be placed in .htaccess files.<br />
    # It can be &#8220;All&#8221;, &#8220;None&#8221;, or any combination of the keywords:<br />
    #   Options FileInfo AuthConfig Limit<br />
    #<br />
    AllowOverride None<br />
    #<br />
    # Controls who can get stuff from this server.<br />
    #<br />
    Order allow,deny<br />
    Allow from all</p>
<p>Hope this helps to someone.<br />
Antonio.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: damonp</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26508</link>
		<dc:creator>damonp</dc:creator>
		<pubDate>Fri, 07 May 2010 21:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26508</guid>
		<description>Have you looked in the error log to see the full error?</description>
		<content:encoded><![CDATA[<p>Have you looked in the error log to see the full error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rabbit</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26507</link>
		<dc:creator>Rabbit</dc:creator>
		<pubDate>Fri, 07 May 2010 21:05:11 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26507</guid>
		<description>Hi, I am getting a 403 error for all my static content which should be served by apache. I tried to comment out the line which you have mentioned above, but that did not take care of the error. I have checked all the permissions and the apache user has permissions to view all the static content. What could the problem be???? Please help as we go live in a week!!!</description>
		<content:encoded><![CDATA[<p>Hi, I am getting a 403 error for all my static content which should be served by apache. I tried to comment out the line which you have mentioned above, but that did not take care of the error. I have checked all the permissions and the apache user has permissions to view all the static content. What could the problem be???? Please help as we go live in a week!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mao</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26488</link>
		<dc:creator>mao</dc:creator>
		<pubDate>Wed, 17 Feb 2010 05:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26488</guid>
		<description>thanks a lot . You save my job. I have confused with this error for a week, try to solve it  from google but always fail. Until I find the right solution from you. Thank you guy!</description>
		<content:encoded><![CDATA[<p>thanks a lot . You save my job. I have confused with this error for a week, try to solve it  from google but always fail. Until I find the right solution from you. Thank you guy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gazbrad</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26481</link>
		<dc:creator>Gazbrad</dc:creator>
		<pubDate>Fri, 05 Feb 2010 14:16:02 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26481</guid>
		<description>At last! Thank you very much for this info.

I&#039;m doing some Apache/PHP/mySQL tutorials and not being able to start my personal web pages for testing was driving me insane. All is well with the world now and I can stick my virtual hair back onto my head.</description>
		<content:encoded><![CDATA[<p>At last! Thank you very much for this info.</p>
<p>I&#8217;m doing some Apache/PHP/mySQL tutorials and not being able to start my personal web pages for testing was driving me insane. All is well with the world now and I can stick my virtual hair back onto my head.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moecklund</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26442</link>
		<dc:creator>moecklund</dc:creator>
		<pubDate>Fri, 23 Oct 2009 21:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26442</guid>
		<description>Lovely lovely lovey
That was it
thx!</description>
		<content:encoded><![CDATA[<p>Lovely lovely lovey<br />
That was it<br />
thx!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Permission denied when accessing Sites directory on a Mac - paulcarvill.com</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26283</link>
		<dc:creator>Permission denied when accessing Sites directory on a Mac - paulcarvill.com</dc:creator>
		<pubDate>Thu, 18 Jun 2009 14:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26283</guid>
		<description>[...] thanks to Damon Parker. See his site for an explanation of why you need to fix this in the first [...]</description>
		<content:encoded><![CDATA[<p>[...] thanks to Damon Parker. See his site for an explanation of why you need to fix this in the first [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TDavis</title>
		<link>http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26277</link>
		<dc:creator>TDavis</dc:creator>
		<pubDate>Thu, 04 Jun 2009 18:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/2007/01/06/apache-error-client-denied-by-server-configuration/#comment-26277</guid>
		<description>Terrific fix.  Many thanks.</description>
		<content:encoded><![CDATA[<p>Terrific fix.  Many thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using xcache
Database Caching 17/28 queries in 0.006 seconds using xcache
Content Delivery Network via cdn.damonparker.org/q9i5a4w8/cds/dp

Served from: damonparker.org @ 2012-02-10 06:21:51 -->
