How to export customers from Magento into WooCommerce (wordpress)

I’m in the process of moving Magento store into WooCommerce.

The problem is that Magento and WordPress has different password autentificacion algorithm.

Read More

The way magento store the password: md5($salt.$password).':'.$salt;

The way WordPress store the password: md5($password)

Is there way to export existing Magento customers into worpdress and keep their passwords ?

Related posts

Leave a Reply

2 comments

  1. Since that is a one way encryption that would not be possible. Your best bet would be to modify the WordPress store to use the same encryption used by Magento.