CakePHP-2.0, cakedc users plugin: It's not login successfully and it's not redirecting

919 Views Asked by At

https://github.com/cakedc/users

I have registered an account successfully with cakedc users plugin and got email to confirm email i click that link from email to confirm email. That is done.

Whatever i type from the http://site/users/login and click the submit button it redirects the same http://site/users/login page.

I have typed the email and the password. If i type wrong password or email, it doesn't give me any message saying that wrong username or password.

routes.php =>

Router::connect('/', array('plugin' => 'users', 'controller' => 'users', 'action' => 'login'));

Router::connect('/users/:action',array('plugin' => 'users', 'controller' => 'users'));

Why can't i login? After login which page it is supposed to redirect to? Did i miss something to configure ? Or is it comparing a plain password with hashed password of users table ?

If you need additional information please mention.

0

There are 0 best solutions below