Why would check_password(..) return True but authenticate(.., ..) never return user?
See this session in a Django shell below... >>> u <User: xx> >>> u.username 'xx' >>> u.password 'pbkdf2_sha256$100000$f3zIUwPXtnEM$zbQdcgPNgRi6CBPQu8wlRg4T7egH80S9bnL0FPunZRo=' >>> u.check_password("yy") True >>> django.contrib.auth.authenticate(username="xx", password="yy") >>> -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8e4ce1d6-d997-4f4e-b100-40082343d960%40googlegroups.com.