Import users from wordpress
I have successfully setup the kinde authentication for new users on my website and it works, but i need to import older users into kinde.
I am using the Kinde Auth plugin which lets me export the necessary data and import it into kinde.
the csv i download contains rows like
where salt position is
I think this is the issue, because Kinde says that that hashing method is not supported. I tried manually changing it to
I am using the Kinde Auth plugin which lets me export the necessary data and import it into kinde.
the csv i download contains rows like
id,first_name,last_name,email,salt,salt_position,hashed_password,hashing_method,email_verifiedwhere salt position is
prefix and hashing_method is brcypt. Yes that is not a typo, it doesn't say bcrypt but brcypt instead.I think this is the issue, because Kinde says that that hashing method is not supported. I tried manually changing it to
bcrypt : it let me add users this way but when i try to log in it says wrong password. Any idea how to solve this issue?