Page 316 of 394 FirstFirst ... 216266306314315316317318326366 ... LastLast
Results 3,151 to 3,160 of 3932
  1. #3151
    Join Date
    Aug 2008
    Posts
    217
    Plugin Contributions
    0

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

    I have the Google Checkout module (1.4.7) installed but it does not display anything on my checkout_payment page (1.3.8a).

  2. #3152
    Join Date
    Jun 2009
    Location
    Wales UK
    Posts
    87
    Plugin Contributions
    0

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

    Hello, I have installed GC on my site (http://info-tech-trade.co.uk) but I get the error message Error: Shipping Methods not configured underneath the button.
    I've noticed that I can fix this by setting GC Carrier Calculated Shipping to "true" but then i get "Oops! We were unable to process your request" when I click through.
    I have searched the web for a quick fix but without success as yet.
    Any help appreciated, Thanks.

  3. #3153
    Join Date
    Aug 2008
    Posts
    217
    Plugin Contributions
    0

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

    My Google Checkout settings are as follows:

    GoogleCheckout

    Google Checkout Module Version
    v1.4.7

    Enable GoogleCheckout Module
    True

    Select Mode of Operation
    https://checkout.google.com/

    Production Merchant ID
    *************

    Production Merchant Key
    *************

    Sandbox Merchant ID


    Sandbox Merchant Key


    .htaccess Basic Authentication Mode
    False

    Select Merchant Calculation Mode of Operation
    https

    Disable Google Checkout for Virtual Goods?
    False

    Allow US PO BOX shipping?
    True

    Default Values for Real Time Shipping Rates


    GoogleCheckout Carrier Calculated Shipping
    False

    Carrier Calculater Shipping Configuration
    fedexGrounddomestic_types_CCS:1.00|0|0, fedexHome Deliverydomestic_types_CCS:1.00|0|0, fedexExpress Saverdomestic_types_CCS:1.00|0|0, fedex2Daydomestic_types_CCS:1.00|0|0, fedexStandard Overnightdomestic_types_CCS:1.00|0|0, fedexPriority Overnightdomestic_types_CCS:1.00|0|0, fedexFirst Overnightdomestic_types_CCS:1.00|0|0, upsGrounddomestic_types_CCS:1.00|0|0, ups3 Day Selectdomestic_types_CCS:1.00|0|0, ups2nd Day Airdomestic_types_CCS:1.00|0|0, upsNext Day Air Saverdomestic_types_CCS:1.00|0|0, upsNext Day Airdomestic_types_CCS:1.00|0|0, upsNext Day Air Early AMdomestic_types_CCS:1.00|0|0, uspsMedia Maildomestic_types_CCS:1.00|0|0, uspsParcel Postdomestic_types_CCS:1.00|0|0, uspsExpress Maildomestic_types_CCS:1.00|0|0

    Rounding Policy Mode
    HALF_EVEN

    Rounding Policy Rule
    PER_LINE

    Cart Expiration Time (Minutes)
    NONE

    Also send notifications with Zencart
    False

    Google Analytics Id
    NONE

    3rd Party Tracking
    NONE

    Google Checkout restricted product categories


    Continue shopping URL.
    checkout_success

    Sort order of display.
    1


    -------------------

    It just will not display in checkout_payment as a payment option.

    All of the files are in place. I have done everything in the instructions.
    Last edited by jbarrick; 10 Jul 2009 at 03:38 PM. Reason: Add information

  4. #3154
    Join Date
    Dec 2005
    Location
    Box Elder, SD
    Posts
    373
    Plugin Contributions
    0

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

    Quote Originally Posted by jbarrick View Post
    It just will not display in checkout_payment as a payment option.

    All of the files are in place. I have done everything in the instructions.
    As designed in this mod, Google Checkout is a checkout option rather than a payment option. Unless you modify the code files within the mod, you will not see GCO in the checkout_payment screen. It is designed to be called strictly by using the GoogleCheckout button, either on a populated shopping cart page, or from the login page.

    Ther are a number of people who have modified their code files to achieve the effect you are looking for, but with mixed results. A thorough search of this forum may turn up some of their techniques.

  5. #3155
    Join Date
    Aug 2008
    Posts
    217
    Plugin Contributions
    0

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

    I am really surprised that this is the case. Especially since PayPal works as a payment option.

  6. #3156
    Join Date
    Jun 2009
    Location
    Wales UK
    Posts
    87
    Plugin Contributions
    0

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

    Quote Originally Posted by btman View Post
    Hello, I have installed GC on my site (http://info-tech-trade.co.uk) but I get the error message Error: Shipping Methods not configured underneath the button.
    I've noticed that I can fix this by setting GC Carrier Calculated Shipping to "true" but then i get "Oops! We were unable to process your request" when I click through.
    I have searched the web for a quick fix but without success as yet.
    Any help appreciated, Thanks.
    Just to answer my own question:

    I can not use carrier calculated shipping because I am not American and only flat rate is allowed.
    I still needed to configure the non-American shipping services useing the shipping generator but then disable them in admin > modules > payment > googlecheckout.

    All error are gone and google checkout flat rate shipping configured.
    fun, fun, fun!

  7. #3157
    Join Date
    Feb 2008
    Posts
    14
    Plugin Contributions
    0

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

    Quote Originally Posted by srigari View Post
    Google Checkout module currently does not work with 3rd party dropshipping modules. I use Advanced shipper module and it does not work with that either. So GC considers shipping cost to be zero if you use any dropship module.
    Google Checkout is finally pulling real time quotes from UPS for my shipping module. However, now whenever an item is flagged as fee shipping due to the freeshipper 0 weight shipping module, it noties me that there is not a valid shipping method. It begins pulling showing 0.00 as the price but then it goes away.

    Any thoughts?

  8. #3158
    Join Date
    Feb 2008
    Posts
    14
    Plugin Contributions
    0

    Default Google checkout dropship and freeshipper fix

    Hello Community

    I wanted to post this because I spent a long long long time trying to find a fix for this and I couldnt. If you are able to get your dropship mod for pulling shipping rates from manufacturers zip code to port successfully integrated into google checkout, here is how you make it work with the FREESHIPPER mod based on 0 weight.

    Open /storefolder/googlecheckout/gcheckout.php

    FIND :

    switch ($curr_ship) {
    case 'FREESHIPPER':
    if($cart->free_shipping_items() != $cart->count_contents()){
    $enable = "False";
    unset($module_info_enabled['freeshipper']);
    }

    REPLACE:

    switch ($curr_ship) {
    case 'FREESHIPPER':
    if($cart->free_shipping_items() != $cart->count_contents()){
    $enable = "True";
    unset($module_info_enabled['freeshipper']);
    }

    I hope this works for everyone and not just me because I havent tested this on any other store except for my own.

    Good Luck!!

    KullConqueror
    www.activityshopper.com
    www.livingshopper.com
    www.nextexitstores.com

  9. #3159
    Join Date
    Aug 2008
    Posts
    217
    Plugin Contributions
    0

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

    My checkout_payment page has stopped functioning correctly.

    The last time I made any changes everything was working.

    However, now customers get only a blank page when they reach the checkout_payment page.

    In ADMIN > MODULES > PAYMENT I am getting the following errors:

    Warning: googlecheckout::require(/home/bodykits_net/public_html//googlecheckout/shipping_methods.php) [function.googlecheckout-require]: failed to open stream: Permission denied in /home/bodykits_net/public_html/includes/modules/payment/googlecheckout.php on line 44

    Fatal error: googlecheckout::require() [function.require]: Failed opening required '/home/bodykits_net/public_html//googlecheckout/shipping_methods.php' (include_path='.:/usr/share/pear:/usr/share/php') in /home/bodykits_net/public_html/includes/modules/payment/googlecheckout.php on line 44

  10. #3160
    Join Date
    Aug 2008
    Posts
    217
    Plugin Contributions
    0

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

    Oops! CHMOD issue

 

 

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