On one of my websites that use ShopSite it relies on the Customer Registration system of ShopSite. We would like to use ShopSite's customer registration system on the rest of the website so that a user only has to log in once. So I want our PHP applications to access the ShopSite database and be able to verify if the user name and password the user entered in is correct.
Is this possible?
It appears passwords are hashed in the database. Is that correct?
Accessing Customer Registration System
-
- Posts: 463
- Joined: Fri Aug 04, 2006 5:46 pm
- Location: Connecticut
- Contact:
Currently there is not a customer registration API. You can use SQLite to query the actual database, but the passwords are hashed/encrypted, so you cannot compare/use them with an outside application.
LexiConn
[url=http://lexiconn.com]ShopSite Host[/url]
[url=http://lexiconn.com/whitepapers.html]How to Get the Most Out of ShopSite[/url]
[url=http://lexiconn.com]ShopSite Host[/url]
[url=http://lexiconn.com/whitepapers.html]How to Get the Most Out of ShopSite[/url]
-
- Posts: 41
- Joined: Sun Oct 11, 2009 3:19 pm
- Location: USA
-
- Posts: 35
- Joined: Mon Sep 29, 2008 9:36 am
Thanks robm. I was afraid that was going to be the answer. It would be really nice if ShopSite provided an API for accessing the customer registration system, so that we can integrate it in with the rest of the website. In my case, this means our users will need to maintain two sets of login information for our website.robm wrote:Currently there is not a customer registration API. You can use SQLite to query the actual database, but the passwords are hashed/encrypted, so you cannot compare/use them with an outside application.