That is most probably becuase you are calling $this->Auth->login($data); 
The login method will log users in when you pass an argument to it. If you 
want authentication to be checked against database, just call 
$this->Auth->login() without arguments

On Wednesday, August 6, 2014 10:59:15 AM UTC+2, Stephen S wrote:
>
> What you have looks fine to me, first thing I would do is the following:
>
> public function isAuthorized($user) {
>     pr($user);
>     die();
> }
>
> If isAuthorized gets called it'll kill the process and you can see the 
> output of user, if not something went wrong before then and we may need 
> more info to help.
>
>
> On 6 August 2014 09:41, Hakim Miah <[email protected]> wrote:
>
>> Delete and start again and follow the example exactly in the cakephp 
>> documentation...
>>
>>
>> On Tuesday, 5 August 2014 08:38:19 UTC+1, ajt wrote:
>>>
>>> This function wont work as I get no output
>>>
>>>  public function isAuthorized($user) {
>>>             // Admin can access every action
>>>             debug($user['role']);
>>>             debug("asdddddddddddddddddddddddddd");
>>>
>>>>
>>>>
>>>>  -- 
>> Like Us on FaceBook https://www.facebook.com/CakePHP
>> Find us on Twitter http://twitter.com/CakePHP
>>
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "CakePHP" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected].
>> To post to this group, send email to [email protected].
>> Visit this group at http://groups.google.com/group/cake-php.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Kind Regards
>  Stephen Speakman
>  

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/cake-php.
For more options, visit https://groups.google.com/d/optout.

Reply via email to