<?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: Two tips for fixing Apache problems</title>
	<atom:link href="http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/</link>
	<description>Ranting and Raving</description>
	<lastBuildDate>Thu, 09 Feb 2012 17:01:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Andrew McCombe</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-904178</link>
		<dc:creator>Andrew McCombe</dc:creator>
		<pubDate>Fri, 26 Nov 2010 14:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-904178</guid>
		<description>Sorry, my previous comment is ambigous. The mixing of + and - is invalid. You can still use them.</description>
		<content:encoded><![CDATA[<p>Sorry, my previous comment is ambigous. The mixing of + and &#8211; is invalid. You can still use them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew McCombe</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-904177</link>
		<dc:creator>Andrew McCombe</dc:creator>
		<pubDate>Fri, 26 Nov 2010 14:16:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-904177</guid>
		<description>If you are still getting the &#039;Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden&#039; error message, try removing the &#039;+&#039; at the start of +FollowSymLinks.

Using + and - is invalid syntax according to the apache website (See the notes section of Options at http://httpd.apache.org/docs/current/mod/core.html#options).</description>
		<content:encoded><![CDATA[<p>If you are still getting the &#8216;Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden&#8217; error message, try removing the &#8216;+&#8217; at the start of +FollowSymLinks.</p>
<p>Using + and &#8211; is invalid syntax according to the apache website (See the notes section of Options at <a href="http://httpd.apache.org/docs/current/mod/core.html#options" rel="nofollow">http://httpd.apache.org/docs/current/mod/core.html#options</a>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lichi</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-881509</link>
		<dc:creator>Lichi</dc:creator>
		<pubDate>Thu, 26 Aug 2010 21:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-881509</guid>
		<description>Thanks!!.. this saved my day!</description>
		<content:encoded><![CDATA[<p>Thanks!!.. this saved my day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-879659</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Fri, 13 Aug 2010 17:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-879659</guid>
		<description>thank you so much for providing this solution.  I was on the street of pain for over an hour until I finally looked at my logs, and then I was able to find this resource and apply your suggestion to my Wordpress .htaccess file</description>
		<content:encoded><![CDATA[<p>thank you so much for providing this solution.  I was on the street of pain for over an hour until I finally looked at my logs, and then I was able to find this resource and apply your suggestion to my WordPress .htaccess file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asiat</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-874334</link>
		<dc:creator>Asiat</dc:creator>
		<pubDate>Mon, 21 Jun 2010 09:11:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-874334</guid>
		<description>Thanks, this tip saved me from a support call and hours of fustration.</description>
		<content:encoded><![CDATA[<p>Thanks, this tip saved me from a support call and hours of fustration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daisy</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-863747</link>
		<dc:creator>Daisy</dc:creator>
		<pubDate>Tue, 02 Feb 2010 20:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-863747</guid>
		<description>I was having the exact same problem, getting 403 Forbidden. What I did to fix the problem was go into httpd.conf and replace the following between the Directory tags:

    Options Indexes FollowSymLinks
    AllowOverride All


to


    Options Indexes FollowSymLinks
    AllowOverride None


I hope this helps someone out :)</description>
		<content:encoded><![CDATA[<p>I was having the exact same problem, getting 403 Forbidden. What I did to fix the problem was go into httpd.conf and replace the following between the Directory tags:</p>
<p>    Options Indexes FollowSymLinks<br />
    AllowOverride All</p>
<p>to</p>
<p>    Options Indexes FollowSymLinks<br />
    AllowOverride None</p>
<p>I hope this helps someone out :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maarten</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-857090</link>
		<dc:creator>Maarten</dc:creator>
		<pubDate>Sat, 19 Dec 2009 13:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-857090</guid>
		<description>Thanks for helping me find a solution to my problem!</description>
		<content:encoded><![CDATA[<p>Thanks for helping me find a solution to my problem!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Re: no permission to access MAMP on this server &#171; wogahilog</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-851569</link>
		<dc:creator>Re: no permission to access MAMP on this server &#171; wogahilog</dc:creator>
		<pubDate>Wed, 11 Nov 2009 08:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-851569</guid>
		<description>[...] the error &#8220;Options FollowSymLinks or SymLinksIfOwnerMatch is off&#8221; and finding this page:http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apach..., then somehow figuring out that the httpd.conf file was the same as an htaccess file, and finally [...]</description>
		<content:encoded><![CDATA[<p>[...] the error &#8220;Options FollowSymLinks or SymLinksIfOwnerMatch is off&#8221; and finding this page:<a href="http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apach..." rel="nofollow">http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apach&#8230;</a>, then somehow figuring out that the httpd.conf file was the same as an htaccess file, and finally [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorgen</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-850175</link>
		<dc:creator>jorgen</dc:creator>
		<pubDate>Sat, 31 Oct 2009 19:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-850175</guid>
		<description>fanx a lot - helped me too - even though searching for &#039;Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden&#039; implies that I actually read  the error_log file;-)

Moving the &#039;Options FollowSymLinks&#039;  right above of the &#039;RewriteEngine On&#039; line sure did the trick for me.

So now - bookmark and back to work.

kind regards
jj</description>
		<content:encoded><![CDATA[<p>fanx a lot &#8211; helped me too &#8211; even though searching for &#8216;Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden&#8217; implies that I actually read  the error_log file;-)</p>
<p>Moving the &#8216;Options FollowSymLinks&#8217;  right above of the &#8216;RewriteEngine On&#8217; line sure did the trick for me.</p>
<p>So now &#8211; bookmark and back to work.</p>
<p>kind regards<br />
jj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.elharo.com/blog/software-development/web-development/2006/01/02/two-tips-for-fixing-apache-problems/comment-page-1/#comment-844308</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sat, 19 Sep 2009 05:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.elharo.com/blog/?p=79#comment-844308</guid>
		<description>Finally a fix that worked! I am running Apache/2.2.13 (Win32) and got this error with a virtual host that I added using the Uniform Server admin panel. Thank you.</description>
		<content:encoded><![CDATA[<p>Finally a fix that worked! I am running Apache/2.2.13 (Win32) and got this error with a virtual host that I added using the Uniform Server admin panel. Thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

