Without the customer, e-commerce wouldn't be very exciting (or profitable), so a thorough understanding mof the customer as treated by FoxyCart is important for any merchant or developer using FoxyCart.
There are two ways to create a customer record in FoxyCart. The first and most common is to allow the customer record to be created automatically upon a successful transaction. The second method is to create the customer record directly via the API.
Regardless the method of creation, the single most important piece of a customer record is the email address used. The email address can be considered the unique key for the customer; there cannot be two different (non-guest) customer records with the same email address in a single store.
Depending on the store configuration, FoxyCart can allow customers to checkout as guests or to checkout with an account.
Guest customers:
To set up your checkout to use guest customers only, follow the instructions here.
Non-guest customers:
Saved Password Reset
If a user has a previously saved username but forgets their password, the FoxyCart checkout allows for a password reset. The password flow is like this:
The password reset email is only good for 30 minutes, after which time a new email must be requested.
Customers can have one and only one saved payment method associated with their account. If a customer has a subscription associated with his or her account, the checkbox to elect to save the payment method on checkout is required to be checked, and an error explaining this is displayed if it is unchecked.
What is important to note is that if a customer has an active subscription being paid for by credit card xxxx1234 and makes another purchase in the future using card xxx5678, that new card becomes the only saved payment method for the customer, and all active subscriptions will use that new card when they run. (While this may sound problematic, in 3+ years we haven't heard of it being an issue. That said, if you have a situation where multiple separate payment methods are required please let us know.)
Because FoxyCart was built from the ground up to augment and not replace external systems, it is a common occurrence that FoxyCart customer records will need to be created or updated from an external system, or that FoxyCart customers will need to automatically create users in external systems (like a CMS or CRM). Typically an integration like this will primarily use the Transaction XML Datafeed and the API to create and sync users, and Single Sign-On (SSO) to make the customer checkout experience seamless.
While the possibilities for this type of synchronization are near limitless, the single most important thing is usually the customer's password. FoxyCart customer passwords are returned by the XML datafeed and the API as hashes, and not the actual cleartext password. While the initial user creation is generally straightforward it can get tricky to maintain sync when passwords are reset, so if you tackle an advanced integration you must ensure that any and all password resetting functionality on your systems simultaneously updates the FoxyCart customer record through the API.
Password hashes are represented in the API and Datafeed XML as hexadecimal strings, for example “2e29f4fa2efb67dc28860abf
”. Depending on your library's hash functions, you may need to convert the output of the hash function to a hexadecimal string in order to compare passwords. Any “salt” value generated by FoxyCart is a random string of letters and numbers.
FoxyCart currently supports the following hashing methods (in alphabetical order, and in PHP pseudocode, using $
to denote a variable, .
to denote concatenation, and a single quote to encapsulate a string):
Argon2id
:argon2id
BCrypt (with cost)
:bcrypt
$2y$
crypt format, which is always 60 characters wide.concrete5
md5($password.':'.$salt)
Craft CMS
:ExpressionEngine
:joomla
md5($password.$salt).':'.$salt
kohana3
$config['salt_pattern']
value. FoxyCart defaults to the default value in the Auth module.Magento MD5
:md5
md5($password)
md5_salted_suffix
md5($password.$salt)
md5_salted_suffix_2char
md5($password.$salt)
pbkdf2
iterations
, key length
, algorithm
, salt size
. Defaults to 1000, 32, sha1, 16
.“\0” . $salt . $hash
. No separate salt is returned, and the hash should be base64 decoded before encoding the concatenated string.pbkdf2
iterations
, key length
, algorithm
. Defaults to 1000, 32, sha256
.phpass
PasswordHash
class. Defaults to 8, which is what Wordpress and most other systems default to.
; sha1
sha1($password)
sha1_salted_suffix
sha1($password.$salt)
sha256_salted_suffix
:sha256($password.$salt)
sha256_salted_prefix
:sha256($salt.$password)
drupal sha512
:sha512($salt.$password)^$iterations
password_hash()
function, which uses bcrypt, which we support and is detailed below.Webvanta SHA1
:If you need alternate hashing methods please let us know.
Once the user creation and synchronization functionality is handled, Single Sign-On (SSO) allows a customer who's already logged into the merchant's site to continue through to checkout with their user already loaded. This prevents users from needing to log in once to a site, then again on checkout. (SSO checkouts require the CSC to be entered, in order to minimize the risk of a malicious user stealing a cookie and processing an order using saved payment information.)
The customers hashing method is stored against their user record (which you can in turn access via the XML datafeed and the API as well), and that is the hashing method used to validate their password when they login. If you've changed the hashing method from one to another, any existing customers will be validated against their old hashing method on login, and then once they complete a checkout for your store their password will be rehashed with the new hashing method selected in your stores settings.
While a store admin can easily view and filter transactions by a number of criteria (including by customer email) both in the store admin as well as via the API, FoxyCart does not currently provide a method for a customer to view their own order history. We have discussed adding a customer portal in a future version, so if this appeals to you please let us know.
We do have a high-level explanation of how you could accomplish this in the meantime, however, and many of our users have taken an approach like this: Building a Customer Portal in FoxyCart