revehead Posted April 2, 2008 Share Posted April 2, 2008 Hello everybody, at the first: thank you and congratulations to releasing v1.0. I've got 2 topics: 1. I need to import list of my customers and with this i'm succesfull. But: the password (the "passwd" column in myPHP) is coded so it causes that i am not able to log in with old password (which is imported uncoded, of course). And there is similar column "security_key" - it is also coded, and i don't know whether it couldn't cause some problems in the future...? 2. Where is my Cash On Delivery payment method? ;-) Thanks a lot! Link to comment Share on other sites More sharing options...
dtruni Posted July 11, 2008 Share Posted July 11, 2008 Securitykey seems to be: MD5 key of Birthday.But, how is the Password encoded in the Database? A simple MD5 key does not work … I need to know how to import User-Passwords from another database. Any ideas? Link to comment Share on other sites More sharing options...
Bruno Leveque Posted July 11, 2008 Share Posted July 11, 2008 Securitykey seems to be: MD5 key of Birthday. No$this->secure_key = md5(uniqid(rand(), true)); Link to comment Share on other sites More sharing options...
mEcommerce Posted July 11, 2008 Share Posted July 11, 2008 Bruno,I don't know what is going wrong, but code doesnt get formatted correctly;Using code; $this->secure_key = md5(uniqid(rand(), true)); Using quote; $this->secure_key = md5(uniqid(rand(), true)); edit: nvm its fixed now Link to comment Share on other sites More sharing options...
dtruni Posted July 11, 2008 Share Posted July 11, 2008 Well … so when importing users (Customers) from an external database, I don't need any Password or SecureKey, would this work? Afterwards one can simple send each User a new password (using the Loginform), right? Link to comment Share on other sites More sharing options...
Bruno Leveque Posted July 16, 2008 Share Posted July 16, 2008 Right Link to comment Share on other sites More sharing options...
Recommended Posts