Contributions

Payment Modules (Category Index)
Search: 

Google Checkout module for osCommerce

This Google Checkout module for osCommerce adds Google Checkout as a payment module within osCommerce.
This allows merchants using osCommerce to build their sites with Google Checkout as a payment processing option.
The plugin provides Level 2 integration of Google Checkout with osCommerce.

Plugin features include:
1. Posting shopping carts to Google Checkout
2. Shipping support (Currently, flat rates, item rates and table rates are supported)
3. Tax support
4. User and order updates within osCommerce
5. Order processing using osCommerce Admin UI

Expand All / Collapse All

google checkout help file goring_gap 13 Nov 2008

A few people seem to be having big issues with the latest module.

We do have it working so here are a few things to note:

1) Use the official module from the google website (http://code.google.com/p/google-checkout-oscommerce/). The one below has the T_CASE issue. If you apply the fix below and someone orders more than one product, only the first one will be recorded in osCommerce database.

2) Apply the include_once fix i.e. in includes/classes/shipping:

Find:

for ($i=0, $n=sizeof($include_modules); $i<$n; $i++) {
include(DIR_WS_LANGUAGES . $language . '/modules/shipping/' . $include_modules[$i]['file']);
include(DIR_WS_MODULES . 'shipping/' . $include_modules[$i]['file']);

$GLOBALS[$include_modules[$i]['class']] = new $include_modules[$i]['class'];
}

And replace with:

for ($i=0, $n=sizeof($include_modules); $i<$n; $i++) {
include_once(DIR_WS_LANGUAGES . $language . '/modules/shipping/' . $include_modules[$i]['file']);
include_once(DIR_WS_MODULES . 'shipping/' . $include_modules[$i]['file']);

$GLOBALS[$include_modules[$i]['class']] = new $include_modules[$i]['class'];
}

3) Update your shipping_methods file and check there are no blank spaces after the final ?>

4) If you offer internation shipping then remove any country codes that google does not support for eample: TP and ZR

5) Check DIR_DS_CATALOG is set correct in /includes/configure.php. It might need to be set manually.

I hope that helps. The zip contains the same.

T_CASE ERROR - v2 Full Package chibibotoons90 23 Oct 2008 MatthewRitchie 3 Nov 2008
v2 Full Package chibibotoons90 23 Oct 2008
v1.4.5a with Carrier Calculated Shipping (Bug Fix: Cannot redeclare class) lech 3 Sep 2008
FIX for Instructions for intergrating google checkout with product option types kevcap 27 Mar 2008
/catalog/includes Fix for osc google checkout LuthorIndustries 17 Mar 2008
Instructions for intergrating google checkout with product option types homewetbar 5 Mar 2008
Update for Google Checkout parksey 24 Feb 2008
sql query faaliyet 7 Feb 2008
Google Checkout mrchain 31 Jan 2008
GSC chshoaib 16 Jan 2008
GCOv145 cylynxinc 19 Nov 2007
v1.4.5a with table creation fix troyeb 11 Nov 2007
v1.4.5a with Carrier Calculated Shipping ropu 2 Oct 2007
v1.4.5 with Carrier Calculated Shipping ropu 1 Oct 2007
Add Product_Model to Description (tested w/ 1.4 version) majorw2 23 Sep 2007
Google Checkout v1.4 ropu 17 Jul 2007 emeil00 19 Sep 2007
GC and TEXT ATTRIBUTES PICS 20 Jul 2007
Google jcwcande 20 Jul 2007
Google Checkout v1.4 ropu 17 Jul 2007
Google Checkout v1.3RC2rev2 (bugfix) ctroyp 28 May 2007
Google checkout contribution in multi currency environment web-project 13 May 2007
Google Checkout v1.3RC2 rev2 ropu 20 Apr 2007
Google Checkout v1.3RC2 rev1 ropu 19 Apr 2007
Google Checkout v1.3RC2 ropu 18 Apr 2007
Google Checkout v1.2RC3 rev1 ropu 6 Mar 2007
Google Checkout v1.2RC3 ropu 5 Mar 2007
Google Checkout v1.2RC2 ropu 1 Mar 2007
Google Checkout v1.2 (ropu) ropu 1 Mar 2007
Google Checkout v1.1.0b4 (.zip) ropu 12 Jan 2007
Google Checkout v1.1.0b3 (.zip) rszrama 10 Jan 2007
Google Checkout v1.1.0b2 (.zip) rszrama 9 Jan 2007
Google Checkout v1.1.0b2 rszrama 8 Jan 2007
Google Checkout v1.1.0b rszrama 5 Jan 2007
Google Checkout v1.0.4rr rcz 2 Jan 2007
Fix for UPSXML pickupman 28 Dec 2006
Google Checkout v1.0.4r rcz 25 Dec 2006
Google Checkout v1.0.4 (ropu) jacob13moon 5 Dec 2006
Google Checkout v1.0.3 jacob13moon 22 Nov 2006
Google Checkout V1.0.2 (bugfix) jacob13moon 18 Oct 2006
Google Checkout V1.0.2 jacob13moon 5 Oct 2006
Google Checkout V1.0.1 jacob13moon 27 Sep 2006
Google Checkout V1.0 jacob13moon 26 Sep 2006

Note: Contributions are used at own risk.