Page 94 of 394 FirstFirst ... 44849293949596104144194 ... LastLast
Results 931 to 940 of 3932
  1. #931
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by ropu View Post
    For the first issue, have a look to the integration section, a full detail of the error will be show

    you can also use http://demo.globant.com/tools -> cart decode to see how the cart is generated. that error is because the cart is malformed

    the second issue could be because GC is detected as a spider. try disabling spiders or remove from includes/spider.txt strings ling jakarta


    hope this helps

    ropu
    ropu,

    1. There is no jakarta in the includes/spider.txt

    2. I am not sure that the googlecheckout is coded to account for Free Shipping Option when order doesn't meet the requirement. When Free Shipping Option is enabled and set to give free shipping for orders > or = $149.99, Googlecheckout doesn't throw error if order placed is > or = $149.99. If the order is < $149.99 then googlecheckout returns error message " Oops!
    Clevershoppers.com has sent Google a shopping cart with errors in it. We'll contact them to ask that they fix this problem. As this could be a temporary issue, you can go back in your browser to try checking out again
    ." Basically, the googlecheckout code is not taking into account the condition when shopping cart order total is less than the stated condition.

    3. Googlecheckout currently doesn't return calculated shipping, just displays the default values configured on the admin side. I assume there is a timeout issue still.

    4. Enabling multi-socket to speed shipping calculation returns error that our store currently does not ship to customer's location no matter what their location is.

    5. Googlecheckout still does not support tax calculation if a customer belongs to a zone that requires tax.

  2. #932
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    ropu,

    When I ran the responsehandler_test.php this is the error I got:

    SSL certificate problem, verify that the CA cert is OK. Details:
    error:14090086:SSL routines:func(144):reason(134)

    What exactly do this mean and how can I resolve this. The .crt, .key and .ca file are installed on the server so I don't know why this is problem.

  3. #933
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    ropu,

    I am rolling back to version 1.0.4 so we can at least take advantage of Google Checkout. Our customers are enjoying the free $10 they get from google and there is too much problem with merchant calculated shipping right now.

    I ran the responsehandler_test.php which returned less than 1 seconds and yet googlecheckout is still timing out even though it's suppose to work if it's less than 3 seconds.

    It would be great the day this mod actually works flawlessly.

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

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by BlessIsaacola View Post
    ropu,

    I am rolling back to version 1.0.4 so we can at least take advantage of Google Checkout. Our customers are enjoying the free $10 they get from google and there is too much problem with merchant calculated shipping right now.

    I ran the responsehandler_test.php which returned less than 1 seconds and yet googlecheckout is still timing out even though it's suppose to work if it's less than 3 seconds.

    It would be great the day this mod actually works flawlessly.
    hi bless and all
    These are the points im planning to release tomorrow

    xx/xx/2007 v1.3 (ropu)
    - Add tracking data to the Zencart Admin UI Orders
    - Int'l Shipping
    - Enhanced Tax Features (int'l)
    - Fixed Tax for zones
    - Fixed Tax for products
    - Coupon disabled bug
    - Added coupon zone restriction validation (Based on delivery address, not billing)
    - Added coupon product/category restriction validation

    ropu

  5. #935
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by ropu View Post
    hi bless and all
    These are the points im planning to release tomorrow

    xx/xx/2007 v1.3 (ropu)
    - Add tracking data to the Zencart Admin UI Orders
    - Int'l Shipping
    - Enhanced Tax Features (int'l)
    - Fixed Tax for zones
    - Fixed Tax for products
    - Coupon disabled bug
    - Added coupon zone restriction validation (Based on delivery address, not billing)
    - Added coupon product/category restriction validation

    ropu
    Thanks for the update. We are eagerly awaiting this release so we can test it. I am sure Woody will be happy to see this post :)

    Thanks for all the efforts you put into this mod.

  6. #936
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by BlessIsaacola View Post
    I am sure Woody will be happy to see this post :) .
    You are correct sir!

    And thanks for the news Ropu. Will be sure to test and report back.

    When you have a moment, could you make any recommends on how to go about disabling the ordering of some products with Google Checkout. Specifically, disable the ordering of PDF eBook products through Google Checkout but enable all other products.

    How to implement such an idea? Would need to be easy for customer to understand.

    DrByte offered this tidbit previously in this thread in response to my post:
    http://www.zen-cart.com/forum/showpo...&postcount=378

    Quote Originally Posted by Woodymon View Post
    Noting that the mod will not be supporting instant downloads anytime soon, can anyone suggest techniques on how to filter out certain products (e.g. downloadables) so they cannot be purchased with GCO. I can post "warning" notes throughout the site and on productInfo and product_listing pages, but I'm hoping for something a bit more elegant.
    Quote Originally Posted by DrByte View Post
    You'll need something like this:
    Code:
        if ($_SESSION['cart']->content_type == 'virtual') .... blah blah blah ...
    ... during checkout, if this is found to be 'virtual', it indicates that everything in the cart is not defined as a physical product. eg. only contains GV's or downloads or other virtual items.
    I'm a bit clueless on whow to go about implementing such an idea.

    Whenever customer clicks Google Checkout on the shopping cart page (or login page), then the order needs validated so no virtual products are in customer shopping cart.

    Order would need to be all physical products to be able to proceed with Google Checkout. So we also need to prevent customer from attempting to submit a "combo" order, that is, part physical product and part virtual product.

    Also need such order validation to occur on Zen Cart side. That is, customer should not have to have to go through most of the Google Checkout process just to find their order is "invalid".

    If a virtual product exists in shop cart, then if Google Checkout button is pressed, Zen Cart should provide custom error:

    "We're sorry. One or more items currently in your SC cannot be purchased through GC at this time. Please return to your SC and use an alternative payment/checkout method -OR- remove all eBook items from your shop cart then click the GC button again."

    As previously stated, we just don't have resources/time to be emailing PDF's. And besides that, customers who order PDF's want to see them now, not wanting to wait for to receive in email.

    So until Google Checkout supports Zen Cart download orders in seamless fashion (such as is done with PayPal IPN or most other instant payment methods) we must be able to prevent orders for downloads from being processed through Google Checkout.

    Hope you can understand.

    Woody

  7. #937
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    I think there's an error in the readme file.
    It reads like this:

    "In order to provide this support (as required for Level 2 integration), update
    the API callback request field in the seller account to
    https://<url-site-url>/admin/googlecheckout/responsehandler.php"


    I think the correct address should be https://<url-site-url>/googlecheckout/responsehandler.php, correct?

    There are few other references in the readme file to 'admin/googlecheckout/'. There's no googlecheckout folder in the admin folder. Am I missing something?
    Last edited by tj1; 30 Mar 2007 at 12:37 AM.

  8. #938
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by ropu View Post
    hi bless and all
    These are the points im planning to release tomorrow

    xx/xx/2007 v1.3 (ropu)
    - Add tracking data to the Zencart Admin UI Orders
    - Int'l Shipping
    - Enhanced Tax Features (int'l)
    - Fixed Tax for zones
    - Fixed Tax for products
    - Coupon disabled bug
    - Added coupon zone restriction validation (Based on delivery address, not billing)
    - Added coupon product/category restriction validation

    ropu
    That's great, anxiously awaiting.

    My technical knowledge is so limited, yet I managed to install the GoogleCheckout module and it works great without any errors. :)

    P.S. I think the readme file needs some editing as it has references to folders not used anymore.

  9. #939
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

    Default Re: Google Checkout module for Zen Cart (beta)

    Quote Originally Posted by tj1 View Post
    I think there's an error in the readme file.
    It reads like this:

    "In order to provide this support (as required for Level 2 integration), update
    the API callback request field in the seller account to
    https://<url-site-url>/admin/googlecheckout/responsehandler.php"


    I think the correct address should be https://<url-site-url>/googlecheckout/responsehandler.php, correct?

    There are few other references in the readme file to 'admin/googlecheckout/'. There's no googlecheckout folder in the admin folder. Am I missing something?

    HI tj

    thx for pointing that

    already corrected in the docs of v1.3RC1!

    ropu

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

    Default Re: Google Checkout module for Zen Cart (beta)

    Author: ropu
    Date: Fri Mar 30 15:38:20 2007
    New Revision: 46

    Modified:
    trunk/INSTALLATION
    trunk/README
    trunk/admin/includes/functions/extra_functions/added_function_for_google_checkout.php
    trunk/admin/orders.php
    trunk/googlecheckout/gcheckout.php
    trunk/googlecheckout/responsehandler.php
    trunk/includes/modules/payment/googlecheckout.php

    Log:
    03/30/2007 v1.3RC1 (ropu)
    - Add tracking data to the Zencart Admin UI Orders
    - Fixed SSL issue with Google Analytics feature
    - International Shipping Features
    - Restricting Shipping Options for Post Office (P.O.) Box Addresses feature
    - International Tax Features
    - Selecting a Rounding Policy for Tax Calculations
    - Fixed Tax for zones
    - Fixed Tax for products
    - Added support for All Areas Zones
    - Coupon disabled bug
    - Added coupon zone restriction validation (Based on delivery address, not billing)
    - Added coupon product/category restriction validation
    - Add a configuration to disable Google Checkout Button when are virtual good in the cart
    (double check http://checkout.google.com/seller/policies.html#4)
    - Disable multisocket Option

    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