Page 26 of 394 FirstFirst ... 1624252627283676126 ... LastLast
Results 251 to 260 of 3932
  1. #251
    Join Date
    Aug 2004
    Posts
    23
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by BlessIsaacola View Post
    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.

  2. #252

    Default Re: Google Checkout module for Zen Cart released

    Is there a way for this mod to work with 1.3.0.1?

    Jason

  3. #253
    Join Date
    Nov 2006
    Posts
    1
    Plugin Contributions
    0

    help question 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.

  4. #254
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by hp9 View Post
    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

  5. #255
    Join Date
    Jul 2006
    Posts
    40
    Plugin Contributions
    0

    Default 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&amp;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

  6. #256
    Join Date
    Jul 2006
    Posts
    40
    Plugin Contributions
    0

    Default 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 ...

  7. #257
    Join Date
    Nov 2006
    Posts
    1
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Yes it is supposed to work with PHP5.

    http://code.google.com/p/google-checkout-zencart/
    Requirements:
    1. Zen Cart v1.3.0.0 - Initial Release (2006-03-29)
    2. PHP3/PHP4/PHP5 with cURL(libcurl) installed and enabled

  8. #258
    Join Date
    Nov 2005
    Posts
    13
    Plugin Contributions
    0

    Default 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

  9. #259
    Join Date
    Nov 2005
    Posts
    13
    Plugin Contributions
    0

    Default 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

  10. #260
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by regenbauma View Post
    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&amp;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

 

 

Similar Threads

  1. v155 BETA feedback for Responsive-Classic in v155-beta
    By picaflor-azul in forum Addon Templates
    Replies: 51
    Last Post: 5 Mar 2016, 09:14 PM
  2. Google Checkout module support for ZC 1.5.0?
    By Woodymon in forum Addon Payment Modules
    Replies: 2
    Last Post: 21 Jan 2012, 03:18 AM
  3. Google Checkout - is there a module for 1.3.9g?
    By cchan in forum Addon Payment Modules
    Replies: 0
    Last Post: 9 Jan 2011, 05:04 AM
  4. Update Google Checkout Module or Custom Google Checkout?
    By pacificmanagment in forum Addon Payment Modules
    Replies: 1
    Last Post: 24 May 2010, 09:40 AM
  5. Replies: 1
    Last Post: 31 May 2009, 02:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR