
Originally Posted by
GldRush98
Yeah, I've got all the sandbox stuff set up right, and I have the address of the test server entered in the integration panel on GCO sandbox, but for some reason GCO keeps calling the address of the secure server and not the testing server. I'm not sure why. But like I said, I will hopefully have this resolved in the next hour or so, and then I will know if it's all working or not :)
tip:
have a look to googlecheckout/gcheckout.php line 476
PHP Code:
if ($srv_mode == 'https://sandbox.google.com/' && $http_mode == 'http') {
$url = HTTP_SERVER . DIR_WS_CATALOG . 'googlecheckout/responsehandler.php';
} else {
$url = HTTPS_SERVER . DIR_WS_CATALOG . 'googlecheckout/responsehandler.php';
}
$gcheck->push('merchant-calculations');
$gcheck->element('merchant-calculations-url', $url);
$gcheck->element('accept-merchant-coupons', 'true');
//$gcheck->element('accept-gift-certificates', 'true');
$gcheck->pop('merchant-calculations');
here is set the url for the merchant calculations process
ropu
Bookmarks