<?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: CakePHP: One core, many apps</title>
	<atom:link href="http://rickguyer.com/cakephp-one-core-many-apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://rickguyer.com/cakephp-one-core-many-apps/</link>
	<description>Information about the web, web development, and technology.</description>
	<lastBuildDate>Tue, 13 Sep 2011 15:43:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: ricog</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-1450</link>
		<dc:creator>ricog</dc:creator>
		<pubDate>Wed, 17 Aug 2011 00:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-1450</guid>
		<description>I believe the conditions should only need to exist in the .htaccess at the base web folder level. I would need to test to verify though.</description>
		<content:encoded><![CDATA[<p>I believe the conditions should only need to exist in the .htaccess at the base web folder level. I would need to test to verify though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mimiCRoSCoPiC^eaRthLinG</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-1449</link>
		<dc:creator>mimiCRoSCoPiC^eaRthLinG</dc:creator>
		<pubDate>Tue, 16 Aug 2011 04:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-1449</guid>
		<description>One question though... in installations where cake and app reside together, the way to make cake ignore real folders (subdomain folders) is to include the following in your .htaccess that existing above the cake and app folders. 

&lt;code&gt;


    RewriteEngine On   
    RewriteBase /   
    RewriteCond %{REQUEST_URI} ^/shop/(.*)$
    RewriteCond %{REQUEST_URI} ^/blog/(.*)$
    RewriteRule ^.*$ - [L]


&lt;/code&gt;

Now that the contents of the app folder are out on webroot, does this code go into the .htaccess that&#039;s present there?</description>
		<content:encoded><![CDATA[<p>One question though&#8230; in installations where cake and app reside together, the way to make cake ignore real folders (subdomain folders) is to include the following in your .htaccess that existing above the cake and app folders. </p>
<p><code></p>
<p>    RewriteEngine On<br />
    RewriteBase /<br />
    RewriteCond %{REQUEST_URI} ^/shop/(.*)$<br />
    RewriteCond %{REQUEST_URI} ^/blog/(.*)$<br />
    RewriteRule ^.*$ - [L]</p>
<p></code></p>
<p>Now that the contents of the app folder are out on webroot, does this code go into the .htaccess that&#8217;s present there?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mimiCRoSCoPiC^eaRthLinG</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-1448</link>
		<dc:creator>mimiCRoSCoPiC^eaRthLinG</dc:creator>
		<pubDate>Tue, 16 Aug 2011 04:30:41 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-1448</guid>
		<description>Very good tutorial. Helped me setup a common core in one shot. I converted multiple existing apps to this format and all of them worked at the first go - no hiccups :) Thanks dude!</description>
		<content:encoded><![CDATA[<p>Very good tutorial. Helped me setup a common core in one shot. I converted multiple existing apps to this format and all of them worked at the first go &#8211; no hiccups <img src='http://rickguyer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks dude!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaklon</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-1439</link>
		<dc:creator>kaklon</dc:creator>
		<pubDate>Tue, 19 Apr 2011 08:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-1439</guid>
		<description>Under unix, a symbolic link is enough, and it saves you the hassle of modifying index.php</description>
		<content:encoded><![CDATA[<p>Under unix, a symbolic link is enough, and it saves you the hassle of modifying index.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nphp101</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-1365</link>
		<dc:creator>nphp101</dc:creator>
		<pubDate>Sun, 14 Feb 2010 04:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-1365</guid>
		<description>Two thumbs up! GREAT TUTORIAL!
I will link this tutorial to my blog. :d</description>
		<content:encoded><![CDATA[<p>Two thumbs up! GREAT TUTORIAL!<br />
I will link this tutorial to my blog. :d</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-1016</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Fri, 14 Aug 2009 16:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-1016</guid>
		<description>If you are using a later version of PHP &gt; 5.3 you can use symlink now on Windows platforms as well.  This may be the beginning of helper app to quickly roll out sites.</description>
		<content:encoded><![CDATA[<p>If you are using a later version of PHP &gt; 5.3 you can use symlink now on Windows platforms as well.  This may be the beginning of helper app to quickly roll out sites.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ricog</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-729</link>
		<dc:creator>ricog</dc:creator>
		<pubDate>Wed, 27 May 2009 13:46:49 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-729</guid>
		<description>@Subhas Thank you for pointing that out. If the code only runs on Linux servers, symbolic links may be a better option. I haven&#039;t tried it myself, but it may save a few steps.</description>
		<content:encoded><![CDATA[<p>@Subhas Thank you for pointing that out. If the code only runs on Linux servers, symbolic links may be a better option. I haven&#8217;t tried it myself, but it may save a few steps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Subhas</title>
		<link>http://rickguyer.com/cakephp-one-core-many-apps/comment-page-1/#comment-713</link>
		<dc:creator>Subhas</dc:creator>
		<pubDate>Wed, 27 May 2009 02:42:12 +0000</pubDate>
		<guid isPermaLink="false">http://ricoguyer.com/?p=25#comment-713</guid>
		<description>Wouldn&#039;t it be easier to just create a symbolic link to /usr/lib/cakephp? If your on linux that is.</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t it be easier to just create a symbolic link to /usr/lib/cakephp? If your on linux that is.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

