Re: Google Checkout module for Zen Cart (beta)
Integration Issue Detail
I got this error:
XML GC Received:
<?xml version="1.0" encoding="UTF-8"?>
<add-merchant-order-number xmlns="http://checkout.google.com/schema/2" google-order-number="">
<merchant-order-number></merchant-order-number>
</add-merchant-order-number>
--------------------------------------------------------------------------
XML GC Sent:
<?xml version="1.0" encoding="UTF-8"?>
<error xmlns="http://checkout.google.com/schema/2" serial-number="86fce692-202b-460a-87bf-77a5f3d649">
<error-message>Ids are integral numbers, but you sent: </error-message>
</error>
Any Ideas why and how to fix this?
Re: Google Checkout module for Zen Cart (beta)
This thread is really bad, so hard to find anything at all, even using the search 'within the thread' options..
It needs someone to thin it out a bit, or copy the best bits into a new thread.
I have had the issues with the freeoptions shipping not being transfered to google
No matter what I try, I can only get the basic flat rate to work, but I really could do with orders over 50.00 to have free shipping, is anyone still watching this thread from google who might help with this?
I had one bit of success, I have managed to transfer two methods through to google, one flat rate, and one on the dropdown thats free ie 0.00, to do that I copied the freeoptions bit from the shipping_methods.uk.php into the shipping_methods.php
so that I have..
PHP Code:
<?php
/**
* File: googlecheckout/shipping_methods.php file
*/
$mc_shipping_methods = array(
'flat' => array(
'domestic_types' =>
array(
'flat' => 'Best Way',
),
'international_types' =>
array(
'flat' => 'Best Way_1',
),
),
'freeoptions' => array(
'domestic_types' =>
array(
'freeoptions' => 'Free Options'
),
'international_types' =>
array(
'freeoptions' => 'Free Options intl'
)
),
);
$mc_shipping_methods_names = array(
'flat' => 'Flat Rate',
'freeoptions' => 'Free Options',
);
?>
All I have to do now, is figure some whay that the shipping_methods.php can do a check against the order value, and then only send the freeoptions 0.00 bit, instead of both, and then I think it might actually work.
Steven
Re: Google Checkout module for Zen Cart (beta)
Hello everyone,
I'm realy getting confused trying to install Google Checkout, does anyone have some simple steps that I can follow, or able to maybe guide me through it when they have some time? From what I can gather I should be able to just add the files into my Zencart via FTP however after doing this Googlecheckout still doesnt show as an option.
Many thanks
Dan
Re: Google Checkout module for Zen Cart (beta)
Quote:
Originally Posted by
danchappers
Hello everyone,
I'm realy getting confused trying to install Google Checkout, does anyone have some simple steps that I can follow, or able to maybe guide me through it when they have some time? From what I can gather I should be able to just add the files into my Zencart via FTP however after doing this Googlecheckout still doesnt show as an option.
Many thanks
Dan
Does it appear in your Admin->Modules->Payment as an option? If so, did you activate it?
Re: Google Checkout module for Zen Cart (beta)
My shipping method is Per Unit perweight.
When people checkout using Google Checkout, the shipping cost is omitted.
Our server is not running with PHP over CGI.
What can be done to resolve this?
Re: Google Checkout module for Zen Cart (beta)
How does one turn off the Checkout logo?
I want it off because the shipping is inconsistent when checking out with GC.
Too many times over the years GC will offer $1.00 shipping for any level of delivery. That is terrible because either I eat the loss or cancel the order. Either way I lose.
I want GC to return to my site only when the GC invoices are paid.
When is this going to be a complete contribution? Other carts have it working right.
I have had it with a beta contribution.
Merchant calculated shipping shows for a moment then says No Shipping
Hi folks. Anyone have a clue for this.
With Merchant calculated shipping enabled, the proper rates show up on the google side just long enought to see they are correct (not just default values), and then are replaced by a yellow box saying: "You do not currently have any valid shipping methods."
The odd thing is, I do have valid methods. They show up for about three seconds and then are replaced by the above message.
I've had great success with GC on many sites, but this one has me stumped.
System is Fresh 1.3.8a, SSL, USPS, fresh install with no mods or templates other than GC and the usps patch.
The only difference is I'm working on a host I'm unfamiliar with.
(infact, migrating the site to a different server works)
Could there be some server config that may be the culprit? (I am forced to use fastCGI on this server)
I've done this often enough not to make silly config mistakes.
Re: Google Checkout module for Zen Cart (beta)
No real resolution to the above post, but moved to a ZC certified host and no more problems.
Coolies!
Re: Google Checkout module for Zen Cart (beta)
What is going on with Per Unit perweight shipping to Google Checkout?
I use this method for shipping and the shipping costs never shows up in Google Checkout.
This is a major problem!
We have very large items and shipping is a major part of the cost.
How do I get my shipping costs using Per Unit perweight to Google Checkout?
HELP
Re: Google Checkout module for Zen Cart (beta)
Here is my shipping_methods.php
Code:
<?php
/*
**GOOGLE CHECKOUT ** v1.4.7
* @version $Id: shipping_methods.php 5852 2007-12-14 14:58:57Z ropu $
*
*/
// this are all the available methods for each shipping provider,
// see that you must set flat methods too!
// CONSTRAINT: Method's names MUST be UNIQUE
// Script to create new shipping methods
// http://demo.globant.com/~brovagnati/tools -> Shipping Method Generator
$mc_shipping_methods = array(
'perweightunit' => array(
'domestic_types' =>
array(
'perweightunit' => ' ',
),
'international_types' =>
array(
'perweightunit' => ' _1',
),
),
);
$mc_shipping_methods_names = array(
'perweightunit' => 'Shipping & Handling',
);
?>
What do I need to do to get Google to take shipping costs?