<?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"
	>
<channel>
	<title>Comments on: Single User Admin Area Authentication with CakePHP</title>
	<atom:link href="http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/feed/" rel="self" type="application/rss+xml" />
	<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/</link>
	<description>Shane Shepherd: web design and development; music</description>
	<pubDate>Fri, 21 Nov 2008 10:31:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Shane</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-22080</link>
		<dc:creator>Shane</dc:creator>
		<pubDate>Sun, 13 Jul 2008 18:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-22080</guid>
		<description>@sganassa - You can still download it directly from the authors site:

http://cakephp.seesaa.net/article/20317502.html</description>
		<content:encoded><![CDATA[<p>@sganassa - You can still download it directly from the authors site:</p>
<p><a href="http://cakephp.seesaa.net/article/20317502.html" rel="nofollow">http://cakephp.seesaa.net/article/20317502.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sganassa</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-22079</link>
		<dc:creator>sganassa</dc:creator>
		<pubDate>Sun, 13 Jul 2008 18:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-22079</guid>
		<description>link to http://cakeforge.org/snippet/detail.php?type=snippet&#38;id=92 is broken!

How make I download sd_auth component?</description>
		<content:encoded><![CDATA[<p>link to <a href="http://cakeforge.org/snippet/detail.php?type=snippet&amp;id=92" rel="nofollow">http://cakeforge.org/snippet/detail.php?type=snippet&amp;id=92</a> is broken!</p>
<p>How make I download sd_auth component?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-14187</link>
		<dc:creator>Shane</dc:creator>
		<pubDate>Tue, 08 May 2007 16:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-14187</guid>
		<description>@Vangelis - Did you remember to add the adminAuth function to your AppController class?</description>
		<content:encoded><![CDATA[<p>@Vangelis - Did you remember to add the adminAuth function to your AppController class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vangelis</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-14178</link>
		<dc:creator>Vangelis</dc:creator>
		<pubDate>Tue, 08 May 2007 11:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-14178</guid>
		<description>It didn't work for me ....
"Call to undefined method BlogsController::adminAuth()"</description>
		<content:encoded><![CDATA[<p>It didn&#8217;t work for me &#8230;.<br />
&#8220;Call to undefined method BlogsController::adminAuth()&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-659</link>
		<dc:creator>Shane</dc:creator>
		<pubDate>Mon, 17 Jul 2006 23:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-659</guid>
		<description>@Shunro - Thanks for sharing this;  I'll test it out on my next project!</description>
		<content:encoded><![CDATA[<p>@Shunro - Thanks for sharing this;  I&#8217;ll test it out on my next project!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shunro dozono</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-655</link>
		<dc:creator>shunro dozono</dc:creator>
		<pubDate>Mon, 17 Jul 2006 05:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-655</guid>
		<description>Hello, I just tested this code. By this code, you don't have to call adminAuth().
-----------------------------------
class AppController extends Controller {

	var $components = array('SdAuth');

	function beforeFilter()
	{

		//for CAKE_ADMIN(admin) rooting.
		if(defined('CAKE_ADMIN') &#38;&#38; !empty($this-&#62;params['admin'])){
		//start admin check.
			if($this-&#62;SdAuth-&#62;isloggedin() == FALSE)
			{
				$this-&#62;layout = "login";
			} else {
				$this-&#62;layout = "admin_default";
			}
		}</description>
		<content:encoded><![CDATA[<p>Hello, I just tested this code. By this code, you don&#8217;t have to call adminAuth().<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
class AppController extends Controller {</p>
<p>	var $components = array(&#8217;SdAuth&#8217;);</p>
<p>	function beforeFilter()<br />
	{</p>
<p>		//for CAKE_ADMIN(admin) rooting.<br />
		if(defined(&#8217;CAKE_ADMIN&#8217;) &amp;&amp; !empty($this-&gt;params['admin'])){<br />
		//start admin check.<br />
			if($this-&gt;SdAuth-&gt;isloggedin() == FALSE)<br />
			{<br />
				$this-&gt;layout = &#8220;login&#8221;;<br />
			} else {<br />
				$this-&gt;layout = &#8220;admin_default&#8221;;<br />
			}<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard@Home &#187; Blog Archive &#187; links for 2006-07-16</title>
		<link>http://shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-650</link>
		<dc:creator>Richard@Home &#187; Blog Archive &#187; links for 2006-07-16</dc:creator>
		<pubDate>Sun, 16 Jul 2006 05:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.shepherdweb.com/2006/07/14/single-user-admin-area-authentication-with-cakephp/#comment-650</guid>
		<description>[...] shepherdweb.com » Single User Admin Area Authentication with CakePHP » Shane Shepherd: web design and development; music Simple admin pages with CakePHP (tags: cakephp admin tutorial) [...]</description>
		<content:encoded><![CDATA[<p>[...] shepherdweb.com » Single User Admin Area Authentication with CakePHP » Shane Shepherd: web design and development; music Simple admin pages with CakePHP (tags: cakephp admin tutorial) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
