Page 104 of 394 FirstFirst ... 45494102103104105106114154204 ... LastLast
Results 1,031 to 1,040 of 3932
  1. #1031
    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 Woodymon View Post
    Doug, How does it behave in your production shop? Well I guess you would need to order something from yourself to test.

    Woody
    You're right...it's hard to test without buying something. Whatever the behavior, I would guess it's part of the Google end of things rather than the zen part.

  2. #1032
    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 Woodymon View Post
    Maybe provide a clear step-by-step example for one or two shipping modules only. A good candidate for an example are the basic itemnational/iteminternational ship modules which I'm trying make work nice with Google Checkout
    Woody
    What an amazing coincidence!!

    Quote Originally Posted by Woodymon View Post
    Further on up in googlecehckout.php ln 50-53

    Code:
    $this->shipping_support = array("flat", "item", "table", 'freeoptions', 'freeshipper', 'perweightunit', 'storepickup');

    $this->shipping_display = array(GOOGLECHECKOUT_FLAT_RATE_SHIPPING, GOOGLECHECKOUT_ITEM_RATE_SHIPPING, GOOGLECHECKOUT_TABLE_RATE_SHIPPING, 'freeoptions', 'freeshipper', 'perweightunit', 'storepickup');
    $this->ship_flat_ui = "Standard flat-rate shipping";Maybe I need to edit these entries also?
    I don't know quite how these settings work. May ropu can enlighten us after he recovers from his holiday...

  3. #1033
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    While continuing to troubleshoot my Google Checkout shipping config issues, I am also observing some peculiar order processing behaviors in ZC admin.

    1. When I attempted to submit an order status "update" via ZC admin, with standard boilerplate text entered into the order comments box, and clicked the "update" button I observed error:
    Code:
    Error 400: Bad request. The parameters passed to the service did not match as expected. The exact error is returned in the XML response.
    When I inserted a very brief three word comment the update submitted correctly.

    I observe no errors in response_error.log.

    However I observe in response_message.log
    Code:
    Messages cannot be longer than 255 characters.
    Why the limitation?

    My same boilerplate test works with other payment modules including PayPal.

    2. The original order submission email was delivered to admin email address and to customer email address.

    However the order "update" email message was not delivered to the admin address, only to the customer email address. I had both the 'Notify Customer" and "Append Comments' checkboxes checked. (copies of the order update emails should be delivered to admin address as well as to the customer, or at least an option provided to enable/disable delivery of order updates to admin email).

    3. "Shipper Tracking Information" form field with tracking number and shipper type dropdown displays at bottom of orders page, even though not employing third party or MC type shipping. Would like to be able to disable the display of this info on admin orders form (so helpers won't get confused).

    4. ALL Google Checkout server responses are displayed in the comments column. This info is accessible to customers via their MyAccount link (that is if they had a password initialized for them to allow them to log into Zen Cart). Thinking best if much of this info is displayed on the admin orders page (like PayPal IPN does) and not accessible to customer.

    5. On a related note if no shipping tracking info is submitted in order status update this is info is indicated in server response comments.

    Code:
    04/03/2007 12:23:17 	True 	Shipped 	
    Shipping Tracking Data:
    Carrier:
    Tracking Number:
    Would like option to be able to disable inclusion of this info in the server response messages/comments. We will manually include tracking info in order status update comments as needed.

    6. Also the time in message above indicates time for web hosting provider. When possible would prefer time based on timezone location of shop be applied. Otherwise all the various order update comments get out of synch in listing on admin orders page. I will provide more detailed observations on this later.

    7. What happens if customer creates a ZC account. And then later checks out though Google Checkout (not logged into ZC) and submits an order thru GC using the same email address which was used to register ZC account?

    Is a second ZC account with that same email addy created in ZC admin? Will customer whom created the ZC account be able to login to ZC and view the details of the GC order?

    And then vice versa, if no ZC account is created, customer submits order thru GC. This auto creates a ZC account (but customer would not have a password). and then later attempts to sign up for ZC account. Does the customer see a message that an account with that email addy already exists? Can i click password forgotten link on login page to retrieve a password for an account created by GC? What are the validation issues and what should be expected behaviors here?

    8. If customer is logged into ZC account and clicks "Checkout" in main menu, browser is directed to step one page of standard ZC checkout procedure. That means they will miss opportunity to checkout via Google Checkout.

    Just some casual observations. Even if GC is only suppose to be an "Express" checkout option for ZC, there are many interaction possibilities (permutations) between Zen Cart and Google Checkout to think about. Wrapping one's head around all the code and logic needed to deal with the possibilities must be mind numbing. I'm sure Ropu can infom us in detail.

    Suggestions or comments on the above?

    Woody

  4. #1034
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

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

    Can someone help me out here? I thought I had everything working, but I just encountered a problem.
    I believe this is related to installing the GC module, as I wasn't having this problem before installing it.

    If going through the regular checkout process, on the second step I get this error:

    Parse error: syntax error, unexpected T_ELSE in /includes/templates/classic/templates/tpl_checkout_payment_default.php on line 147

    This is what I have in that part of the file
    PHP Code:
    <?php
        
    if (sizeof($selection) > 1) {

        
    // ** GOOGLE CHECKOUT **
          
    if($selection[$i]['id'] == "googlecheckout"
            continue;
        
    // ** END GOOGLE CHECKOUT **
      
    ?>
    <?php 
    echo zen_draw_radio_field('payment'$selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
    <?php   
    ?>
    <?php
        
    } else {
            
    ?>
    And this is what the original ZC stock file has
    PHP Code:
    <?php
        
    if (sizeof($selection) > 1) {
            if (empty(
    $selection[$i]['noradio'])) {
     
    ?>
    <?php 
    echo zen_draw_radio_field('payment'$selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
    <?php   
    ?>
    <?php
        
    } else {
            
    ?>
    I really don't see what the problem is. However, when comparing the file to that posted here by chain_man, I see his doesn't have this line:
    PHP Code:
    <?php   ?>
    Do I need to delete this line?

    Thanks.

  5. #1035
    Join Date
    Aug 2006
    Posts
    111
    Plugin Contributions
    0

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

    Quote Originally Posted by apinkpony11 View Post
    Hi Everyone,

    Google has been working fine but recently (last few days) I have gotten a few "bad signature" type notices. I'm not sure what to do with these. When I click to find out more it shows me the whole xml cart that we sent them, and then a little xml they sent... not sure what to do with this.

    Help appreciated. Thank you.

    Don't let the little guy get left in the dust!

  6. #1036
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    Quote Originally Posted by apinkpony11 View Post
    Don't let the little guy get left in the dust!
    Ropu is on vacation until next week. I'm suspecting your issue is not something specific to the ZC mod but to Google Checkout service (but don't take my word for it as I don't know much).

    Are you seeing any relevant entries in either your response_error.log or response_message.log?

    I don''t recommend posting the info in your logs as they can contain personal info. But if you do post relevant sections, be sure to "obfuscate" first.

    You might want to try posting in Google Checkout support forums on Google Groups (see below). Also contact Google support directly.

    Link is in your Sellers account help area. Also here:
    http://checkout.google.com/support/sell/bin/request.py
    (then select "Technical issues and integrating with Google Checkout")

    Merchant Help Center
    http://checkout.google.com/support/sell/

    Merchant Forum
    http://groups.google.com/group/googl...erchants-forum

    Developers Forum
    http://groups.google.com/group/googl...velopers-forum

    (until ropu returns from holiday, posting in the last forum above may be your best bet.)

    And as an extra bonus there is the "official" Google Checkout Blog
    http://googlecheckout.##########################/

    Good luck.

    Woody

  7. #1037
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    Quote Originally Posted by tj1 View Post
    If going through the regular checkout process, on the second step I get this error:
    Below is what I'm using for that relevant portion of code and works fine:
    Code:
    <?php
      $radio_buttons = 0;
      for ($i=0, $n=sizeof($selection); $i<$n; $i++) {
    ?>
    <?php
        if (sizeof($selection) > 1) {
    // ** BOF Google Checkout **
          if($selection[$i]['id'] == "googlecheckout")
            continue;
    // ** EOF Google Checkout **
            if (empty($selection[$i]['noradio'])) {
     ?>
    <?php echo zen_draw_radio_field('payment', $selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true : false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
    <?php   } ?>
    <?php
        } else {
    ?>
    <?php echo zen_draw_hidden_field('payment', $selection[$i]['id']); ?>
    <?php
        }
    ?>
    Woody

  8. #1038
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    Hi, I've been asking in this thread about supporting "instant downloads". The responses I've received have appeared to indicate that Google Checkout does not support instant downloads

    However I've been scanning through the Google Checkout forums for ideas, tips, solutions and workarounds. On the Merchants discussion forum I found this Q&A:
    Subject: How can I redirect?

    Question: How can I redirect a buyer to a download page right after receiving a payment?

    Answer: You have to use the XML API and use the <continue-shopping-url> tag.
    So this appears to indicate Google Checkout supports "instant downloads", does it not?.

    Ropu, I know you have much on your plate with supporting other Zen Cart/Google Checkout features. But is "instant downloads" support something you plan to eventually (soon) integrate into your mod? If you need a tester for such functionality please let me know.

    Thanks,
    Woody

  9. #1039
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    If you desire and request a feature in the Google Checkout for Zen Cart mod, sometimes it's good to know if such functionality is supported by Google Checkout.
    Here's a posting board with the latest "wishlist".

    New Feature Suggestions for Google Checkout
    http://groups.google.com/group/googl...oogle-checkout

    Note the URL is a long one...

  10. #1040
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

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

    Quote Originally Posted by Woodymon View Post
    Below is what I'm using for that relevant portion of code and works fine:
    Code:
    <?php
      $radio_buttons = 0;
      for ($i=0, $n=sizeof($selection); $i<$n; $i++) {
    ?>
    <?php
        if (sizeof($selection) > 1) {
    // ** BOF Google Checkout **
          if($selection[$i]['id'] == "googlecheckout")
            continue;
    // ** EOF Google Checkout **
            if (empty($selection[$i]['noradio'])) {
     ?>
    <?php echo zen_draw_radio_field('payment', $selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true : false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
    <?php   } ?>
    <?php
        } else {
    ?>
    <?php echo zen_draw_hidden_field('payment', $selection[$i]['id']); ?>
    <?php
        }
    ?>
    Woody
    Thanks :), that works too.

 

 

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