@steve, for the user you inserted using mysql dump, the password field encryption function needs to be md5. This is one problem I also faced. I had to set the function to md5.
To create a login form with admin prefix, you need to pass the url option in form as something like this:- url => array( 'controller' => 'users', 'action' => 'login', 'admin' => true) then use auth component in users controller -> admin_login function basically whenever you set 'admin' => true, it automatically checks for admin_prefix function. On Fri, May 10, 2013 at 2:19 PM, steve van christie < [email protected]> wrote: > thank you so much for your pointer divyanshu das, i've followed the > tutorial on book, but found a strange things. i can't login with the user > i've inserted via mysql dump. for the users i've input via form can login. > actually i'm generated the code via cake bake (cake bake model all, cake > bake controller all --admin, cake bake view -all). the things that i want > to achieve here is create the login form for admin prefix and then redirect > all the admin function (CRUD). any ideas, suggestions or pointers? > > thank you so much in advance > > best regards > > -- > 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 a topic in the > Google Groups "CakePHP" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/cake-php/otbwtUZ0RFI/unsubscribe?hl=en. > To unsubscribe from this group and all its topics, 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?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Regards Divyanshu Das, AlphaBeta Labs, Bangalore, India Contact# 9591999094 -- 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?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
