How to login in admin panel in croogo cakephp framwork

380 views Asked by At

Hi i am lost my login detail how to change password from phpmyadmin. I am change users table give password in password field in hash but it does not open dashboard it show invalid user or password.

1

There are 1 answers

0
hamdalaye On

I think you must check if this is not an encoding problem, Croogo encrypt the passwords before saving it and if you change your password in database it will not match.

You can try to using Croogo shell to reset password by :

$ ./Console/cake users.users reset admin password

More details and documentation here.

Hope that will help you..