This is a discussion on osCommerce PayPal IPN Module v1.0 For 2.2MS2 within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; This is a quick-and-dirty fix to a bug that causes the user to be returned (after paying with PayPal IPN) ...
| |||||||
| Register | FAQ | Donate | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| This occurs if all of the following conditions are met: 1. Their order (or another order that took place in the meantime) causes any of the products to go out of stock. 2. Stock Checking is turned on. 3. An IPN has been received with payment_status == 'Complete' before the user returns to the store It may happen in other conditions as well. In catalog/checkout_process.php find the lines (approx line 56): // Stock Check $any_out_of_stock = false; if (STOCK_CHECK == 'true') { and change to: // Stock Check $any_out_of_stock = false; if (STOCK_CHECK == 'true' && !tep_not_null($_GET['payment_status'])) { This bypasses the stock check when the user has been sent to the checkout_process page by PayPal. As I said, this is quick-and-dirty. Hopefully a cleaner fix can be rolled into the next release of the PayPal IPN contribution. More...
__________________ Michael Sasek osCMax Developer *** Do not PM me requesting paid help. The only paid work I do is for AABox Web Hosting customers *** Stay Up To Date with everything osCMax: Free osCMax Newsletters - Security notices, New Releases, osCMax News osCMax on Twitter - Up to the minute info as it happens. Know it first. osCMax User Manual - osCMax Templates - Advanced Template Tutorial |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| osCommerce PayPal IPN Module v1.0 For 2.2MS2 | michael_s | New osCommerce Contributions | 0 | 04-26-2009 11:01 AM |
| osCommerce PayPal IPN Module v1.0 For 2.2MS2 | michael_s | New osCommerce Contributions | 0 | 11-16-2007 08:41 PM |
| osCommerce PayPal IPN Module v1.0 For 2.2MS2 | michael_s | New osCommerce Contributions | 0 | 10-23-2007 09:11 AM |
| osCommerce PayPal IPN Module v1.0 For 2.2MS2 | michael_s | New osCommerce Contributions | 0 | 03-20-2007 09:50 AM |
| osCommerce PayPal IPN Module v1.0 For 2.2MS2 | michael_s | New osCommerce Contributions | 0 | 02-17-2007 05:50 AM |