<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>CakePHP Google Group</title>
  <link>http://groups.google.ch/group/cake-php</link>
  <description>Search this group before posting anything it&amp;#39;s very likely your question has already been answered. Checkout the new CakePHP Questions site: http://cakeqs.org Visit the IRC channel #cakephp at irc.freenode.net. This group is moderated, so please be patient if you are new member. </description>
  <language>en</language>
  <item>
  <title>Re: Creating a simple search form</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/313ba27772611c70/b1fe802daa12ef9c?show_docid=b1fe802daa12ef9c</link>
  <description>
  The variable is being destroyed when you redirect. I would change the action to one that finds the data (in your example this is process). Check for $this-&amp;gt;data. If it&#39;s empty there are no search criteria so redirect to your search page. If it&#39;s not empty, do your find and put the results into a variable ($results?). Then have a view called process.ctp (at this point, having a function and view called process sounds wrong - &#39;results&#39; sounds more intuitive?). In the view, you can pick up your $results and display them.
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/313ba27772611c70/b1fe802daa12ef9c?show_docid=b1fe802daa12ef9c</guid>
  <author>
  jeremybu...@me.com
  (Jeremy Burns)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 12:45:12 UT
</pubDate>
  </item>
  <item>
  <title>Creating a simple search form</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/313ba27772611c70/c6506d55c8554d48?show_docid=c6506d55c8554d48</link>
  <description>
  Hi, I&#39;m new in using cakephp &lt;br&gt; I&#39;m trying to create a simple search form for user table (namely &lt;br&gt; people),where I input the id, and then a page displaying the result will &lt;br&gt; show up...Here&#39;s I&#39;ve come up with: &lt;br&gt; CREATE TABLE `people` ( &lt;br&gt; `id` int(10) unsigned NOT NULL auto_increment, &lt;br&gt; `name` varchar(30) NOT NULL,
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/313ba27772611c70/c6506d55c8554d48?show_docid=c6506d55c8554d48</guid>
  <author>
  nashrullah_a...@yahoo.com
  (aveev)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 12:32:54 UT
</pubDate>
  </item>
  <item>
  <title>Re: cache is messing up cookies and session???</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/c92224ffa79e31a9/42c30a81d0b4f7e5?show_docid=42c30a81d0b4f7e5</link>
  <description>
  this is reproducible by everybody.... &lt;br&gt; i have to refresh page to get right cookie information. &lt;br&gt; how can I get right cookie information without refreshing?
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/c92224ffa79e31a9/42c30a81d0b4f7e5?show_docid=42c30a81d0b4f7e5</guid>
  <author>
  leafchild.b...@gmail.com
  (leafchild book)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 10:55:48 UT
</pubDate>
  </item>
  <item>
  <title>Re: Sort with random order</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/cabcd3de37781ebf/210eb943bc8d0d3d?show_docid=210eb943bc8d0d3d</link>
  <description>
  Yep - each page would be different, rather than the whole set &lt;br&gt; randomised. A better bet would be to randomly sort a list of ids for &lt;br&gt; the entire table, then custom paginate that. &lt;br&gt; You could store this random array of ids in the session, or perhaps &lt;br&gt; cache the list of ids with a random string which is appended to the
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/cabcd3de37781ebf/210eb943bc8d0d3d?show_docid=210eb943bc8d0d3d</guid>
  <author>
  jmbenn...@gmail.com
  (Jon Bennett)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 10:37:45 UT
</pubDate>
  </item>
  <item>
  <title>Re: Sort with random order</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/cabcd3de37781ebf/b13ce137df9d6318?show_docid=b13ce137df9d6318</link>
  <description>
  if ($this-&amp;gt;params[&#39;named&#39;][&#39;sort&#39; ] === &#39;RAND()&#39;) { // or any sting you &lt;br&gt; choose &lt;br&gt; $this-&amp;gt;pagainte[&#39;sort&#39;] = &#39;RAND()&#39;; &lt;br&gt; But unless you&#39;ve got only 1 page of results I doubt that&#39;s really &lt;br&gt; what you want (hint - click sort*, click page 2, click page 1*. * they &lt;br&gt; won&#39;t be the same and more importantly there will be results you may
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/cabcd3de37781ebf/b13ce137df9d6318?show_docid=b13ce137df9d6318</guid>
  <author>
  andydawso...@gmail.com
  (AD7six)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 10:05:24 UT
</pubDate>
  </item>
  <item>
  <title>Re: Complex form with fields belonging to fields that belong to the top table</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/698378230fb6c5d9/7e6a78abb3f22626?show_docid=7e6a78abb3f22626</link>
  <description>
  I regularly stare at a problem so long that I become code blind and &lt;br&gt; miss the most obvious things. Just make sure you remember for next &lt;br&gt; time, and there will be a a next time :)
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/698378230fb6c5d9/7e6a78abb3f22626?show_docid=7e6a78abb3f22626</guid>
  <author>
  p...@webbedit.co.uk
  (WebbedIT)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 08:53:23 UT
</pubDate>
  </item>
  <item>
  <title>Re: cache is messing up cookies and session???</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/c92224ffa79e31a9/4167d4da6fe13650?show_docid=4167d4da6fe13650</link>
  <description>
  I would think that this is an issue with the browser cache! &lt;br&gt; Enjoy, &lt;br&gt; John &lt;br&gt; [snip]
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/c92224ffa79e31a9/4167d4da6fe13650?show_docid=4167d4da6fe13650</guid>
  <author>
  j.andersen...@gmail.com
  (John Andersen)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 07:57:46 UT
</pubDate>
  </item>
  <item>
  <title>Re: Bake Screencast not Working?</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/85b62843ef0d3646/1f66445f877eecc3?show_docid=1f66445f877eecc3</link>
  <description>
  I got this same problem, and after viewing the file directly, I am &lt;br&gt; extremely disappointed that I had to go through the hassle of filling &lt;br&gt; my comp with garbage like QuickTime just to have some guy show me how &lt;br&gt; to update my PATH variable. *facepalm* &lt;br&gt; Why this isn&#39;t on a youtube video is beyond me.
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/85b62843ef0d3646/1f66445f877eecc3?show_docid=1f66445f877eecc3</guid>
  <author>
  hyperfle...@gmail.com
  (Johnny Ferguson)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 07:57:19 UT
</pubDate>
  </item>
  <item>
  <title>Re: Setting up trunk: No CSS or images</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/786d7d13e6aa9514/6f493aa70c99dd6f?show_docid=6f493aa70c99dd6f</link>
  <description>
  Okay, found the solution, and feel a bit foolish about it :). &lt;br&gt; I&#39;ve been searching for answers in .htaccess files, apache conf etc., but &lt;br&gt; the answer is really simple. &lt;br&gt; The move command in linux by default does not move the hidden files. I was &lt;br&gt; using the following commands: &lt;br&gt; ~/webprojects/testcake $ mkdir trunk
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/786d7d13e6aa9514/6f493aa70c99dd6f?show_docid=6f493aa70c99dd6f</guid>
  <author>
  plasty.gr...@gmail.com
  (Plasty Grove)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 04:19:19 UT
</pubDate>
  </item>
  <item>
  <title>Auth component not returning expected array key??</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/306da0c1855056f1/00fae9db994ea123?show_docid=00fae9db994ea123</link>
  <description>
  So I am currently trying to migrate to Cake 1.3RC2. Everything is going &lt;br&gt; well, except the array that is being returned when I call &lt;br&gt; $this-&amp;gt;Auth-&amp;gt;user(). If I am navigating to my user page, the array key is: &lt;br&gt; Array ( [User] =&amp;gt; Array ( etc..)) &lt;br&gt; But when I am navigating to any of my other pages it comes in as:
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/306da0c1855056f1/00fae9db994ea123?show_docid=00fae9db994ea123</guid>
  <author>
  mjgai...@gmail.com
  (Michael Gaiser)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 04:13:06 UT
</pubDate>
  </item>
  <item>
  <title>redirect to anchor link for form validation</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/a5742a0fa59093b6/abc339e969764453?show_docid=abc339e969764453</link>
  <description>
  Hi, &lt;br&gt; I&#39;ve successfully set up a contact form in cakePHP, and when &lt;br&gt; validation rules in my model don&#39;t pass, the form is reloaded with all &lt;br&gt; my validation errors displayed properly. That battle was won :) &lt;br&gt; Now for the tricky part. &lt;br&gt; Can anyone think of a way to not only have the form page reload with &lt;br&gt; error messages, but jump to an anchor link at the top of the form if
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/a5742a0fa59093b6/abc339e969764453?show_docid=abc339e969764453</guid>
  <author>
  hyperfle...@gmail.com
  (Johnny Ferguson)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 03:45:48 UT
</pubDate>
  </item>
  <item>
  <title>Re: Sort with random order</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/cabcd3de37781ebf/e30fd6947e4ea1c3?show_docid=e30fd6947e4ea1c3</link>
  <description>
  *push* :/
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/cabcd3de37781ebf/e30fd6947e4ea1c3?show_docid=e30fd6947e4ea1c3</guid>
  <author>
  onkeljud...@googlemail.com
  (Onkel Judith)
  </author>
  <pubDate>Sat, 20 Mrz. 2010 00:04:08 UT
</pubDate>
  </item>
  <item>
  <title>Re: cache is messing up cookies and session???</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/c92224ffa79e31a9/9302eb579cfd4803?show_docid=9302eb579cfd4803</link>
  <description>
  I said cache is messing up but not 100% sure but it&#39;s obvious that &lt;br&gt; cookie&#39;s info is not update unless page is refreshed &lt;br&gt; How can I get right cookie info without refreshing page after user update &lt;br&gt; shopping cart or their billing info.
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/c92224ffa79e31a9/9302eb579cfd4803?show_docid=9302eb579cfd4803</guid>
  <author>
  leafchild.b...@gmail.com
  (leafchild book)
  </author>
  <pubDate>Fri, 19 Mrz. 2010 23:05:12 UT
</pubDate>
  </item>
  <item>
  <title>Re: Complex form with fields belonging to fields that belong to the top table</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/698378230fb6c5d9/be9c8287a0d026d8?show_docid=be9c8287a0d026d8</link>
  <description>
  I was incredibly dumb and putting it in the wrong part of the &lt;br&gt; function. Thank you for your help!
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/698378230fb6c5d9/be9c8287a0d026d8?show_docid=be9c8287a0d026d8</guid>
  <author>
  gillian....@gmail.com
  (Gillian)
  </author>
  <pubDate>Fri, 19 Mrz. 2010 22:33:55 UT
</pubDate>
  </item>
  <item>
  <title>Re: Cake-Shell and Components</title>
  <link>http://groups.google.ch/group/cake-php/browse_thread/thread/028f94ed3fdba895/1e19677761130715?show_docid=1e19677761130715</link>
  <description>
  This is how I have done it as well. The difference between the Shell &lt;br&gt; and the cake website is the Shell loads pretty much nothing for you. &lt;br&gt; The Cake Magic is fairly week at the shell level. I don&#39;t think that &lt;br&gt; is a bad thing, but you do have to load up and build bind your objects &lt;br&gt; using standard php techniques.
  </description>
  <guid isPermaLink="true">http://groups.google.ch/group/cake-php/browse_thread/thread/028f94ed3fdba895/1e19677761130715?show_docid=1e19677761130715</guid>
  <author>
  mdc...@gmail.com
  (LunarDraco)
  </author>
  <pubDate>Fri, 19 Mrz. 2010 20:39:00 UT
</pubDate>
  </item>
  </channel>
</rss>
