Here’s how to convert passwords from plain text to the alghorithm used by Magento.
This can result useful when you need to import users from an external application which was managing passwords with no encryption.
First of all a bad news: if you want to import encrypted password ( for example MD5 ), if you don’t have a secure reverse lookup DB you won’t be able to import the customers in the Magento store without resetting their password.
So, let’s assume we already imported the customers from magento import tool and they can’t login because their password don’t fit Magento’s way, which is defined this way ( read it as a PHP developer ):
1
|
|
So, to convert all customers passwords you only need to login into mysql and run a single query:
1 2 |
|
That’s it!