This is a discussion on Google Checkout module for osCommerce within the New osCommerce Contributions forums, part of the osCommerce 2.2 Forums category; just run this lines into your phpmyadmin... CREATE TABLE IF NOT EXISTS `google_orders` ( `orders_id` int(11) default NULL, `google_order_number` bigint(20) ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| ||||
| ||||
| just run this lines into your phpmyadmin... CREATE TABLE IF NOT EXISTS `google_orders` ( `orders_id` int(11) default NULL, `google_order_number` bigint(20) default NULL, `order_amount` decimal(15,4) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; CREATE TABLE IF NOT EXISTS `google_checkout_logs` ( `google_checkout_logs_id` int(11) NOT NULL auto_increment, `message_type` varchar(255) NOT NULL default '', `msg_time` datetime NOT NULL default '0000-00-00 00:00:00', `google_order_id` varchar(255) NOT NULL default '', `xml` text NOT NULL, `orders_id` int(11) default NULL, PRIMARY KEY (`google_checkout_logs_id`), KEY `orders_id` (`orders_id`), KEY `google_order_id` (`google_order_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; CREATE TABLE IF NOT EXISTS `google_checkout` ( `customers_id` int(11) default NULL, `buyer_id` bigint(20) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; More...
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Google Checkout module for osCommerce | michael_s | New osCommerce Contributions | 0 | 10-02-2007 11:00 AM |
| Google Checkout module for osCommerce | michael_s | New osCommerce Contributions | 0 | 05-27-2007 11:50 PM |
| Google Checkout module for osCommerce | michael_s | New osCommerce Contributions | 0 | 01-12-2007 06:01 AM |
| Google Checkout module for osCommerce | michael_s | New osCommerce Contributions | 0 | 01-10-2007 07:00 AM |
| Google Checkout module for osCommerce | michael_s | New osCommerce Contributions | 0 | 01-09-2007 05:46 PM |