Re: CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread Pillow
On 5 Lip, 19:38, danfreak <[EMAIL PROTECTED]> wrote: > Try this then in your app_controller: > > -- > $this->Auth->allow('*'); > -- > > It should work as

Re: CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread danfreak
Try this then in your app_controller: -- $this->Auth->allow('*'); -- It should work as wildcard for every action. Dan On 5 Lug, 18:24, Pillow <[EMAIL

Re: CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread Pillow
On 5 Lip, 15:33, danfreak <[EMAIL PROTECTED]> wrote: > Dunno if this can help, but I managed as explained in the following > post: > > =>http://groups.google.com/group/cake-php/t/871ff4c536bc1e00 Thanks for this post, it helped mi very much to get familiar with Auth component :) However, I don't

Re: CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread danfreak
Dunno if this can help, but I managed as explained in the following post: => http://groups.google.com/group/cake-php/t/871ff4c536bc1e00 Dan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To pos

Re: CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread Pillow
I've tried already, anything changes... On 5 Lip, 14:59, "Chris Hartjes" <[EMAIL PROTECTED]> wrote: > On 7/5/07, Pillow <[EMAIL PROTECTED]> wrote: > Try $this->Auth->validate = false --~--~-~--~~~---~--~~ You received this message because you are subscribed to th

Re: CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread Chris Hartjes
On 7/5/07, Pillow <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm trying to use new Auth component. I've got problem with > Auth::validate. I want to use my own validation, not 'actions' or > 'objects'. So, as it stands in the comment, in beforeFilter() of my > appController I do: > > $this -> Auth ->

CakePHP 1.2 + Auth component (Auth::validate)

2007-07-05 Thread Pillow
Hi, I'm trying to use new Auth component. I've got problem with Auth::validate. I want to use my own validation, not 'actions' or 'objects'. So, as it stands in the comment, in beforeFilter() of my appController I do: $this -> Auth -> validate = null; However, it doesn't work (maybe I'm wrong?)