Category: Oscommerce

A free online shop program featuring order history, shopping carts, full search capability, product reviews, secure transactions, bestseller lists, and related items.

PayPal IPN Module malfunction on PHP 5.2 / 5.3 server

The problem : $cart_PayPal_IPN_ID was not always a global (e.g. between functions confirmation and process_button. Find Code in : catalog/includes/modules/payment/paypal_ipn.php tep_session_register(‘cart_PayPal_IPN_ID’); // Terra register globals fix //$_SESSION[‘cart_PayPal_IPN_ID’] = $cartID . ‘-‘ . $insert_id; Replace...

Oscommerce 2.3 Admin customers merge errors

Warning: Array_merge() [function.array-merge]: Argument #1 Is Not An Array In public_html/admin/customers.php On Line 733 Edit file admin/customers.php Find these lines: $customer_info = array_merge($country, $info, $reviews); $cInfo_array = array_merge($customers, $customer_info); and change them to: $customer_info...