The passwords after migration donot work.Since drupal 6 uses md5 and drupal 7 sha512,i guess this problem exists.There should be a method to handle this case while migrating user passwords.
The passwords after migration donot work.Since drupal 6 uses md5 and drupal 7 sha512,i guess this problem exists.There should be a method to handle this case while migrating user passwords.
Comments
Comment #1
mikeryanComment #2
mikeryanComment #3
moshe weitzman commentedDrupal 7 handles this during upgrade (converted, but weaker passwords) and again at login time. IIRC. Look at the upgrade path for this code.
Comment #4
geerlingguy commentedSubscribe.
Comment #5
mikeryanCommitted - if your source passwords are MD5, then indicate so when creating your destination:
This will mimic the effect of the D6->D7 upgrade.
Comment #6
geerlingguy commentedNice.