sapphal Posted March 4, 2008 Posted March 4, 2008 For some strange reason when the customer pays through worldpay the page redirects to payment cancelled and then to the checkout_payment.php page. The payment goes through but the cart is not checked out and the order doesn't go into the database. This has only happened recently and coincided with having to install the register globals contribution 2079. How can I get it to go to the correct page? Please help Howard Quote
sapphal Posted March 4, 2008 Author Posted March 4, 2008 By the way I am using contribution http://addons.oscommerce.com/info/882 v1.4 for the worldpay processing. Howard Quote
precise-minds Posted March 7, 2008 Posted March 7, 2008 By the way I am using contribution http://addons.oscommerce.com/info/882 v1.4 for the worldpay processing. Howard I've been having the same problem with an installation for one of our clients. I've now fixed it but I can't understand how it broke. Looking at the code, I couldn't find any where within any of the site code that the transaction status was being set. In /shop/wpcallback.php on line 80, there is the following test if(isset($transStatus) && $transStatus == "Y") { This was always failing as $transStatus is empty At the top of the page I have now included a line: $transStatus = $_REQUEST['transStatus']; This picks up the value coming back from worldpay. I am at a complete loss as to how this value was ever being set before hand. Quote
noncents Posted June 10, 2008 Posted June 10, 2008 I've been having the same problem with an installation for one of our clients. I've now fixed it but I can't understand how it broke.Looking at the code, I couldn't find any where within any of the site code that the transaction status was being set. In /shop/wpcallback.php on line 80, there is the following test if(isset($transStatus) && $transStatus == "Y") { This was always failing as $transStatus is empty At the top of the page I have now included a line: $transStatus = $_REQUEST['transStatus']; This picks up the value coming back from worldpay. I am at a complete loss as to how this value was ever being set before hand. For all those of you beating your head against a brick wall because the WorldPay callback doesn't work try this. I tried everything and then I simply amended this bit of code and it came to life!! I noticed loads of people having this problem without any solution so seriously give this a go, it worked for me! Quote "If I have seen further it is by standing on the shoulders of giants"
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.