Silverado05, on Aug 16 2007, 12:15 PM, said:
No I doubt it has to do with GoDaddy.
Has the shipping ever shown or does it always time out?
Can you post me your googlecheckout/shipping_methods.php?
Yes I get quotes in the OSC checkout process it just doesn't carry over to Google. It is the same thing for Fedex and UPS XML. I even entered the default shipping values in the GC admin page and it still didn't show up in the Google Checkout. It does pass a flat or per item table value though.
Here is my shipping_methods.php file
<?php
/**
* File: googlecheckout/shipping_methods.php file
*/
$mc_shipping_methods = array(
'fedex1' => array(
'domestic_types' =>
array(
'90' => 'Home Delivery',
'05' => 'Standard Overnight ',
'01' => 'Priority ',
),
'international_types' =>
array(
'03' => 'International Economy ',
),
),
'upsxml' => array(
'domestic_types' =>
array(
'UPS Ground' => 'Ground',
'UPS Next Day Air' => 'Next Day Air',
),
'international_types' =>
array(
'UPS Worldwide Express' => 'Worldwide Express',
'UPS Worldwide Expedited' => 'Worldwide Expedited',
'UPS Worldwide Express Plus' => 'Worldwide Express Plus',
),
),
);
$mc_shipping_methods_names = array(
'fedex1' => 'Federal Express',
'upsxml' => 'United Parcel Service',
);
?>
Edited by kryptoni, 16 August 2007, 16:31.