What is actually the issue here? Do you see the login information in the cookie or do you just see that the cookie is there? In order to know the session of the current user, a session-cookie is stored on the users computer. Is this the one you are worried about? Enjoy, John
On 12 Nov., 15:15, Muhaimen Ezabbad <[email protected]> wrote: > Amit, > > Thanks for the reply, > > Amit, Team, > > I'm using 1.3.5 Stable version. > > BTW, I also created a new empty project with two tables, items and > users > > in the AppController I wrote: > > var $components=array('Auth'); > > function beforeFilter() { > $this->Auth->loginRedirect = > array('controller'=>'items','action'=>'index'); > $this->Auth->logoutRedirect = > array('controller'=>'users','action'=>'login'); > $this->set('loggedIn',$this->Auth->user('id')); > //$this->Auth->allow('signup'); > } > > function isAuthorized() { > //parent::isAuthorized(); > return true; > } > > and I didn't write anything in the login function in the > UserController. > > My problem again the login informations stored in the cookies !!!!, > I don't want to store these data without the user confirmation. > > Thanks for your help > [snip] Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
