Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Worldpay redirecting to CANCELLED page


sapphal

Recommended Posts

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

  • 3 months later...
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!

"If I have seen further it is by standing on the shoulders of giants"

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...