OSCOMMERCE SUPPORT CALL 702-453-3332

 

Help - Search - Members - Calendar
Full Version: Worldpay redirecting to CANCELLED page
osCommerce Community Support Forums > osCommerce Online Merchant v2.x > Contributions / Add-Ons > Payment Modules > WorldPay
sapphal
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
sapphal
By the way I am using contribution http://addons.oscommerce.com/info/882 v1.4 for the worldpay processing.

Howard
precise-minds
QUOTE (sapphal @ Mar 4 2008, 11:24 AM) *
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

CODE
      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:
CODE
  $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.
noncents
QUOTE (precise-minds @ Mar 7 2008, 02:48 PM) *
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

CODE
      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:
CODE
  $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!

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.