Hi Guys,
In my website http://www.IsraelChristianTours.com I am working on a secure (SSL) payment form.
You can see the form here: https://www.israelchristiantours.com/Secure-Payment.html
I am having the following problems:
First - I can't make the validation to work. It works on all the other forms in my site, any ideas?
Second - The purpose of the form is to allow customer to pay for the service and we will charge them manually with our business credit card gate.
My question is - what is the most secure way to do this? I thought of sending an email after submission without the Credit Card info and then accessing the data through the chronoengine table, is that secure enough?
Please advise...
Thanks,
Ilan.
In my website http://www.IsraelChristianTours.com I am working on a secure (SSL) payment form.
You can see the form here: https://www.israelchristiantours.com/Secure-Payment.html
I am having the following problems:
First - I can't make the validation to work. It works on all the other forms in my site, any ideas?
Second - The purpose of the form is to allow customer to pay for the service and we will charge them manually with our business credit card gate.
My question is - what is the most secure way to do this? I thought of sending an email after submission without the Credit Card info and then accessing the data through the chronoengine table, is that secure enough?
Please advise...
Thanks,
Ilan.
Hi Ilan,
I suspect that the validation problem is because your HTML is missing some critical info.
I can't give you any specific advice about site or payment security. I notice that your site says that you don't save credit card info - so you probably shouldn't be saving it in the database. The best advice I can offer is to use a proper payment gateway.
Bob
I suspect that the validation problem is because your HTML is missing some critical info.
<input class="required" name="Name"/>
is not valid HTML, there must be a 'type' attricute there, and I think you also need an id attribute for the validation to work.<input type='text' class="required" name="Name" id='Name' />
I can't give you any specific advice about site or payment security. I notice that your site says that you don't save credit card info - so you probably shouldn't be saving it in the database. The best advice I can offer is to use a proper payment gateway.
Bob
This topic is locked and no more replies can be posted.