Forum Moderators: phranque
I have an .asp based shopping cart that runs off an MS Access database.
I am trying to figure out a solution to make sure everything will be secure properly.
I have everything set for https when the user processes the credit cart, etc...
The part I am worried about is the backend. My host does not offer secure ftp and I cannot find a single windows based host that does. How do other people with a similar setup manage this?
If it is not possible to use Secure FTP I will delete the credit cards before downloading. But I am still worried about the customer names and other data being intercepted.
Thanks.
I personally don't download the CC info. The transactions are all processed automatically and all I download is a file formatted for use in Quickbooks that has the customer info and the transaction info (sans CC). The CC data remains in the db only for a short while but is encrypted as are all of the customer records.
It's easier to test locally because I am using Dreamweaver to setup my pages. Perhaps I should just create a test directory on my live site.
As an aside, I'd encourage you to think about upgrading to MySQL or other more robust database. MS Access was never meant to be used as a web based database.
And, the reason I am using Access is that I am not generating any dynamic pages out of it. My front end is static html. The Access part is being used only as the shopping cart engine. So, at any given time, I may only have 2-3 people in the cart area.
The other alternative is to use SQL Server and from all the research I did, it seemed alright to be using Access for now. Your thoughts?