Hello, let me start by saying first, thanks for the great Joomla Component, and second, please excuse my general lack of knowledge in web development. With that being said, I am in desperate need of some help.
Basically, I "helped" my Cousin with his website using my small amount of Joomla knowledge back in 2009. I came across the ChronoForms ChronoContact component and I was very impressed, so we installed it. After some trial and error using the Tutorials, Forum and FAQs on here, we managed to get the form up and running beautifully. And, it had been working beautifully since, until just recently when Users were suddenly running into an error when trying to submit an online payment. What we used the form for was basically so the User entered their Account number, and clicked submit. We had some hidden code behind the scenes that validated the User when they were redirected to the payment URL. It seems that lately, though, one part of the validation isn't working, specifically the CVV2 code. Here is a copy of the code that was in place (edited for anonymity):
Now, that has worked since 2009. So when this error started popping up, I began to try and create new forms using the Wizard, which after tweaking a lot, looked like this:
That all looks correct, but when the User presses Submit, they get an error stating that the Merchant ID was not submitted. So, I've been trying for the better half of 4 hours trying to get something like this to work:
But, for the life of me, I can't get it to work. I've tried editing the original form to match this, but when I save, I get a huge red block containing a large amount of error text. I've tried just creating a new form using this info, but to no avail. So, if any one could help, I would greatly appreciate it!
Again, forgive my general lack of knowledge, so if I am making an obvious mistake, take it easy on me😶
Basically, I "helped" my Cousin with his website using my small amount of Joomla knowledge back in 2009. I came across the ChronoForms ChronoContact component and I was very impressed, so we installed it. After some trial and error using the Tutorials, Forum and FAQs on here, we managed to get the form up and running beautifully. And, it had been working beautifully since, until just recently when Users were suddenly running into an error when trying to submit an online payment. What we used the form for was basically so the User entered their Account number, and clicked submit. We had some hidden code behind the scenes that validated the User when they were redirected to the payment URL. It seems that lately, though, one part of the validation isn't working, specifically the CVV2 code. Here is a copy of the code that was in place (edited for anonymity):
Account Number
<input type="text" name="ssl_account_number">
<input type="hidden" name="ssl_merchant_id" value="******">
<input type="hidden" name="ssl_user_id" value="******">
<input type="hidden" name="ssl_pin" value="******">
<input type="hidden" name="ssl_show_form" value="true">
<input type="hidden" name="ssl_test_mode" value="false">
<input type="hidden" name="ssl_transaction_type" value="ccsale">
<input type="submit" value="Submit">
Now, that has worked since 2009. So when this error started popping up, I began to try and create new forms using the Wizard, which after tweaking a lot, looked like this:
<input value="******" id="hidden_1" name="ssl_merchant_id" type="hidden" />
<input value="******" id="hidden_2" name="ssl_user_id" type="hidden" />
<input value="******" id="hidden_3" name="ssl_pin" type="hidden" />
<input value="true" id="hidden_4" name="ssl_show_form" type="hidden" />
<input value="false" id="hidden_5" name="ssl_test_mode" type="hidden" />
<input value="ccsale" id="hidden_6" name="ssl_transaction_type" type="hidden" />
<input value="true" id="hidden_7" name="ssl_cvv2cvc2_indicator" type="hidden" />
<input value="true" id="hidden_8" name="ssl_cvv2cvc2" type="hidden" />
That all looks correct, but when the User presses Submit, they get an error stating that the Merchant ID was not submitted. So, I've been trying for the better half of 4 hours trying to get something like this to work:
Account Number
<input type="text" name="ssl_account_number">
<input type="hidden" name="ssl_merchant_id" value="******">
<input type="hidden" name="ssl_user_id" value="******">
<input type="hidden" name="ssl_pin" value="******">
<input type="hidden" name="ssl_show_form" value="true">
<input type="hidden" name="ssl_test_mode" value="false">
<input type="hidden" name="ssl_transaction_type" value="ccsale">
<input type="hidden" name="ssl_cvv2cvc2_indicator" type="true">
<input type="hidden" name="ssl_cvv2cvc2" type="true">
But, for the life of me, I can't get it to work. I've tried editing the original form to match this, but when I save, I get a huge red block containing a large amount of error text. I've tried just creating a new form using this info, but to no avail. So, if any one could help, I would greatly appreciate it!
Again, forgive my general lack of knowledge, so if I am making an obvious mistake, take it easy on me😶