I wanted to let you know the login on Ringo to rate & comment is case sensitive, the phpbb forums on the other hand aren't, so I assume you're doing login based on comparing the login password hash to the one in the database, in this case please also do a comparison of the two variables in lowercase to correct this problem - I thought I got my password wrong for several minuets.
In PHP you would use:
strtolower()
- Code: Select all
if (strtolower($Password) == strtolower($User['Password']))
Or even better - make the login based on email address.
