<?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 for Joseph Crawford</title>
	<atom:link href="http://www.jbcrawford.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jbcrawford.net</link>
	<description>Hello World!</description>
	<lastBuildDate>Fri, 06 Aug 2010 12:33:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Integrating FCKeditor Into CakePHP by Robin Thomas</title>
		<link>http://www.jbcrawford.net/archives/159/comment-page-1#comment-527</link>
		<dc:creator>Robin Thomas</dc:creator>
		<pubDate>Fri, 06 Aug 2010 12:33:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=159#comment-527</guid>
		<description>Now FCKEditor is replaced by CKEditor. So you can see the installation of CKEditor with Cake php in the following URL.

http://www.robinthomas.in/php/ckeditor-cakephp/</description>
		<content:encoded><![CDATA[<p>Now FCKEditor is replaced by CKEditor. So you can see the installation of CKEditor with Cake php in the following URL.</p>
<p><a href="http://www.robinthomas.in/php/ckeditor-cakephp/" rel="nofollow">http://www.robinthomas.in/php/ckeditor-cakephp/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP 1.2.* Auth Component Tutorial by links for 2010-06-11 &#171; Breyten&#8217;s Dev Blog</title>
		<link>http://www.jbcrawford.net/archives/45/comment-page-1#comment-520</link>
		<dc:creator>links for 2010-06-11 &#171; Breyten&#8217;s Dev Blog</dc:creator>
		<pubDate>Fri, 11 Jun 2010 10:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=45#comment-520</guid>
		<description>[...] Joseph Crawford » CakePHP 1.2.* Auth Component Tutorial (tags: phpcake php cake authentication password change howto) [...]</description>
		<content:encoded><![CDATA[<p>[...] Joseph Crawford » CakePHP 1.2.* Auth Component Tutorial (tags: phpcake php cake authentication password change howto) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP 1.2.* Auth Component Tutorial by Erik Oberhausen</title>
		<link>http://www.jbcrawford.net/archives/45/comment-page-1#comment-515</link>
		<dc:creator>Erik Oberhausen</dc:creator>
		<pubDate>Thu, 08 Apr 2010 13:53:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=45#comment-515</guid>
		<description>No problems.
I ended up just doing a redirect from the pages controller that pushes to the users login page.
Not very cake like, I&#039;m sure there is a better way...
Thanks for the reply and thanks again for your helpful article!</description>
		<content:encoded><![CDATA[<p>No problems.<br />
I ended up just doing a redirect from the pages controller that pushes to the users login page.<br />
Not very cake like, I&#8217;m sure there is a better way&#8230;<br />
Thanks for the reply and thanks again for your helpful article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP 1.2.* Auth Component Tutorial by Joseph</title>
		<link>http://www.jbcrawford.net/archives/45/comment-page-1#comment-514</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Thu, 08 Apr 2010 11:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=45#comment-514</guid>
		<description>I think I have ran into that one before but can not remember exactly what was causing it. You should not need to allow your login action...that is handled by the auth components. Try going into the #cakephp channel on irc and see if somebody there can help you out. They have paste bin which makes it much easier for others to help you debug. Sorry I couldn&#039;t give you a right away answer, just woke up and the brain isn&#039;t firing yet, lol.
Good luck, hope you get it working! ~Joseph</description>
		<content:encoded><![CDATA[<p>I think I have ran into that one before but can not remember exactly what was causing it. You should not need to allow your login action&#8230;that is handled by the auth components. Try going into the #cakephp channel on irc and see if somebody there can help you out. They have paste bin which makes it much easier for others to help you debug. Sorry I couldn&#8217;t give you a right away answer, just woke up and the brain isn&#8217;t firing yet, lol.<br />
Good luck, hope you get it working! ~Joseph</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP 1.2.* Auth Component Tutorial by Erik Oberhausen</title>
		<link>http://www.jbcrawford.net/archives/45/comment-page-1#comment-513</link>
		<dc:creator>Erik Oberhausen</dc:creator>
		<pubDate>Wed, 07 Apr 2010 23:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=45#comment-513</guid>
		<description>Joseph, thank you for this very helpful article.
It&#039;s all working well.
One thing I am running into however is when attempting to set the base url from routes, auth is not allowing permission to the login page.
I have this in routes:

Router::connect(&#039;/&#039;, array(&#039;controller&#039; =&gt; &#039;users&#039;, &#039;action&#039; =&gt; &#039;login&#039;));

I get the auth error of &quot;You are not authorized to access that location.&quot;
Also tried adding to app_controller:

if ($this-&gt;name == &#039;Users&#039;) { 
       		 $this-&gt;Auth-&gt;allow(&#039;login&#039;); 
   		 } 

which creates an even weirder behavior where the password field gets some strange value added on submit.
Any ideas would be appreciated!</description>
		<content:encoded><![CDATA[<p>Joseph, thank you for this very helpful article.<br />
It&#8217;s all working well.<br />
One thing I am running into however is when attempting to set the base url from routes, auth is not allowing permission to the login page.<br />
I have this in routes:</p>
<p>Router::connect(&#8216;/&#8217;, array(&#8216;controller&#8217; =&gt; &#8216;users&#8217;, &#8216;action&#8217; =&gt; &#8216;login&#8217;));</p>
<p>I get the auth error of &#8220;You are not authorized to access that location.&#8221;<br />
Also tried adding to app_controller:</p>
<p>if ($this-&gt;name == &#8216;Users&#8217;) {<br />
       		 $this-&gt;Auth-&gt;allow(&#8216;login&#8217;);<br />
   		 } </p>
<p>which creates an even weirder behavior where the password field gets some strange value added on submit.<br />
Any ideas would be appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integrating FCKeditor Into CakePHP by John M.</title>
		<link>http://www.jbcrawford.net/archives/159/comment-page-1#comment-507</link>
		<dc:creator>John M.</dc:creator>
		<pubDate>Thu, 04 Mar 2010 03:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=159#comment-507</guid>
		<description>I have inserted Ckeditor 3.x in my page and i submit my form data (along with the text area)to the controller. I am trying to save data to Mysql database but not able to save. I wonder if this is a correct way of doing it.

Form name = Admin
Field name = content
Controller name = Admins
Modelname = Admin

Mycontroller code:
$grn3 = $this-&gt;data[&#039;Admin&#039;][&#039;content&#039;] ;
$this-&gt;Session-&gt;setFlash($grn3);
$this-&gt;Admin-&gt;set($this-&gt;data ); //setting data to model
$this-&gt;Admin-&gt;saveField(&#039;content&#039;, $grn3);  //saving single field

Setflash method flashes the data content, but save is not working. I am not sure if this is the way of saving text editor data to database. Please show me how to save editor data to database.

Thankx
John M.</description>
		<content:encoded><![CDATA[<p>I have inserted Ckeditor 3.x in my page and i submit my form data (along with the text area)to the controller. I am trying to save data to Mysql database but not able to save. I wonder if this is a correct way of doing it.</p>
<p>Form name = Admin<br />
Field name = content<br />
Controller name = Admins<br />
Modelname = Admin</p>
<p>Mycontroller code:<br />
$grn3 = $this-&gt;data['Admin']['content'] ;<br />
$this-&gt;Session-&gt;setFlash($grn3);<br />
$this-&gt;Admin-&gt;set($this-&gt;data ); //setting data to model<br />
$this-&gt;Admin-&gt;saveField(&#8216;content&#8217;, $grn3);  //saving single field</p>
<p>Setflash method flashes the data content, but save is not working. I am not sure if this is the way of saving text editor data to database. Please show me how to save editor data to database.</p>
<p>Thankx<br />
John M.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple CakePHP CMS (Content Management System) by Perry</title>
		<link>http://www.jbcrawford.net/archives/122/comment-page-1#comment-506</link>
		<dc:creator>Perry</dc:creator>
		<pubDate>Sun, 21 Feb 2010 10:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=122#comment-506</guid>
		<description>&lt;a href=&quot;#comment-271&quot; rel=&quot;nofollow&quot;&gt;@rudy&lt;/a&gt; 
??? I dont understand</description>
		<content:encoded><![CDATA[<p><a href="#comment-271" rel="nofollow">@rudy</a><br />
??? I dont understand</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple CakePHP CMS (Content Management System) by Pedro</title>
		<link>http://www.jbcrawford.net/archives/122/comment-page-1#comment-505</link>
		<dc:creator>Pedro</dc:creator>
		<pubDate>Sun, 21 Feb 2010 10:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=122#comment-505</guid>
		<description>&lt;a href=&quot;#comment-274&quot; rel=&quot;nofollow&quot;&gt;@Joseph&lt;/a&gt; 
Excellent and very usefull approach. Thanks Joseph.</description>
		<content:encoded><![CDATA[<p><a href="#comment-274" rel="nofollow">@Joseph</a><br />
Excellent and very usefull approach. Thanks Joseph.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP 1.2.* Auth Component Tutorial by Joseph</title>
		<link>http://www.jbcrawford.net/archives/45/comment-page-1#comment-504</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 19 Feb 2010 19:17:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=45#comment-504</guid>
		<description>Hello juan,
When you save your user information are you doing it like $this-&gt;User-&gt;save($this-&gt;Auth-&gt;hashPasswords($this-&gt;data)); ?</description>
		<content:encoded><![CDATA[<p>Hello juan,<br />
When you save your user information are you doing it like $this->User->save($this->Auth->hashPasswords($this->data)); ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CakePHP 1.2.* Auth Component Tutorial by juan</title>
		<link>http://www.jbcrawford.net/archives/45/comment-page-1#comment-503</link>
		<dc:creator>juan</dc:creator>
		<pubDate>Fri, 19 Feb 2010 19:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jbcrawford.net/?p=45#comment-503</guid>
		<description>Hi Joseph, it&#039;s a great tutorial, it works perfectly but i have a problem:

I&#039;m using another name for &quot;user&quot; table, &quot;usuarios&quot; in spanish (usuario.php &gt; model, usuarios_controller.php &gt; controller) and i made all the corrections in your code.
It works nice but the password on my mysql table is not hashed, i don&#039;t know why, the add function save the password as i typed in the password text field.

I would appreciate your help with this.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Joseph, it&#8217;s a great tutorial, it works perfectly but i have a problem:</p>
<p>I&#8217;m using another name for &#8220;user&#8221; table, &#8220;usuarios&#8221; in spanish (usuario.php &gt; model, usuarios_controller.php &gt; controller) and i made all the corrections in your code.<br />
It works nice but the password on my mysql table is not hashed, i don&#8217;t know why, the add function save the password as i typed in the password text field.</p>
<p>I would appreciate your help with this.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
