I need help on migrating users from a website built using Symfony2 to Silverstripe 3.
I got a table of users from a symfony built website with sha1 hashed passwords and salts. I want to import the users to a freshly setup Silverstripe 3 website. I tried to insert a sample entry to SS3s Member table by manually inserting the hashed password, the salt and changed the password encryption algorithm to sha1
but it didn't work. I also tried using Security::set_password_encryption_algorithm
in my _config.php
to override the password encryption from blowfish to sha1
but it doesn't seem to change the password algorithm.
I really need help on this since I only have a few days left to deliver the project. Any ideas on how I should do the migration?