Thomas Carey Posted July 30, 2010 Posted July 30, 2010 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?
NodsDorf Posted July 30, 2010 Posted July 30, 2010 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
Thomas Carey Posted July 30, 2010 Author Posted July 30, 2010 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'); "
chadcloman Posted July 31, 2010 Posted July 31, 2010 Search the PayPal payment module file for FILENAME_CHECKOUT and post the results here. Check out Chad's News.
Thomas Carey Posted July 31, 2010 Author Posted July 31, 2010 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.