The default users created shows authentication failure though the new users is successfully logging in. The password length for default users and created users is showing different length.
The $dbpassword and hash_password is not giving same and thus the login verification failed
The default users created shows authentication failure though the new users is successfully logging in. The password length for default users and created users is showing different length.
The $dbpassword and hash_password is not giving same and thus the login verification failed
inside module/users/ion_auth_model.php
if ($db_password == $hash_password_db->password) { 308 return TRUE; 309 } else { 310 return FALSE; 311 }
the $db_password and $hash_password_db->password is printing different result and thus not allowing successful login