Page 374 of 394 FirstFirst ... 274324364372373374375376384 ... LastLast
Results 3,731 to 3,740 of 3932
  1. #3731
    Join Date
    Apr 2011
    Posts
    6
    Plugin Contributions
    0

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

    I have installed google checkout for my zen cart 1.3.9h. Everything seems to be working fine except that when someone add products to its cart the shipping only shows $1. I have GoogleCheckout Carrier Calculated Shipping FALSE. I am using Zone rate shipping calculation based on weight.
    How can I get google to get the shipping rates from zen cart just like paypal gets. I tried to read too many threads/posts but so far can not get any clear response. Any suggestion will be helpful. THANKS

  2. #3732
    Join Date
    Aug 2011
    Posts
    1
    Plugin Contributions
    0

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

    My submit button disappeared. I am running, Zen Cart 1.3.9h and Googlecheckout 1.4.7.

    So i find a item, i click on add to cart the next screen is missing the googlecheckout button. When i view source the last thing i see is
    <!-- * BEGIN GOOGLE CHECKOUT * -->
    and then nothing else.

    Anyhelp is appreciated. The site im referencing is celluradio.com/shop

  3. #3733
    Join Date
    Jul 2006
    Posts
    65
    Plugin Contributions
    0

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

    so am i right in thinking we cant use a mod to use google checkout?

  4. #3734
    Join Date
    Sep 2011
    Posts
    1
    Plugin Contributions
    0

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

    I want to open my merchant account in US I know it is outside from my domicile country. So, I want to hire one agent who provides me proper knowledge about merchant account

  5. #3735
    Join Date
    Mar 2005
    Posts
    2
    Plugin Contributions
    0

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

    Hi everyone, I recently moved zencart from one host to another and Google Checkout stopped working for me. I can actually still place an order, it is received by Google Checkout, I can see it there and deal with it, I even see in my logs the message_response log shows all the activity but the order never appears in my admin UI. I can't find any errors anywhere - what could i be missing, how could changing hosts prevent the order from getting to my orders db?

    BTW - I have other payments methods, they remain working, it is just GOogle checkout that stopped. I believe google checkout doesn't place the order in Zencart until after Google Checkout processes it in the response-handler, is this correct?

    Thanks!

  6. #3736
    Join Date
    May 2006
    Posts
    16
    Plugin Contributions
    0

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

    swerb,

    I have exactly the same problem, GC was working perfectly for over two years, then on the morning of 31st Oct, it stopped adding orders into the database, the orders are luckily in the GC system, but no record of them in ZenCart..

    I checked mechant id, key, sandbox id, key, i checked no server permissions have been changed, checked all the files exist.

    everything looks great, but it isn't saving to the database..

    Anyone any ideas

  7. #3737
    Join Date
    Mar 2011
    Posts
    2
    Plugin Contributions
    0

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

    There appears to be a bug in the current version of the GC plugin which occurs when there are multiple countries set up in Zencart resulting in VAT details for the first country in the list being omitted from the data sent to Google.

    The error is located around line 685 in googlecheckout/gcheckout.php where the line

    $tax_result->MoveNext();

    should appear at the end of the loop - around line 700 - to move onto the next data row rather than at the beginning where it results in the first data row being skipped.

    The missing VAT data means Google doesn't add VAT to the order in the checkout. It just displays the line "(includes VAT £0.00)"

    I hope this helps others. It's taken several me days to track this down!

  8. #3738
    Join Date
    Feb 2009
    Posts
    46
    Plugin Contributions
    0

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

    I'm using v1.3.9h, I have SSL

    In trying to processes an order with google I get
    Oops! We were unable to process your request
    It gives me this in sandbox also.

    My debug log gives me 2 logs each time -
    PHP Warning: Invalid argument supplied for foreach() in /home/www/phryz.com/googlecheckout/gcheckout.php on line 616
    This line is my shipping_methods.php area. The only shipping I have set up is USPS and freeshipping, the page is set-

    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(
                            'usps' => array(
                                        'domestic_types' =>
                                          array(
                                               'FIRST CLASS' => 'First-Class Mail',
                                              'PRIORITY' => 'Priority Mail',
                                              'PARCEL' => 'Parcel Post',
                                               ),
                                        'international_types' =>
                                          array(
                                               'Priority Mail International' => 'Priority Mail International (6 - 10 days)',
                                              'First-Class Mail International' => 'First-Class Mail International',
                                              
                                              ),                                        
                                            ),
                            'freeshipper' => array(
                                         'domestic_types' => 
                                          array(
                                               'freeshipper' => 'Free Shipper'  
                                              ), 
                                         'international_types' => 
                                          array(
                                               'freeshipper' => 'Free Shipper intl'
                                                ), 
                                            ), 
                            'perweightunit' => array(
                                        'domestic_types' =>
                                          array(
                                              'perweightunit' => 'Perweight Unit'
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'perweightunit' => 'Perweight Unit intl'
                                               ),
                                            ),
                            'itemnational' => array(
                                        'domestic_types' =>
                                          array(
                                              'itemnational' => 'Item National',
    
                                               ),
    
                                        'international_types' =>
                                          array(
    
                                               ),
                                            ),
                            'iteminternational' => array(
                                        'domestic_types' =>
                                          array(
    
                                               ),
    
                                        'international_types' =>
                                          array(
                                              'iteminternational' => 'Item International',
    
                                               ),
                                            ),                                        
                                      );
    
      $mc_shipping_methods_names = array( 
                                             'usps' => 'USPS',
                                            'freeshipper' => 'Free Shipper',
                                             'perweightunit' => 'Perweight Unit',
                                              'itemnational' => 'Per Item National',
                                             'iteminternational' => 'Per Item International',
                                            );  
    ?>
    I don't know what else to check, paypal works fine.

    Dan

  9. #3739
    Join Date
    Sep 2011
    Location
    Upstate, NY
    Posts
    47
    Plugin Contributions
    0

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

    Anyone get the email from Google about the change from Google CheckOut to Google Wallet????

    Should I be paranoid?

    Just when I got it working 100% I think they are doing away with the functionality?

    Thinking of doing away with Google CheckO-... Errr. I mean Wallet totally.

  10. #3740
    Join Date
    May 2008
    Posts
    402
    Plugin Contributions
    0

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

    Quote Originally Posted by kevinoneil68 View Post
    Anyone get the email from Google about the change from Google CheckOut to Google Wallet????

    Should I be paranoid?

    Just when I got it working 100% I think they are doing away with the functionality?

    Thinking of doing away with Google CheckO-... Errr. I mean Wallet totally.
    Wondering the same thing

 

 

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