Page 56 of 394 FirstFirst ... 646545556575866106156 ... LastLast
Results 551 to 560 of 3932
  1. #551
    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 kebeid View Post
    Isaacola, Thanks for your reply I have it setup the same way you do for the 48 states' zone. but it doesn't show up/shows up as 0 on GCO payment page and I see the same thing in the xml when I had a problem w/xml today (with changing the tax code stuff). I'll keep it on the site for you to try it (its linked to checkout.google.com).

    Pete
    Can you do me a favor and select None for your zone for the table rate instead of selecting 48 states zone and report back what happens?

    Thanks!

  2. #552
    Join Date
    Jan 2007
    Posts
    19
    Plugin Contributions
    0

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

    Quote Originally Posted by tjthecat3 View Post
    ah.. doh! you need it to be SSL. set that up now, i'll let you know how it progresses.
    ok.. so i set up SSL for my server, and google is receiving the info just fine. but when i get to the payment page on google checkout, it just reports whatever the numbers are set to in the admin settings for google checkout.. it doesn't actually calculate the postage. can someone please help me out?

  3. #553

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

    Alrighty got that done, and its still not showing the shipping . . .

  4. #554
    Join Date
    Sep 2004
    Posts
    34
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Did you get an answer to this issue? We are experiencing the same thing all of a sudden.

    Thanks, tdslori

    Quote Originally Posted by issy View Post
    Hello Zenos,

    I installed the Google Checkout Module and this is the error I get:

    Oops!
    Web-Smart Publishing has sent Google a shopping cart with errors in it. We'll contact them to ask that they fix this problem. If you're feeling lucky, you can go back in your browser and try to checkout again with your fingers crossed.

    How can I fix this?
    Does it have to do with the key?
    Is the Merchant ID the same as the Merchant Key?

    Thansk for all the help

    Issy

  5. #555
    Join Date
    Sep 2004
    Posts
    34
    Plugin Contributions
    0

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

    Found my own answer...on an osc forum:

    Merchants because some of the shopping carts generated might fail to post to Google Checkout due to some of the recent changes in our system.

    In particular, Google Checkout now strictly requires a value in the tag <tax-table-selector>. Therefore, if the shopping cart XML contains the tag <tax-table-selector> without a value ( i.e. <tax-table-selector/>), it will not be accepted by Google Checkout anymore.

    In order to make sure that your system doesn't fail to post any shopping carts to Google Checkout due to this issue, please ensure that the tag <tax-table-selector> contains a value ( e.g. <tax-table-selector>food</tax-table-selector>) if it's used at all.

    If you're currently using the Google Checkout module for OsC as your shopping cart software, please follow the instructions below to resolve this issue:

    Step 1:
    - Open the following file from your OsC directory for edit: /catalog/googlecheckout/gcheckout.php

    Step 2:
    - Find the following line:
    Code:
    if (!in_array($products[$i]['tax_class_id'], $tax_array)) {
    - Replace the above line with the following:
    Code:
    if (!empty($tt) && !in_array($products[$i]['tax_class_id'], $tax_array)) {
    Step 3:
    - Find the following line:
    Code:
    $gcheck->element('tax-table-selector', $tt);
    - Replace the above line with the following:
    Code:
    if(!empty($tt)) $gcheck->element('tax-table-selector', $tt);
    Step 4:
    - Save the changes.

  6. #556
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Please! READ the latest post!

    I published that same fix for OSC and Zencart

    http://www.zen-cart.com/forum/showpo...&postcount=547

    fix is also uploaded in the latest download page and google code
    http://www.zen-cart.com/index.php?ma...roducts_id=314
    http://code.google.com/p/google-checkout-zencart/

    ropu

  7. #557
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    REMINDER: Today sandbox URL will change for good,

    https://sandbox.google.com will not be valid, the now url is https://sandbox.google.com/checkout/

    Have a look to the latest package in the contribution page. Only googlecheckout/gcheckout.php and includes/modules/payment/googlecheckout.php are modified.

    Quick fix:
    googlecheckout/gcheckout.php line ~384

    change
    PHP Code:
        if ($srv_mode == 'https://sandbox.google.com/' && $http_mode == 'http') { 
    with
    PHP Code:
        if ($srv_mode == 'https://sandbox.google.com/checkout/' && $http_mode == 'http') { 
    and

    includes/modules/payment/googlecheckout.php line ~327

    change
    PHP Code:
    $db->Execute("insert into " TABLE_CONFIGURATION " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Select Mode of Operation', 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE', 'https://sandbox.google.com/', 'Select either the Developer\'s Sandbox or live Production environment', '6', '3', 'zen_cfg_select_option(array(\'https://sandbox.google.com/\', \'https://checkout.google.com/\'),',now())"); 
    with

    PHP Code:
    $db->Execute("insert into " TABLE_CONFIGURATION " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Select Mode of Operation', 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE', 'https://sandbox.google.com/checkout/', 'Select either the Developer\'s Sandbox or live Production environment', '6', '3', 'zen_cfg_select_option(array(\'https://sandbox.google.com/checkout/\', \'https://checkout.google.com/\'),',now())"); 
    Those working with production server wont need the fix right now, but if you turn to sandbox it wont work,

    IMPORTANT:
    To apply this you must Uninstall/Install the Google Checkout module in Admin UI->Modules->Payments->google Checkout

    Or for advanced User use PhpMyAdmin and Execute this SQL

    Code:
    UPDATE `configuration` SET `configuration_value` = 'https://sandbox.google.com/checkout/',
    `set_function` = 'zen_cfg_select_option(array(''https://sandbox.google.com/checkout/'', ''https://checkout.google.com/''),' WHERE `configuration_key` = 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE' and `configuration_value` = 'https://sandbox.google.com/';
    
    UPDATE `configuration` SET `configuration_value` = 'ttps://checkout.google.com/',
    `set_function` = 'zen_cfg_select_option(array(''https://sandbox.google.com/checkout/'', ''https://checkout.google.com/''),' WHERE `configuration_key` = 'MODULE_PAYMENT_GOOGLECHECKOUT_MODE' and `configuration_value` = 'https://checkout.google.com/';
    Any questions please feel free to ask

    Ropu

  8. #558
    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 kebeid View Post
    Alrighty got that done, and its still not showing the shipping . . .
    Are you using production or sandbox? Your current Google button doesn't appear to be the current production button unless you've changed something. I am not sure how you have things set up. Do you have the right shipping optin checked on the google configuration page on the admin page?

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

    Default No Tax Calculation

    I am wondering if someone can help with getting Googlecheckout to calculate tax. It's shows the tax order on order information but it's always zero. Please help if you have googlecheckout calculating tax right.

    Thanks!

  10. #560
    Join Date
    Jan 2007
    Posts
    31
    Plugin Contributions
    0

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

    Quote Originally Posted by ropu View Post
    Chainman, in fact my work is doing this projects.

    Im working on a stable version, to avoid the problem we had with the last release. Im fixing several issues regarding merchant calculation, timeouts, and other implementation problems.

    Im pretty sure next week ill have good news for all of you.

    ropu
    Ropu, I tried to test your 1.05beta R37... got the following error..

    Warning: main(/home/xyzstore/public_html/beta/includes/languages/english/modules/payment/show_google_components.php) [function.main]: failed to open stream: No such file or directory in /home/xyzstore/public_html/beta/Color1/modules.php on line 174

    I don't think file "show_google_components.php" should be even in that folder, /includes/languages/english/modules/payment/ Can you help explain this?

    BTW, when you expect to release 1.05 this week? thanks

 

 

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