Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 10-01-2019 09:49:47

sqm24
Member
Registered: 01-24-2018
Posts: 47

Importing Users

Hi,

Kryptronic is a new shopping cart for us and we want to be able to import our uses from our old cart to the new kryptronic one. We will be able to create a cvs file with the data we have, but the issue is the password. What PHP method is used to encrypt the password?

Thanks.

Offline

 

#2 10-02-2019 08:00:57

webmaster
Administrator
From: York, PA
Registered: 04-20-2001
Posts: 19798
Website

Re: Importing Users

The passwords are MD5 hashes, so use the md5() function to hash them as in:

Code:

$hashedpassword = md5($plainpassword);

Nick Hendler

Offline

 

Board footer