Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

FILENAME CHECKOUT?action=process confirm 404 error


Thomas Carey

Recommended Posts

Posted

I am using Pay Pal Express Checkout module 1.0

 

when someone goes to pay and is in Pay Pal. When the click the continue button. They get a 404 error and this at the end of the url FILENAME CHECKOUT?action=process confirm

 

It seems that Pay Pal is not redirecting to the rite place in the site or when it does the action is not working.

 

Any idea where I should look?

Posted

I am using Pay Pal Express Checkout module 1.0

 

when someone goes to pay and is in Pay Pal. When the click the continue button. They get a 404 error and this at the end of the url FILENAME CHECKOUT?action=process confirm

 

It seems that Pay Pal is not redirecting to the rite place in the site or when it does the action is not working.

 

Any idea where I should look?

 

Sounds like the checkout url is not defined.

Look in the catalog/includes/filenames.php

see if you have this code:

 define('FILENAME_CHECKOUT_PROCESS', 'checkout_process.php');

If so then I think the problem would be with the PayPal module itself as FILENAME_CHECKOUT isn't normally defined in and of itself. The standard oscommerce checkouts are

 define('FILENAME_CHECKOUT_CONFIRMATION', 'checkout_confirmation.php');

define('FILENAME_CHECKOUT_PAYMENT', 'checkout_payment.php');

define('FILENAME_CHECKOUT_PAYMENT_ADDRESS', 'checkout_payment_address.php');

define('FILENAME_CHECKOUT_PROCESS', 'checkout_process.php');

define('FILENAME_CHECKOUT_SHIPPING', 'checkout_shipping.php');

define('FILENAME_CHECKOUT_SHIPPING_ADDRESS', 'checkout_shipping_address.php');

define('FILENAME_CHECKOUT_SUCCESS', 'checkout_success.php');

 

If you installed this module yourself re-check the instructions for anything to do with the filenames.php

 

Hope this helps

Posted

Sounds like the checkout url is not defined.

Look in the catalog/includes/filenames.php

see if you have this code:

 define('FILENAME_CHECKOUT_PROCESS', 'checkout_process.php');

If so then I think the problem would be with the PayPal module itself as FILENAME_CHECKOUT isn't normally defined in and of itself. The standard oscommerce checkouts are

 define('FILENAME_CHECKOUT_CONFIRMATION', 'checkout_confirmation.php');

define('FILENAME_CHECKOUT_PAYMENT', 'checkout_payment.php');

define('FILENAME_CHECKOUT_PAYMENT_ADDRESS', 'checkout_payment_address.php');

define('FILENAME_CHECKOUT_PROCESS', 'checkout_process.php');

define('FILENAME_CHECKOUT_SHIPPING', 'checkout_shipping.php');

define('FILENAME_CHECKOUT_SHIPPING_ADDRESS', 'checkout_shipping_address.php');

define('FILENAME_CHECKOUT_SUCCESS', 'checkout_success.php');

 

If you installed this module yourself re-check the instructions for anything to do with the filenames.php

 

Hope this helps

 

 

 

Well I find the line

 

define('FILENAME_CHECKOUT_PROCESS', 'checkout_process.php');

 

is there.

 

But

 

It's also listed in the bit you posted.

 

 

"The standard oscommerce checkouts are

 define('FILENAME_CHECKOUT_CONFIRMATION', 'checkout_confirmation.php');

define('FILENAME_CHECKOUT_PAYMENT', 'checkout_payment.php');

define('FILENAME_CHECKOUT_PAYMENT_ADDRESS', 'checkout_payment_address.php');

define('FILENAME_CHECKOUT_PROCESS', 'checkout_process.php');

define('FILENAME_CHECKOUT_SHIPPING', 'checkout_shipping.php');

define('FILENAME_CHECKOUT_SHIPPING_ADDRESS', 'checkout_shipping_address.php');

define('FILENAME_CHECKOUT_SUCCESS', 'checkout_success.php');

"

Posted

Search the PayPal payment module file for FILENAME_CHECKOUT and post the results here.

Check out Chad's News.

Posted

Well I got that fixed up. I found a file missing and some code that was not right. But now my Vouchers/Coupons feature no longer works. Which I expected that would happen from the outset. So now I am onto tackle that.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...