Forums

Case insensitivity in login

I need help, my local project is able to implement case sensitivity for the login page but my web app does not do this even though I used Django's Auth class. What could be the problem? Is it the database connection? On my local machine I used PosgreSQL and on my webapp I used MySQL.

By default, MySQL databases do case insensitive collations: https://docs.djangoproject.com/en/5.1/ref/databases/#collation-settings has some stuff about changing that.