Re: Fast and Easy Checkout for Zen Cart
I found the problem. :(
My error.
In the sql patch I forgot:
# Remove the #s below if you have not already installed FEC
And I installed 1.2.6 and not the latest one.
Thats why I missed a lot of extra's and whas not working as it should be.
I updated the SQL and the version now.
Thanks and keep on the good work.
Re: Fast and Easy Checkout for Zen Cart
Does Fast and Easy Checkout support the use of gift certificates? I'm currently using COCOA and can therefore not use gift certificates.
Re: Fast and Easy Checkout for Zen Cart
Okay I just updated Easy Signup and Login from 1.16 to 1.19, I need to put FEC on my site, I know i should have put FEC first but I had Easy Signup for over a year... How do I installed FEC with Easy Signup already installed? I read to delete the two lines containing delete in the FEC sql..what about the admin/order.php and packingslip.php do you over write them? or merge? if you merge them how do you because i looked at them both and they both contain about 50% the same...
---Also never figured out the show with confience box..have been reading every where when i installed easy signup and login there has never been any options in the admin? Normal?
Re: Fast and Easy Checkout for Zen Cart
Quote:
Originally Posted by
ryanb4614
Okay I just updated Easy Signup and Login from 1.16 to 1.19, I need to put FEC on my site, I know i should have put FEC first but I had Easy Signup for over a year... How do I installed FEC with Easy Signup already installed? I read to delete the two lines containing delete in the FEC sql..what about the admin/order.php and packingslip.php do you over write them? or merge? if you merge them how do you because i looked at them both and they both contain about 50% the same...
---Also never figured out the show with confience box..have been reading every where when i installed easy signup and login there has never been any options in the admin? Normal?
Try using a Windows program called WinMerge.
Re: Fast and Easy Checkout for Zen Cart
Can somebody please help me understand the difference between Easy sign up and login and FEC? I see many people have both installed... is this necessary?
I'm not sure how COWOA works with either of these as well, if somebody could enlighten me I would REALLY appreciate it.
Re: Fast and Easy Checkout for Zen Cart
Maybe start by reading here:
http://www.zen-cart.com/index.php?ma...roducts_id=845
Each supplied mod has a description that should make it clear what it is for. If it still is not clear, download and read the included readme.txt that most contributors supply. Just look for the mods in question in the Free Software Add On.
Re: Fast and Easy Checkout for Zen Cart
I have been using this mod in 1 page checkout format for some time now until recently when i decided to use direct bank deposit as a payment method in which i disable one page checkout so customers could see the bank details on confirmation page... Anyway i noticed i get an error when checing out:
Line: 111
Char: 3
Error: object required
Code: 0
URL:https://www.truwater.com.au/index.ph...c_confirmation
Anyone know what this could be?
Re: Fast and Easy Checkout for Zen Cart
Credit Card CVV Number
Minimum length of credit card CVV number id set to 3
BUT customers can check out without giving the CVV, why?
Collect CVV is set to true as well. Does this have to do with Easy Checkout?
This function works with the standard checkout steps at
Step 2 of 3 - Payment Information
Errors have occurred during the processing of your form.
Please make the following corrections:
* The CVV number must be at least 3 characters.
This is what should happen with the mod as well I assume, but it is not working.
Re: Fast and Easy Checkout for Zen Cart
mydanilo, I would need to look at your server, can you please send a PM or email to webmaster AT numinix DOT com.
Re: Fast and Easy Checkout for Zen Cart
numinix, thanks for offering. Turns out that if I use cc.php offline credit card mod it works fine with the cvv warning. I want to use the qbms.php quickbooks merchant payment module. Seems like the verification JavaScript is not working correctly. I think it was made for a older zen version where no pop up warning was used. I would love to have it modified to give me the same pop up warning. Here is the script that needs to be modified:
HTML Code:
// function javascript_validation: Validates the submitted payment details.
function javascript_validation() {
$js = ' if (payment_value == "' . $this->code . '") {' . "\n" .
' var cc_owner = document.checkout_payment.qbms_cc_owner.value;' . "\n" .
' var cc_number = document.checkout_payment.qbms_cc_number.value;' . "\n" .
' if (cc_owner == "" || cc_owner.length < ' . CC_OWNER_MIN_LENGTH . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_OWNER . '";' . "\n" .
' error = 1;' . "\n" .
' }' . "\n" .
' if (cc_number == "" || cc_number.length < ' . CC_NUMBER_MIN_LENGTH . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_NUMBER . '";' . "\n" .
' error = 1;' . "\n" .
' if (' . MODULE_PAYMENT_QBMS_VERIFY_WITH_CVV2 . ' == "True") {' . "\n" .
' var cc_cvv2 = document.checkout_payment.qbms_cc_cvv2.value;' . "\n" .
' if (cc_cvv2 == "" || cc_number.length < ' . 3 . ') {' . "\n" .
' error_message = error_message + "' . MODULE_PAYMENT_QBMS_TEXT_JS_CC_CVV2 . '";' . "\n" .
' error = 1;' . "}\n" .
' }' . "\n" .
' }' . "\n" .
' }' . "\n";
return $js;
I know you are a programmer. Would you agree that this is the problem?