Page 47 of 394 FirstFirst ... 3745464748495797147 ... LastLast
Results 461 to 470 of 3932
  1. #461
    Join Date
    Dec 2006
    Posts
    20
    Plugin Contributions
    0

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

    Quote Originally Posted by BBG View Post
    GldRush98: For me, the admin portion of GCO 1.0.5 worked properly right from the start, without any modification to that area. Perhaps there was a change in 1.0.5 that resolved your 1.0.4 issue? <shrug>

    I have GCO 1.0.5 up and running on a live site (it's my only payment option) and have processed orders without any problem. I needed to make a few changes to get it working with calculated USPS shipping (and to offer more than 1 shipping choice), but I don't believe much (if anything) needed to be changed to get the table rate working.

    I can try to help if you have any 1.0.5 related issues that I've run into, but I don't think I'll be much help in 1.0.4 since I'm not running that version.

    Shawn
    What did you do to make USPS shipping work? Can you elaborate? I am testing GCO1.05 on ZC 1.36 and everything pretty much works without having to do anything special (orders showing up correctly in ZC admin, and when updating order status in admin, it is reflected in seller's Google checkout account as well as buyer's account). Major problem is: shipping is still not working. I use USPS but even after I put the "fix" ropu recommended a few posts back in responsehandler.php, I am still getting the same number ($15.40) for all USPS shipping options.

  2. #462
    Join Date
    Dec 2006
    Posts
    20
    Plugin Contributions
    0

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

    Another thing I want to mention: I found my response_message.log (and the error log as well) is wide open to the world. Whoever wants to see it just needs to enter

    https://mycompany.com/googlecheckout...se_message.log

    If the site goes live I'd be worried. I guess I could do something from Apache side to prevent this, but there should be a standard recommendation in the README how to secure the files.

  3. #463
    Join Date
    Aug 2006
    Posts
    9
    Plugin Contributions
    0

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

    I have installed GC1.0.5, and then reverted to some older files from 1.0.4 as described above because I use flat rate shipping. My server does not have getallheaders() defined. I still get the error message about "headers['Authorization'] is NULL" using the newest responsehandler.php so I still need to comment out the two sections. I do not know what is causing this behavior.

    Once I went live with google checkout, I got an email from Google that my account would be suspended if I did not put a button for the gift certificate items that shows that those items are not available for Google Checkout. I don't know if that means that if there is a gift certificate in a shopping cart, then I would also need the disabled button in the shopping cart as well. I ended up taking down gift certificates as they are rarely purchased anyway.

    When viewing an empty shopping cart, I get the normal message that the shopping cart is empty, followed by Featured Products and whatever else normally follows, and at the bottom it says "-Or use-" followed by a button for Google checkout not available for this purchase.

  4. #464
    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 malka View Post
    I have installed GC1.0.5, and then reverted to some older files from 1.0.4 as described above because I use flat rate shipping. My server does not have getallheaders() defined. I still get the error message about "headers['Authorization'] is NULL" using the newest responsehandler.php so I still need to comment out the two sections. I do not know what is causing this behavior.
    I believe that the 1.0.5 responsehandler.php does not even have the sections that you commented out. Double-check the version of the file you have installed. It sounds like you are using 1.0.4 of responsehandler.php.

  5. #465
    Join Date
    Aug 2006
    Posts
    9
    Plugin Contributions
    0

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

    I am commenting out the equivalent sections in the 1.0.5 response handler that involve the error message:

    //Parse the http header to verify the source
    /* if(isset($HTTP_SERVER_VARS['PHP_AUTH_USER']) && isset($HTTP_SERVER_VARS['PHP_AUTH_PW'])) {
    $compare_mer_id = $HTTP_SERVER_VARS['PHP_AUTH_USER'];
    $compare_mer_key = $HTTP_SERVER_VARS['PHP_AUTH_PW'];
    } else {
    error_func("Line 119: headers['Authorization'] is NULL.\n");
    exit(1);
    }
    */
    and
    /*
    if($compare_mer_id != $merchant_id || $compare_mer_key != $merchant_key) {
    error_func("Line 127: merchant_id or merchant_key does not match.\n");
    exit(1);
    }
    */

  6. #466
    Join Date
    Dec 2006
    Posts
    10
    Plugin Contributions
    0

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

    Quote Originally Posted by dhan99 View Post
    What did you do to make USPS shipping work? Can you elaborate? I am testing GCO1.05 on ZC 1.36 and everything pretty much works without having to do anything special (orders showing up correctly in ZC admin, and when updating order status in admin, it is reflected in seller's Google checkout account as well as buyer's account). Major problem is: shipping is still not working. I use USPS but even after I put the "fix" ropu recommended a few posts back in responsehandler.php, I am still getting the same number ($15.40) for all USPS shipping options.
    To get the shipping to work I had to get the entire merchant callback function re-written. The one in there is pretty useless as it doesn't properly use zen cart's functions.


    Try replacing your responsehandler.php file with the one I've attached here and see if GCO will pull in the correct shipping rates then.
    Attached Files Attached Files

  7. #467
    Join Date
    Dec 2006
    Posts
    20
    Plugin Contributions
    0

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

    Quote Originally Posted by GldRush98 View Post
    To get the shipping to work I had to get the entire merchant callback function re-written. The one in there is pretty useless as it doesn't properly use zen cart's functions.


    Try replacing your responsehandler.php file with the one I've attached here and see if GCO will pull in the correct shipping rates then.

    Thanks very much but unfortunately it does not work for my setup. I have GCO 1.0.5 which does not have the [FONT=monospace][/FONT]getallheaders() function (neither is it provided by the server) so I added the definition of that function from 1.0.4 code. But then I got that Authorization NULL error.

    So, I guess I will need a little bit more help ... Did you start from GCO 1.04 or 1.05? What other files did you have to change to make it work?

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

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

    I've upgraded to 1.3.7.

    I've found that , if you want to use PayPal Express checkout too, you will have to do a bit of merging the GoogleCheckout code into the new versions of the 3 template files found in includes\templates\YOUR_TEMPLATE\templates. All of the 1.3.7 versions of those files have PayPal Express modifications in them. I found it easier to modify tpl_login_default.php and tpl_shopping_cart_default.php from the new versions by adding the GCO code. With the tpl_checkout_payment_default.php it was easier to add the PayPal Express code as it was better documented.

    It appears that I have both checkout modules working together.

  9. #469
    Join Date
    Aug 2005
    Posts
    34
    Plugin Contributions
    0

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

    Has anyone been able to get table rates working with international orders? It works fine for orders in the USA, but if you try to put in a country outside GCO says I don't ship to that country.

  10. #470
    Join Date
    Dec 2006
    Posts
    13
    Plugin Contributions
    0

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

    GldRush98: Glad to hear you have GCO 1.0.5 working properly! I'm sorry for not responding, I assumed I'd have Internet access over the holidays while I was away, unfortunately that was not the case

    dhan99: How I have it set up is most likely different that what you want, I currently have it set up to offer only Priority Mail shipping unless the shopping cart contains all books- then I offer Media Mail and Priority Mail as shipping options. Since I only offer a second shipping method in certain cases, I had to hack and slash my way through a few php files- and left an ugly mess.

    I'm going to check out ropu's latest fix and GldRush98's responsehandler on a fresh 1.0.5 yet this extended weekend to get multiple USPS options working w/o my hacks for Media Mail. I'll report back my progress and try my best to take notes. :)

    Shawn

 

 

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