I'm migrating 40,000+ users from a non-Boonex site to D7. I thought I resolved my password migration issue with some help from here back in D7rc3 when I wrote the migration scripts, but I just realized that my passwords are not working in the D7 Final.
The passwords in my current db are MD5 and I bring them over to the D7 Profiles table using the following query:
SELECT user_id, user_name, user_email, user_password, CONV(FLOOR(RAND()*99999999999999), 10, 36), etc....
I use the CONV function above to create the Salt value.
Once this query is completed, I execute the following script to convert the MD5 format to D7 format:
UPDATE Dolphin.Profiles SET Password = SHA1(CONCAT(Password, Salt)) WHERE ID > 1
I'm using ID > 1 in the query so that I don't change the admin password.
End result is that I can't login with the migrated users using the correct (and verified) passwords. Did the D7 password format change?
Looking for anyone to please help resolve this
Thanks...