Re: Google Checkout module for Zen Cart released
Quote:
Originally Posted by
BlessIsaacola
My emails are also showing the items but like you nothing on the Admin side. This mod should really be tagged version 0.0001beta.
Does anyone have it working where Google writes back to ZC? I get a callback failure notice from Google everytime an order is placed. Google processes the order with no problem and I get an email from them about the order.
I tested responsehandler.php and I do not get an error message.
I would also like to know if I should pick XML or name/value pairs for the callback on the Google site integration page.
Thanks.
Re: Google Checkout module for Zen Cart released
Is there a way for this mod to work with 1.3.0.1?
Jason
Re: Google Checkout module for Zen Cart released
zen cart: Version 1.3.5
Hi,
i got GoDaddy's turbo SSL, single domain, and i seem to have run into
problems,
1. my server does not have the function getallheaders(), i tried to
over ride it, and i get
Tue Nov 14 2:54:43 EST 2006:- HTTP Basic Authentication failed.
basically => error_func("Line 119: headers['Authorization'] is NULL.\n");
BUT if i remove the http athentication code, my admin UI is getting
updated, even in https:// call back URl
Does this mean GoDaddy SSL is not supported by GC, or is something else wrong.
the list does say Godaddy class 2 SSL is supported, but i dont know if GoDaddy turbo SSL that i got is class 2 or not ,
Help!
M.
Re: Google Checkout module for Zen Cart released
Quote:
Originally Posted by
hp9
Does anyone have it working where Google writes back to ZC? I get a callback failure notice from Google everytime an order is placed. Google processes the order with no problem and I get an email from them about the order.
I tested responsehandler.php and I do not get an error message.
I would also like to know if I should pick XML or name/value pairs for the callback on the Google site integration page.
Thanks.
Hi, you should use XML for the google callback function.
ropu
Re: Google Checkout module for Zen Cart released
Anyone have suggestions on how do we get the google cart to display products codes, and better still return product codes to zencart in the response message so that products are displayed in our order list.
My installation has the full google checkout process working except that
the order in the zencart list does not display product details .... all other aspects of the order are fine ...but the product purchased is not displayed ?
the received xml looks like
<product-data>;1</product-data> which is the product code
and
<items>^M
<item>^M
<quantity>1</quantity>^M
<unit-price currency="USD">0.2</unit-price>^M
<item-name>8&quot; Classic Frypan</item-name>^M
<item-description></item-description>^M
<tax-table-selector>Taxable Goods</tax-table-selector>^M
</item>^M
</items>^M
expect the order does not display the product ordered .... anyone have any clues in this regard ..... as I saw above ... perhaps the product code with the ";" is confusing things .... has anyone encountered this , and or repaired it ..
looks like may have something to do with
$tok = strtok($product_list, ";");
while($tok != FALSE) {
$product_id = $tok;
$new_cart->add_cart($product_id);
$tok = strtok(";");
in responsehandler.php .... but im no expert ... any help is appreciated
Re: Google Checkout module for Zen Cart released
Also ..as an aside ..... dotster is selling 1 year thawte ssl123 certs at $38 !!!! and they work fine with google checkout ...thought this may be helpful ...
Re: Google Checkout module for Zen Cart released
Yes it is supposed to work with PHP5.
http://code.google.com/p/google-checkout-zencart/
Quote:
Requirements:
1. Zen Cart v1.3.0.0 - Initial Release (2006-03-29)
2. PHP3/PHP4/PHP5 with cURL(libcurl) installed and enabled
Re: Google Checkout module for Zen Cart released
Msolution,
You had me worried a bit... This last time I upgraded my SSL Cert I purchased the $27.95 Turbo Cert instead of the $119.95 High Assurance Cert.
I just called WildWest Domains (parent company of GoDaddy for pople who want to resell Domain Registration, SSL Certs, etc) to see about the Turbo Cert being SSL Level 2... and it is.
I suspect your problems are unrelated to the cert. If it seems to be operating correctly... the verification logo works, and the lock appears on your browser when it should... You are probably fine.
Good luck!
Jeff Sohler
www.Sohlius.com
Re: Google Checkout module for Zen Cart released
MagneticOne claims to offer a complete Google Checkout Level 2 module that supports attribute based pricing, taxes and standard/custom shipping modules.
Does anyone have any feedback on this module?
Sincerely,
Jeff Sohler
www.Sohlius.com
Re: Google Checkout module for Zen Cart released
Quote:
Originally Posted by
regenbauma
Anyone have suggestions on how do we get the google cart to display products codes, and better still return product codes to zencart in the response message so that products are displayed in our order list.
My installation has the full google checkout process working except that
the order in the zencart list does not display product details .... all other aspects of the order are fine ...but the product purchased is not displayed ?
the received xml looks like
<product-data>;1</product-data> which is the product code
and
<items>^M
<item>^M
<quantity>1</quantity>^M
<unit-price currency="USD">0.2</unit-price>^M
<item-name>8&quot; Classic Frypan</item-name>^M
<item-description></item-description>^M
<tax-table-selector>Taxable Goods</tax-table-selector>^M
</item>^M
</items>^M
expect the order does not display the product ordered .... anyone have any clues in this regard ..... as I saw above ... perhaps the product code with the ";" is confusing things .... has anyone encountered this , and or repaired it ..
looks like may have something to do with
$tok = strtok($product_list, ";");
while($tok != FALSE) {
$product_id = $tok;
$new_cart->add_cart($product_id);
$tok = strtok(";");
in responsehandler.php .... but im no expert ... any help is appreciated
hi
try changing in catalog/googlecheckout/responsehandler.php line 153
PHP Code:
$new_cart = new shoppingCart;
$product_list = $data[$root]['shopping-cart']['merchant-private-data']['product-data'];
//Retrieve the list of product ids to get the contents of the cart when it was posted
$tok = strtok($product_list, ";");
while($tok != FALSE) {
$product_id = $tok;
$new_cart->add_cart($product_id);
$tok = strtok(";");
}
//$products = $new_cart->get_products();
//Reset the cart stored in the session
$_SESSION['cart']->reset(TRUE);
$orders_id = process_new_order_notification($root, $data, $googlepayment, $cart, $_SESSION['customer_id'], $_SESSION['languages_id'], $message_log); //$new_cart is empty. Changed to $cart - Added by colosports.
PHP Code:
// not used any more
/*
$new_cart = new shoppingCart;
$product_list = $data[$root]['shopping-cart']['merchant-private-data']['product-data']['VALUE'];
//Retrieve the list of product ids to get the contents of the cart when it was posted
$tok = strtok($product_list, ";");
while($tok != FALSE) {
$product_id = $tok;
$new_cart->add_cart($product_id);
$tok = strtok(";");
}
//$products = $new_cart->get_products();
*/
$orders_id = process_new_order_notification($root, $data, $googlepayment, $cart, $_SESSION['customer_id'], $_SESSION['languages_id'], $message_log); //$new_cart is empty. Changed to $cart - Added by colosports.
//Reset the cart stored in the session
$_SESSION['cart']->reset(TRUE);
Im working on a new release that will also support merchant calculations i think next week i'll have more news.
For those who want, i can check regularly our SVN, there are the latest code drops.
http://code.google.com/p/google-checkout-zencart/
thx for your feedbacks
ropu