Page 1 of 1
[BUG] [1.5.2.x] NoChex not working - FIX ATTACHED
Posted: Tue Mar 27, 2012 6:16 pm
by deludeddonny
I am trying to setup nochex, but it doesnt seem to be working...
Ive enabled it in the admin, but when a customer tries to check out nothing happens, after you have added all your details such as address etc and then click continue it doesnt do anything...
Have I missed something?
I am using V1.5.2.1
Re: NoChex not working
Posted: Tue Mar 27, 2012 11:04 pm
by Qphoria
Bug Confirmed
Fix attached.
Drop into catalog/view/theme/default/template/payment
overwrite existing.
Re: [BUG] [1.5.2.x] NoChex not working - FIX ATTACHED
Posted: Wed May 30, 2012 6:24 pm
by ecoleman
You need to add this line to the tpl file please. Somewhere within the form
Code: Select all
<input type="hidden" name="callback_url" value="<?php echo $callback_url; ?>" />
Without it the order does not get updated to pending, payment info is not passed and the customer does not receive any confirmation email.
Re: [BUG] [1.5.2.x] NoChex not working - FIX ATTACHED
Posted: Wed May 30, 2012 9:26 pm
by Qphoria
Thx. Fixed in SVN r1117
Re: [BUG] [1.5.2.x] NoChex not working - FIX ATTACHED
Posted: Thu May 31, 2012 4:21 pm
by Nochexman
Thanks for your help ecoleman - you got there well before me!

Re: [BUG] [1.5.2.x] NoChex not working - FIX ATTACHED
Posted: Fri Jun 01, 2012 3:16 pm
by autumnedwina
Please download the attached files, unzip them on your desktop, and use FTP or your hosting File Manager to upload them to your website.
Re: [BUG] [1.5.2.x] NoChex not working - FIX ATTACHED
Posted: Wed Mar 19, 2014 8:10 am
by billynoah
You know, I just went through 2 hours of fixing this only to find this thread when I came here to report the bug.
My Question is:
Why has this fix not been included in Opencart?
And here's another problem with the module:
in the callback function the request generated is malformed:
Code: Select all
$request .= '&' . $key . '=' . urlencode(stripslashes($value));
should be
Code: Select all
$request .= $key . '=' . urlencode(stripslashes($value)) . '&';