I'm looking for a basic shopping cart style program. Actually, it doesn't even need to be even that complex.
I volunteer with a decidely small-time summer camp. We have online registrations, but haven't dealt with online payments. Our current online form asks for a lot of registration details -- name, medical info, desired camp activities, etc. -- but when it comes to payment, they have to either send a check or call the camp to provide CC# over the phone. When they submit the form, the data is encoded into an XML-formatted Excel spreadsheet and sent as an email attachment to the camp registrar.
Now we have an SSL certificate and can run our form over https. Our registrar is tired of the phone calls, so we want to take the next step and accept CC info online.
Options:
1. I could use a shopping cart application. Our webhost (Dreamhost) offers Zen Cart, but this seems way overkill... we only have one product (well, we could add camp shirts and stuff) but we also need to be able to integrate all of the existing form data for all the camper info. We could make it a two-stage process, Step 1 fill in our registration form, Step 2 purchase a registration. The shopping cart app should allow some form of offline CC processing as we don't have a merchant gateway, nor do I think we can afford one.
Any suggestions on simple shopping carts?
2. Have our system store the details in some way, for the registrar to log in and look up. I'm very wary of cobbling together an approach myself, though, due to liability, PCI compliance, etc... suddenly I'm a little guy playing in a big world.
3. Have our system encrypt the CC information using a public key, then email the ciphertext to the registrar, who would have to decode it. Benefit: details are not stored anywhere. A bit of work for the registrar, though. Is this approach relatively safe?
PayPal is not a viable option. Google Payments, etc. is cool but we are in Canada and a lot of those services aren't set up for Canadians to use.
Any suggestions would be greatly appreciated.
I volunteer with a decidely small-time summer camp. We have online registrations, but haven't dealt with online payments. Our current online form asks for a lot of registration details -- name, medical info, desired camp activities, etc. -- but when it comes to payment, they have to either send a check or call the camp to provide CC# over the phone. When they submit the form, the data is encoded into an XML-formatted Excel spreadsheet and sent as an email attachment to the camp registrar.
Now we have an SSL certificate and can run our form over https. Our registrar is tired of the phone calls, so we want to take the next step and accept CC info online.
Options:
1. I could use a shopping cart application. Our webhost (Dreamhost) offers Zen Cart, but this seems way overkill... we only have one product (well, we could add camp shirts and stuff) but we also need to be able to integrate all of the existing form data for all the camper info. We could make it a two-stage process, Step 1 fill in our registration form, Step 2 purchase a registration. The shopping cart app should allow some form of offline CC processing as we don't have a merchant gateway, nor do I think we can afford one.
Any suggestions on simple shopping carts?
2. Have our system store the details in some way, for the registrar to log in and look up. I'm very wary of cobbling together an approach myself, though, due to liability, PCI compliance, etc... suddenly I'm a little guy playing in a big world.
3. Have our system encrypt the CC information using a public key, then email the ciphertext to the registrar, who would have to decode it. Benefit: details are not stored anywhere. A bit of work for the registrar, though. Is this approach relatively safe?
PayPal is not a viable option. Google Payments, etc. is cool but we are in Canada and a lot of those services aren't set up for Canadians to use.
Any suggestions would be greatly appreciated.