Zen Cart Logo
Forums / Addon Payment Modules / Google Checkout module for ZC 1.3.x (beta)

Google Checkout module for ZC 1.3.x (beta)

Locked

Views: 1,100,065

Results 3,421 to 3,440 of 3,921
This thread is locked. New replies are disabled.
1 Sep 2010, 3:06 AM
#3421
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
944
Plugin Contributions:
3

Google Checkout module for ZC 1.3.x (beta)

retched:

An update to the above.

After fiddling around with ZenCart and Google Checkout, I've pinpointed the problem.

Everyone who is having these issues of "ZenCart not posting the shopping cart", needs to go to their Google Checkout panel and under tools, visit Integration Console. (This applies to both Sandbox and Production.) When you go to the console, you will see a slew of errors and warnings that Google Checkout is trying to inform you about.

After going about this, I am continually seeing HTTP 503 error messages that look like this:

We encountered an error trying to access your server at http://THENAMEOFMYSITE.COM/googlecheckout/responsehandler.php -- the error we got is Send failed with code: 503.

Question, has anyone figured out how to fix these 503 error messages?

Secondly, when configuring in GoogleCheckout's Integration settings are we supposed to use XML or HTML pairs. (This wasn't really discussed in the instructions.)

Coming back to this... managed to get this to FINALLY work.

In order to get to fully work, you must make sure that GoogleCheckout has access to your /googlecheckout/ directory. If you have .htpasswd and the other file inside, and you don't have the option enable to enable its use in the ACP OR if you don't need them, remove those files.

1 Sep 2010, 12:26 PM
#3422
fmckinnon avatar

fmckinnon

New Zenner

Join Date:
Jul 2006
Posts:
84
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

We're using this module for ZenCart. GoogleCheckout is correctly pulling our merchant-calculated shipping rates from UPS. The UPS shipping options we have enabled are:

Next Day Air
2nd Day Air
Ground

When customers choose "GoogleCheckout" as their payment method, the "Next Day Air" shipping option is what pops up by default, which of course, is the most expensive.

MANY, MANY customers are not taking the time to review before clicking submit, thus, are paying Next Day Air, and getting angry with us for it. Sadly, it seems a majority of customers are simply not taking the time to review their order, and click on the dropdown selector and CHANGE their shipping method from the default "NExt Day Air" to "Ground" (or whatever).

As a result, now, we're paranoid every time we get a GoogleCheckout order that is "Next Day Air" and we assume the customer probably didn't intend that.

Is there any way to change the sort order or "default" payment method displayed on merchant-calculated shipping, so that the "Ground" option is the default one shown on GoogleCheckout?

Thanks in advance,
Fred

1 Sep 2010, 10:40 PM
#3423
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
944
Plugin Contributions:
3

Re: Google Checkout module for ZC 1.3.x (beta)

fmckinnon:

We're using this module for ZenCart. GoogleCheckout is correctly pulling our merchant-calculated shipping rates from UPS. The UPS shipping options we have enabled are:

Next Day Air
2nd Day Air
Ground

When customers choose "GoogleCheckout" as their payment method, the "Next Day Air" shipping option is what pops up by default, which of course, is the most expensive.

MANY, MANY customers are not taking the time to review before clicking submit, thus, are paying Next Day Air, and getting angry with us for it. Sadly, it seems a majority of customers are simply not taking the time to review their order, and click on the dropdown selector and CHANGE their shipping method from the default "NExt Day Air" to "Ground" (or whatever).

As a result, now, we're paranoid every time we get a GoogleCheckout order that is "Next Day Air" and we assume the customer probably didn't intend that.

Is there any way to change the sort order or "default" payment method displayed on merchant-calculated shipping, so that the "Ground" option is the default one shown on GoogleCheckout?

Thanks in advance,
Fred

This also happens as I'm USPS and their Express Mail is automatically selected. As part of the "Express Checkout", GoogleCheckout automatically selects the FASTEST method of shipping, not necessarily the cheapest.

1 Sep 2010, 11:46 PM
#3424
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
944
Plugin Contributions:
3

Re: Google Checkout module for ZC 1.3.x (beta)

I stand corrected Fred.

You can edit the order of the shipping options in your googlecheckout/responsehandler.php file.

Move the options around so that they are in the order that you desire.

For example, my USPS Domestic portion looked this:

'EXPRESS' => 'Express Mail (1 - 2 days)',      
'FIRST CLASS' => 'First-Class Mail (2 - 5 days)',
'PRIORITY' => 'Priority Mail (2 - 3 days)',
```Then after switching it around:

```php
'FIRST CLASS' => 'First-Class Mail (2 - 5 days)',
'PRIORITY' => 'Priority Mail (2 - 3 days)',
'EXPRESS' => 'Express Mail (1 - 2 days)',
                                          
```This caused it to show FIRST CLASS first, then PRIORITY, then EXPRESS MAIL. Try this with your responsehandler.php file.
9 Sep 2010, 3:38 PM
#3425
conspicuouschick avatar

conspicuouschick

New Zenner

Join Date:
Nov 2008
Posts:
39
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

I'm truly in over my head with this google checkout thing.

zencart 1.3.8a
google checkout 1.4.7

I have an acct, I have sandbox, I even managed through the infamous tax rates issue. Now I'm on to the calculated shipping mess. The code has been added, and the shipping generator run (which is where I begin to experience problems)

The products I sell usually are sent USPS first class mail (under 13 oz, etc), and calculated by the USPS module by weight - so exact shipping. My first question is, because I have prowled this thread and there is some confusion on this matter, does google checkout handle USPS first class?

Second, can google checkout calculate a custom shipping cost for each package, based on weight, like the USPS module does? In addition to my main website, I list products on ecrater, which uses google checkout but you have to manually list the shipping cost per item; is that how google checkout functions in general or is that something specific to ecrater?

I've had 'google calculated shipping' on both true and false. I've altered the 'carrier calculated shipping configuration' numbers multiple times. I've also played with the 'default values for real time shipping rates'. Either I've just not hit on the right combo or I'm truly missing something.

I guess the main question is more about google checkout's shipping calculation capabilities, and if it can, how I can make that happen, becuase I'm failing miserably.

Thanks everyone.

9 Sep 2010, 9:36 PM
#3426
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
944
Plugin Contributions:
3

Re: Google Checkout module for ZC 1.3.x (beta)

conspicuouschick:

I'm truly in over my head with this google checkout thing.

zencart 1.3.8a
google checkout 1.4.7

I have an acct, I have sandbox, I even managed through the infamous tax rates issue. Now I'm on to the calculated shipping mess. The code has been added, and the shipping generator run (which is where I begin to experience problems)

The products I sell usually are sent USPS first class mail (under 13 oz, etc), and calculated by the USPS module by weight - so exact shipping. My first question is, because I have prowled this thread and there is some confusion on this matter, does google checkout handle USPS first class?

Yes Google Checkout does handle first class. The confusion was that it wasn't listed first and was causing customers to balk at the high Express Mail option which GoogleCheckout has decided to list first. (Even if you use the generator.) To fix this, as I suggested, rearrange the components listed in shippinghandler.php so that First class is listed first and then so forth. This will only work, as far as I know, with the built-in ZenCart USPS Module.

Second, can google checkout calculate a custom shipping cost for each package, based on weight, like the USPS module does? In addition to my main website, I list products on ecrater, which uses google checkout but you have to manually list the shipping cost per item; is that how google checkout functions in general or is that something specific to ecrater?

That sounds like something specific to ecrater. Remember that GoogleCheckout will tally up the total of each item that you provide (in pounds) and will calculate the shipping from there by calling back the module in ZenCart.

I've had 'google calculated shipping' on both true and false. I've altered the 'carrier calculated shipping configuration' numbers multiple times. I've also played with the 'default values for real time shipping rates'. Either I've just not hit on the right combo or I'm truly missing something.

I guess the main question is more about google checkout's shipping calculation capabilities, and if it can, how I can make that happen, becuase I'm failing miserably.

Thanks everyone.

I answered up in bold in your quoted text. Hope this helps.

10 Sep 2010, 1:13 PM
#3427
inkspot avatar

inkspot

New Zenner

Join Date:
Apr 2007
Posts:
24
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

conspicuouschick:

I have prowled this thread and there is some confusion on this matter, does google checkout handle USPS first class?

First of all, the previous few comments I think should be referring to the file shipping_methods.php. Shippinghandler.php does not exist and responsehandler.php handles communication between zen-cart and Google.

Also note that for Google checkout mod 1.47, in the file shipping_methods_ccs.php, for some reason the file was posted with the Priority Mail feature banged out at line 50. You need to delete the two backslashes ('\') in front of "'Priority Mail' => 'Priority Mail',". This turns priority mail for Google checkout.

I noticed that Google Merchant Center account to configure carrier calculated shipping options, it does not give First Class Shipping as an option, so I figured it not a supported carrier calculated shipping option. I found a confirmation of this at Google's developer guide for Googlecheckout at:

http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Carrier_Calculated_Shipping.html#tag_shipping-type

My workaround has been to offer free shipping on light items and factor the price of shipping into the price. I don't understand how retched's works, unless he is using a shipping table.

Also, the USPS updated its service names in January 2009, so make sure you are also using the latest USPS.php module.

15 Sep 2010, 4:59 AM
#3428
bumba000 avatar

bumba000

Totally Zenned

Join Date:
Feb 2007
Location:
Pennsylvania
Posts:
856
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

Hi All,
When Google Checkout stores an order in the DB it's using the zone_code rather than the zone_name. This is only now a problem because we're using the USPS click n ship mod. Having it send US rather than United States is causing a problem.

I have been trough many many files and haven't figured it out yet; Please tell me how I can make GCO enter the zone_name into the orders table.

Thanks,
John

15 Sep 2010, 3:15 PM
#3429
bbsbcastle avatar

bbsbcastle

New Zenner

Join Date:
Aug 2009
Location:
Greeneville, TN USA
Posts:
55
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

John,

Most of the references to zone_code are in gcheckout.php. However, looking at things, I wouldn't suggest changing it. You're very likely to break GCO. There are references and comparisons all over the place.

Perhaps you'd have an easier time putting an IF statement in the USPS module to swap United States for US (and any other countries you need). I'm sure someone could make a nice, elegant, table based solution too.

Good Luck!

15 Sep 2010, 3:32 PM
#3430
bumba000 avatar

bumba000

Totally Zenned

Join Date:
Feb 2007
Location:
Pennsylvania
Posts:
856
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

Believe it or not, I've tried that with little success. It did carry over the United States but then left the rest of the info blank that was supposed to be "auto filled".

I'll give it a shot again later today.

Thanks,
John

19 Sep 2010, 4:48 PM
#3431
williewontgo avatar

williewontgo

New Zenner

Join Date:
Oct 2009
Location:
New York, USA
Posts:
70
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

Google Checkout was working fine until last night.

I use carrier calculated shipping.

This morning, all of my items indicate $1.00 shipping for all USA domestic and $0.00 for all International.

Anyone know the cause of this? Thank you in advance.

20 Sep 2010, 5:35 AM
#3432
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
944
Plugin Contributions:
3

Re: Google Checkout module for ZC 1.3.x (beta)

willieWontGo:

Google Checkout was working fine until last night.

I use carrier calculated shipping.

This morning, all of my items indicate $1.00 shipping for all USA domestic and $0.00 for all International.

Anyone know the cause of this? Thank you in advance.

This means that your google checkout isn't reading the values of the calculated shipping and are referring to your $1.00 default values set up in the control panel for that module.

Can you check to see if shipping_methods.php is properly configured and contains no errors?

20 Sep 2010, 4:54 PM
#3433
dcdc avatar

dcdc

New Zenner

Join Date:
Feb 2008
Posts:
71
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

Hello,

I'm hoping someone can assist me.

Installed Google Checkout for client this past weekend. GC Orders were "looping" back to cart when "confirm order" was clicked. I figured out the issue with that (was installed in wrong template). Reinstalled the files in proper template, I uninstalled and reinstalled the module, but now Google Checkout is no longer displaying as a checkout option.

Client is running 1.3.9.f, and latest version of Google Checkout Mod downloaded from this site.

Any assistance you could provide would be greatly appreciated. I did some searches already, but did not come up with an answer. If there was already a thread/post that would tell me how to fix, that would be fine as well.

Thank you in advance,

Christopher

20 Sep 2010, 7:55 PM
#3434
williewontgo avatar

williewontgo

New Zenner

Join Date:
Oct 2009
Location:
New York, USA
Posts:
70
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

retched:

This means that your google checkout isn't reading the values of the calculated shipping and are referring to your $1.00 default values set up in the control panel for that module.

Can you check to see if shipping_methods.php is properly configured and contains no errors?

Checked shipping_methods.php and no errors.

I installed this module a year ago. Have had quite a few orders via GC and no issues.

If there is a problem on the USPS end, could that cause a GC problem?

Wonder if there were issues with USPS sending the carrier-calc charges?

20 Sep 2010, 8:41 PM
#3435
jmarier avatar

jmarier

New Zenner

Join Date:
Sep 2010
Posts:
4
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

Has anyone else noticed that the google addon does NOT pass W3C markup validation? I clearly see the button code with my merchant Id clearly when using:

http://validator.w3.org/check?uri=http%3A%2F%2Fcascadiaarmamentdesign.com%2Fstore%2Findex.php%3Fmain_page%3Dlogin&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.1

Anyone have a suggestion how to get this to pass, so it doesnt cause the 10 Errors, 15 warning(s) on my

http://cascadiaarmamentdesign.com/store/index.php?main_page=login page
This code is generated in the googlecheckout/library/googlecart.php

21 Sep 2010, 6:05 AM
#3436
retched avatar

retched

Totally Zenned

Join Date:
Jun 2007
Location:
Bronx, New York, United States
Posts:
944
Plugin Contributions:
3

Re: Google Checkout module for ZC 1.3.x (beta)

willieWontGo:

Checked shipping_methods.php and no errors.

I installed this module a year ago. Have had quite a few orders via GC and no issues.

If there is a problem on the USPS end, could that cause a GC problem?

Wonder if there were issues with USPS sending the carrier-calc charges?

If there is a problem connecting to USPS then yes, you would get the default values.

22 Sep 2010, 1:28 AM
#3437
fmckinnon avatar

fmckinnon

New Zenner

Join Date:
Jul 2006
Posts:
84
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

QUESTION:

Has anyone successfully modified this module to pass the conversion tracking code from Shopzilla?

22 Sep 2010, 9:46 AM
#3438
limelites avatar

limelites

Totally Zenned

Join Date:
Jan 2009
Posts:
2,085
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

I have this same problem on a site I'm working on for someone. Shopping cart is still full even after order is processed by Google.

The server is NOT running PHP over CGI so the problem isn't with htaccess or setting this to true.

Anyone know what causes this?

22 Sep 2010, 9:50 AM
#3439
limelites avatar

limelites

Totally Zenned

Join Date:
Jan 2009
Posts:
2,085
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

I've installed this on a site for someone and I can't get it to calculate the shipping.

It's communicating with shipping_methods.php as it's showing the lowest shipping rate £2.03 for 1st class recorded and £3.99 for special delivery. These are the rates set for 0.1kg in each shipping module respectively.

The problem is that no matter what we add to the cart, Google Checkout seems to select the rate for the 0.1kg and ignores the actual weight of the items in cart.

Anyone any ideas what's causing this?

Using Royal Mail and Parcelforce modules which work perfectly well with other payment modules.

22 Sep 2010, 4:43 PM
#3440
dcdc avatar

dcdc

New Zenner

Join Date:
Feb 2008
Posts:
71
Plugin Contributions:
0

Re: Google Checkout module for ZC 1.3.x (beta)

Hello again,

I'm reposting my query from a few days back as I've not yet received a response from anyone. If anyone can point me in the right direction, I would be most appreciative.

Thank you,

Christopher

"Hello,

I'm hoping someone can assist me.

Installed Google Checkout for client this past weekend. GC Orders were "looping" back to cart when "confirm order" was clicked. I figured out the issue with that (was installed in wrong template). Reinstalled the files in proper template, I uninstalled and reinstalled the module, but now Google Checkout is no longer displaying as a checkout option.

Client is running 1.3.9.f, and latest version of Google Checkout Mod downloaded from this site.

Any assistance you could provide would be greatly appreciated. I did some searches already, but did not come up with an answer. If there was already a thread/post that would tell me how to fix, that would be fine as well."