viperx Posted January 20, 2011 Share Posted January 20, 2011 After choosing payment method and completing order. The module redirects to Hipay, however it doesn't create any order in prestashop backoffice. It makes harder too see if any costumers actually bought anything.Any Fix for this? Ty Link to comment Share on other sites More sharing options...
viperx Posted January 21, 2011 Author Share Posted January 21, 2011 Still found no fix for this :S Link to comment Share on other sites More sharing options...
Firescanner Posted January 30, 2011 Share Posted January 30, 2011 Hi,Customer of mine has same problem. All i could find that this is a payment module error. Seems that module does not redirect back to PS which is why PS is not creating an order..Eric Link to comment Share on other sites More sharing options...
iBod Posted February 18, 2011 Share Posted February 18, 2011 A fix is located here. I've just corrected my installation of PS 1.3.6.0. and I'll see if it works later. I've included the fix below. File “/modules/hipay/hipay.php”Line #172-#174 shows:if (HIPAY_MAPI_COMM_XML::analyzeNotificationXML($_POST[’xml’], $operation, $status, $date, $time, $transid, $amount, $currency, $id_cart, $data) === false) file_put_contents(’logs’.Configuration::get(’HIPAY_UNIQID’).’.txt’, ‘[’.date(’Y-m-d H:i:s’).’] Analysis error: ‘.$_POST[’xml’]."\n", FILE_APPEND); return false; but the return false is always executed .. (as it’s no part of the IF statement). SImply adding {} around the IF statement fixes this bugso it should be: if (HIPAY_MAPI_COMM_XML::analyzeNotificationXML($_POST[’xml’], $operation, $status, $date, $time, $transid, $amount, $currency, $id_cart, $data) === false){ file_put_contents(’logs’.Configuration::get(’HIPAY_UNIQID’).’.txt’, ‘[’.date(’Y-m-d H:i:s’).’] Analysis error: ‘.$_POST[’xml’]."\n", FILE_APPEND); return false; } hope this helpsBy Buzzeke on 02 Feb 2011 at 14:23 (UTC+1) Apart from the above mentioned problem I have found HiPay very good, very easy to set up AND there is no monthly charge like the other payment services/modules. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now