Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Return from Paypal Express


2 replies to this topic

#1 asim_nazir1

  • Community Member
  • 13 posts
  • Real Name:asim

Posted 05 September 2010, 12:34

Hi,

www.themp4.com


I'm trying to use paypal express to speed up the checkout process, but once on the payment page, if you return to the shop it fails, page not found

themp4.com/FILENAME_CHECKOUT?token=EC-3NE44491NK6514529

I haven't installed this payment module, its what came with the cart,
anybody got any idea why its doing this?

Even in the sandbox mode after payment its goes to the same page.

Thanks

Edited by asim_nazir1, 05 September 2010, 12:48.


#2 web-project

  • Community Member
  • 4,310 posts
  • Real Name:Alex
  • Gender:Male
  • Location:Hertfordshire, UK

Posted 05 September 2010, 16:42

Quote

FILENAME_CHECKOUT
the above variable is incorrect, as it should be one of the following:
FILENAME_CHECKOUT_CONFIRMATION
FILENAME_CHECKOUT_PAYMENT
FILENAME_CHECKOUT_PAYMENT_ADDRESS
FILENAME_CHECKOUT_PROCESS
FILENAME_CHECKOUT_SHIPPING
FILENAME_CHECKOUT_SHIPPING_ADDRESS
FILENAME_CHECKOUT_SUCCESS

To correct you can do the following:

open the /catalog/includes/filenames.php file and find the following:
define('FILENAME_ALSO_PURCHASED_PRODUCTS', 'also_purchased_products.php');
after above line add the following code:
define('FILENAME_CHECKOUT', 'checkout_confirmation.php');

Please read this line: Do you want to find all the answers to your questions? click here. As for contribution database it's located here!
8 people out of 10 don't bother to read installation manuals. I can recommend: if you can't read the installation manual, don't bother to install any contribution yourself.
Before installing contribution or editing/updating/deleting any files, do the full backup, it will save to you & everyone here on the forum time to fix your issues.
Any issues with oscommerce, I am here to help you.

#3 asim_nazir1

  • Community Member
  • 13 posts
  • Real Name:asim

Posted 06 September 2010, 14:18

thanks for your help, its sorted now!