After upgrading from Umbraco 6 to 7 my ValidateUser doesn't work
Hello guys, recently I have updated my Umbraco versions which were from 4.7.1 all the way to version 7, obviously I followed the best way I could to upgrade from version to version, it all went good but when I updated from 6 to 7 whenever I use Membership.ValidateUser(user, password) to then set cookie for the User to navigate to the website, well it doesn't work.
When I use MembershipUser member = Membership.GetUser(userName); or var member = Membership.GetAllUsers(); it retrieves me the information from the Database but it seems that when it needs to validate the form password input by the user and the password from the Database it fails.
I even tried to put useLegacyEncoding="true" but it didn't worked.
After upgrading from Umbraco 6 to 7 my ValidateUser doesn't work
Hello guys, recently I have updated my Umbraco versions which were from 4.7.1 all the way to version 7, obviously I followed the best way I could to upgrade from version to version, it all went good but when I updated from 6 to 7 whenever I use
Membership.ValidateUser(user, password)
to then set cookie for the User to navigate to the website, well it doesn't work.When I use
MembershipUser member = Membership.GetUser(userName);
orvar member = Membership.GetAllUsers();
it retrieves me the information from the Database but it seems that when it needs to validate the form password input by the user and the password from the Database it fails.I even tried to put
useLegacyEncoding="true"
but it didn't worked.I have this in my web.config
I even reset the password and it didn't work out, can you guys help me out with this?
is working on a reply...