Account setup FAQs

Main Content
What are the values I need to set in my links?
How do I get a Continue Shopping button in the cart?
I get a 405 error when I click on the Continue Shopping button
What is the Review Cart Content link?
Can I use a POST set instead?
Can I use HTML in my header and footer messages?
I've lost my password
I'm not getting my order notifications by email
I get an error message "Userid not set".
ERROR: Link verification failed
Where can I find a list of ISO country codes?
Can the cart collect card CVV numbers?

 

What are the values I need to set in my links?

The URL for the main "add to the cart" link is:

http://ww#.aitsafe.com/cf/add.cfm?

After the ?, question mark, you need to set these fields:

  • userid - Your username
  • product - A short description of the product for the cart
  • price - Just the number, no currency symbol
  • qty - A quantity, the default is 1, optional
  • return - A URL for a return link, optional

Your link should look something like this:

<A HREF="http://ww#.aitsafe.com/cf/add.cfm?userid=gg12345&
product=Product+description&price=29.50"> Buy Now </A>

Note: there should be no spaces in the link, it should be on one line.


How do I get a Continue Shopping button in the cart?

You need to add the optional field "return" into all your links to the cart. That includes your Review cart links as well as your Buy Now buttons.

The return field can be set to any page at your website:

...&return=www.yoursite.com/page.htm

or for a form

<input type=hidden name=return value=www.yoursite.com/page.htm>

Some people have had problems when the return link points to a directory, www.yoursite.com/dir , instead of a file.


I get a 405 error when I click on the Continue Shopping button

This means your web server won't accept a form POST for that page, that method is often reserved only for scripts and doesn't work with ordinary web pages. The fix is to login to Admin and set it back to a GET in the cart setup (Cart setup > Button styles and behaviour).


What is the Review Cart Content link?

To see the cart at any time your customers can follow this link:

<A HREF="http://ww#.aitsafe.com/cf/review.cfm?userid=your_userID"> Review Cart </A>

We recommend that you use the same link when your customer wishes to finish and pay.


Can I use a POST set instead?

Yes you can. What this means is you link to the cart using a HTML form instead of an ordinary hyperlink. You need to set at least your username, the product description and the price again, for example;

<FORM METHOD="POST" ACTION="http://ww#.aitsafe.com/cf/add.cfm">
<INPUT TYPE="HIDDEN" NAME="userid" VALUE="gg12345">
<INPUT TYPE="HIDDEN" NAME="product" VALUE="North Atlantic Marine Chart">
<INPUT TYPE="HIDDEN" NAME="price" VALUE="29.50">
<INPUT TYPE="SUBMIT"> </FORM>

You can add something to the cart using a drop down list, radio buttons or any HTML form tag. For example like this;

Choose the color of boat you want:

PRICE : $12,000

Can I use HTML in my header and footer messages?

Yes you can. The length of the fields for these messages is restricted to 255 characters and some HTML tags take up a lot of space. There is certainly room for <font face="Arial"> type tags though.

 


I've lost my password

All accounts have two passwords. One is for login to Admin, the Login password, and the other is for access to data collected from customers securely, the Secure or Payments password. The Login password is issued when the account is first created and you can change it in Admin. The Payment password is created the first time you login and can only be reset.

If you lose either password: click here...


I'm not getting my order notifications by email

You will not receive an email notification with payment systems where the final thank you page is not hosted by the cart. We can't send you an email notification of an order if we don't know if there is one....

With PayPal standard you will need to select the IPN option on the PayPal setup page if you want the cart to send you an email when the customer pays.

The first thing to do is to check your email address very, very carefully. It's too easy to make a mistake; we all do it from time to time. Also don't forget that email can sometimes take hours to arrive. That's perfectly normal and just means your ISP's mail server is under maintenance.

However, it is an unfortunate fact that these notifications look almost identical to spam (in some ways they are!) and more and more ISPs are now blocking this type of message. The only thing you can do is either change email addresses or ask your ISP to create an exception for email originating from mail.mals-e.net.

Finally, email as a protocol is not 100% reliable. Most ISPs reckon to lose about 1 in 100 emails simply because of down-time on their mail or DNS servers. Some errors will mean that a message will be queued for up to five days but others will result in it being dropped immediately.

Free email addresses from yahoo.com or hotmail.com generally work quite well as these people have our mail server whitelisted.


I get an error message "Userid not set".

Firstly, have you logged into Admin and setup the cart yet?

If you have then you have a syntax problem in your links, usually when they are made with a hyperlink. Look at the source code in your browser. Common problems are:

  • A space or line break in the middle of the query string
  • & being replaced by &amp;
  • The field name is case sensitive and should be userid. For example; not Userid.
  • Are you sure that is your username?
  • You are using the wrong hostname; www#.aitsafe.com instead of ww#.aitsafe.com.

ERROR: Link verification failed

Login to Admin and go to Cart Setup >> Link verification, uncheck the checkbox and hit submit. If you are using mButton, remove anything you have entered in the Security code box, at least until you have read the related support file and know what it does! Remove the field named hash from your Buy Now links.


Country codes

Many payment processors, including PayPal, require that the cart passes the country over as two letter ISO code. In that case the cart will use a drop downlist for the customer to select their country. Click here to view the list of ISO countries.


Can the cart collect card CVV numbers?

Collecting and storing CVV numbers for manual card processing is a breach of PCI (Payment card industry) standards and is strictly prohibited. Visa and Mastercard have threatened big fines on those caught doing so.

To use a CVV number as part of the checkout process you need to hookup the cart directly to a payment gateway service. The number is then passed on directly to the bank, via the gateway, and is not stored by either the gateway or the cart.

A CVV is not required for processing a credit card. However some card terminals are configured to require a CVV number for a "card not present" transaction, effectively precluding their use for manually processing cards for online sales.

Guidelines for which parts of a card may be stored are specified on page 15 of the PCI "Quick guide" at:

https://www.pcisecuritystandards.org/pdfs/pci_ssc_quick_guide.pdf

For more information on PCI see:

https://www.pcisecuritystandards.org/index.shtml

 

Right column