Login using an existing Wordpress system

I am switching over a client from a Wordpress site to a site within Wappler that we are developing, however the current users that are in the system are all from Wordpress signups. I don’t want to have all of these recreated.

I am creating a security page and using the MD5 hash option for the password with the salt key from the AUTH_SALT option in the wp_config, however when i test it I am getting a 401 Unauthorized issue.

Is there anything that might be missing or needed to work with this? Do i need to change the database format to work with the Wappler?

http://mymondaymorningcoffee.com/members/login.asp

did you try to use base64_encode on your header of your request ?
It should be that way as far as I remember.

   'Authorization' => 'Basic ' . base64_encode( $username . ':' . $password ),

i Just tried to change if from MD5 Has to base64 from the Cryptographic and it gave me the same error


checking back and seeing if anyone had any suggestions on this

I think what others have done is an email out to the users with a link to change their passwords.

You need to try connect with the api component . so not security provider

Most probably wordpress is using some other hashing algorithm, so it’s better to just have your users change the passwords using any of the available methods in server connect in order to be able to use the security provider.