REMINDER: Today sandbox URL will change for good,
https://sandbox.google.com will not be valid, the now url is https://sandbox.google.com/checkout/
Have a look to the latest package in the contribution page. Only googlecheckout/gcheckout.php and includes/modules/payment/googlecheckout.php are modified.
Quick fix:
googlecheckout/gcheckout.php line ~384
change
if ($srv_mode == 'https://sandbox.google.com/' && $http_mode == 'http') {
```with
```php
if ($srv_mode == 'https://sandbox.google.com/checkout/' && $http_mode == 'http') {
```and
includes/modules/payment/googlecheckout.php line ~327
change
```php
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Select Mode of Operation', 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE', 'https://sandbox.google.com/', 'Select either the Developer\'s Sandbox or live Production environment', '6', '3', 'zen_cfg_select_option(array(\'https://sandbox.google.com/\', \'https://checkout.google.com/\'),',now())");
``` with
```php
$db->Execute("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Select Mode of Operation', 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE', 'https://sandbox.google.com/checkout/', 'Select either the Developer\'s Sandbox or live Production environment', '6', '3', 'zen_cfg_select_option(array(\'https://sandbox.google.com/checkout/\', \'https://checkout.google.com/\'),',now())");
```Those working with production server wont need the fix right now, but if you turn to sandbox it wont work,
IMPORTANT:
To apply this you **must** Uninstall/Install the Google Checkout module in Admin UI->Modules->Payments->google Checkout
Or for advanced User use PhpMyAdmin and Execute this SQL
UPDATE configuration SET configuration_value = 'https://sandbox.google.com/checkout/',
set_function = 'zen_cfg_select_option(array(''https://sandbox.google.com/checkout/'', ''https://checkout.google.com/''),' WHERE configuration_key = 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE' and configuration_value = 'https://sandbox.google.com/';
UPDATE configuration SET configuration_value = 'ttps://checkout.google.com/',
set_function = 'zen_cfg_select_option(array(''https://sandbox.google.com/checkout/'', ''https://checkout.google.com/''),' WHERE configuration_key = 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE' and configuration_value = 'https://checkout.google.com/';
Ropu