Results 1 to 10 of 3932

Hybrid View

  1. #1
    kelvyn Guest

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

    I've got the checkout button showing, I can place an order, I can see the order in the checkout.

    Only 2 issues remain now:

    1: Neither ourselves nor the customer get notified of a new order, even though "Also send notifications with Zencart" is set to true, and we get notifications from Paypal orders.

    2: Whatever I do with tax, be it in Zen or in Google Checkout itself, in the order it shows tax as 0%, although the grand total is correct.

    If I edit the order, I can apply the 20% tax, then when I refresh the order it's OK.

    However, when I change the line "Shipping Tax Rate (Not Stored in DB)" to 20%, it DOESN'T remember this.

    Has anyone got any ideas? Thank you!

  2. #2
    Join Date
    Jun 2007
    Location
    Texas, USA
    Posts
    1,400
    Plugin Contributions
    1

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

    Quote Originally Posted by kelvyn View Post
    I've got the checkout button showing, I can place an order, I can see the order in the checkout.

    Only 2 issues remain now:

    1: Neither ourselves nor the customer get notified of a new order, even though "Also send notifications with Zencart" is set to true, and we get notifications from Paypal orders.

    2: Whatever I do with tax, be it in Zen or in Google Checkout itself, in the order it shows tax as 0%, although the grand total is correct.

    If I edit the order, I can apply the 20% tax, then when I refresh the order it's OK.

    However, when I change the line "Shipping Tax Rate (Not Stored in DB)" to 20%, it DOESN'T remember this.

    Has anyone got any ideas? Thank you!
    I don't think your going to get any help from the googlegroups... I never did... more likely here than not... I always had to count on receiving an email to know that a google order was purchased.... had an express order after Christmas that I didn't catch for almost two weeks because I didn't see the email..... seemed like taxes worked okay for me I collected based on state but sure you could collect based on country....

    the straw that broke the camel back happened here recently when I found out that google checkout wasn't going to tell me how much fees they collected during the past year and made me spend two days going through past orders to see what my fees were for tax reasons.... I disabled google checkout a couple of weeks ago and the store is doing no worse for it.

    good luck,

    Shrimp

  3. #3
    kelvyn Guest

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

    If anyone else is having problems with Google Checkout not sending customer update notification emails this is what fixed it for me:

    in admin/orders.php (after editing for Google Checkout), around line 112, just before the first "END GOOGLE CHECKOUT" change

    PHP Code:
    $customer_notified = isset($customer_notified)?$customer_notified:'0'
    to

    PHP Code:
    $customer_notified '0'
    Around line 116, change

    PHP Code:
    if (isset($_POST['notify']) && ($_POST['notify'] == 'on')) { 
    to

    PHP Code:
    if (isset($_POST['notify']) && ($_POST['notify'] == '1')) { 
    No promises it'll work for you, but with these changes, I now get the green tick and email sends again.

  4. #4
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

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

    Does anyone know how to get the google button to show, it isn't showing in my shopping cart and now my login page is broke at the bottom.
    and here I thought this was working

  5. #5
    Join Date
    Feb 2009
    Posts
    46
    Plugin Contributions
    0

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

    I received an email from google -
    We've made several unsuccessful attempts to send order notifications to your notification callback URL, https://www.phryz.com/googlecheckout...nsehandler.php As a result, you aren't receiving order status, risk, or other notifications.
    Going to my responsehandler.php link I get a user name and password box to pop up.

    I've upgraded to 1.3.9h, I did have google orders previously in 1.3.8. when I upgraded I removed and then installed google checkout

    My error log shows
    Sun Feb 20 21:36:15 UTC 2011:- Failed to Get Basic Authentication Headers
    I checked all my merchant codes and everything is correct. Any idea on what I should look into?

    Dan

  6. #6
    Join Date
    Feb 2009
    Posts
    46
    Plugin Contributions
    0

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

    I did look at-
    Code:
    [Create two files and put the following]
    .htaccess
      AuthName "Name that pops up when asking for pwd" 
      AuthType basic 
      AuthUserFile "full location to .htpasswd"
      require valid-user
    
    .htpasswd
    merchant_id:merchant_key
    
    /* NOTE */
    The merchant key must be stored in encrypted form so use something like
      http://www.kxs.net/support/htaccess_pw.html
    to generate the correct one
    
    [Open library/googleresponse.php]
    find the function 
      function HttpAuthentication($headers=null, $die=true)
    and delete everything in the function except for
      return true;
    What do I put here? AuthName "Name that pops up when asking for pwd"

    I'm not getting a pop up asking for a name
    And in the googleresponse.php

    is this what it should look like-
    Code:
       function HttpAuthentication($headers=null, $die=true) {
     
            return false;
          }

  7. #7
    Join Date
    Feb 2009
    Posts
    46
    Plugin Contributions
    0

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

    I tested it with the response handler test page and got the following-
    XML We Received: couldn't connect to host



    Time to response: 0.03696608543396 segs

    Note: This script MUST response in less than 3 sec. so GC srv doesn't timeout.'

  8. #8
    Join Date
    Apr 2007
    Posts
    24
    Plugin Contributions
    0

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

    Quote Originally Posted by kashyyyk View Post
    I received an email from google -


    Going to my responsehandler.php link I get a user name and password box to pop up.

    I've upgraded to 1.3.9h, I did have google orders previously in 1.3.8. when I upgraded I removed and then installed google checkout

    My error log shows


    I checked all my merchant codes and everything is correct. Any idea on what I should look into?

    Dan
    Dan,
    I'm no expert, and I haven't the courage to yet to switch from 1.3.8 to 1.39, but I don't recall having to get into the GCO code on past upgrades. I noticed that you mention looking at the error logs [in your googlecjheckout directory?] but have you also logged into your googlecheckout account and looked at the messages in the integration console. They are sometimes more informative and they also appear as links which open a help screen, with sometimes helpful tips. However, a basic authentication failure I think means your Merchant ID and Key on you zen-cart googlecheckout page does not precisely match the ID key on your google account page, or the encoded version in your htaccess file. But you say they do match. The fact that you got the login screen when you put the response handler address in a web browser means your SSL is ok and the file is in the right place. if you type in the merchant id and key from your zen-cart googlecheckout admin page, into this login screen, you should get past the login screen and get something like a 403 error, which means you entered the right user id and password, but no expected info was passed to the response handler file. Is .htaccess Basic Authentication Mode=false? Just a few ideas. Also beware of browser caching when you do make changes to the merchant id and key; sometimes you have to close down your browser. Hope something here helps.

  9. #9
    Join Date
    Feb 2009
    Posts
    46
    Plugin Contributions
    0

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

    I have no clue, I wish I didn't upgrade from a perfectly fine working website.

    All my codes match.
    My errors at google all say

    We encountered an error trying to access your server at https://phryz.com/googlecheckout/responsehandler.php -- the error we got is Sending failed with HTTP response code: 401. Response body was: Failed to Get Basic Authentication Headers
    Integration settings
    Shopping cart post security
    My company will only post digitally signed carts.

    API callback URL: https://www.phryz.com/googlecheckout...nsehandler.php

    Callback contents:
    Notification as XML (Requires an HTTPS URL)

    API Version 2.2
    My .htaccess Basic Authentication Mode is False, I did create the .htaccess with the link there though
    I did just set it to true, it's about the only thing I didn't try, In my previous version it worked on false.

 

 

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