Page 27 of 394 FirstFirst ... 1725262728293777127 ... LastLast
Results 261 to 270 of 3932
  1. #261
    Join Date
    Oct 2006
    Location
    Hanover, PA
    Posts
    71
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    I installed this mod but I must be missing something...

    It works in the shopping cart, but does not open a new window for the customer to send payment. Am I supposed to invoice each and every order?

  2. #262
    Join Date
    May 2005
    Location
    Tampa, FL
    Posts
    203
    Plugin Contributions
    1

    Default Re: Google Checkout module for Zen Cart released

    The mod seems to not work on some servers.
    So far it works for both 2 different servers I have tested on. One server has the getallheaders() function, the other servers does not. Both works fine.
    I am not sure why people are having orders not showing up in the admin.

    The setting should on Google Intergration page should be set to XML. If you are having problems, list your problem and include the Google callback URL that you are using, and error on the Google page if any.
    The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)

  3. #263
    Join Date
    Oct 2006
    Location
    Hanover, PA
    Posts
    71
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by colosports View Post
    The mod seems to not work on some servers.
    So far it works for both 2 different servers I have tested on. One server has the getallheaders() function, the other servers does not. Both works fine.
    I am not sure why people are having orders not showing up in the admin.

    The setting should on Google Intergration page should be set to XML. If you are having problems, list your problem and include the Google callback URL that you are using, and error on the Google page if any.
    I'm sorry, are you speaking to me?

    I am having no problems with the mod showing up in my admin as an order, but when I select Google Checkout to pay it does not open into a new window to sign in and make the payment like Paypal does, it does nothing. Is it supposed to? Am I supposed to invoice the buyer instead of having an automatic payment?

  4. #264
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by colosports View Post
    The mod seems to not work on some servers.
    So far it works for both 2 different servers I have tested on. One server has the getallheaders() function, the other servers does not. Both works fine.
    I am not sure why people are having orders not showing up in the admin.

    The setting should on Google Intergration page should be set to XML. If you are having problems, list your problem and include the Google callback URL that you are using, and error on the Google page if any.
    Are you saying the details of the item that is purchased is displayed on your Admin page like regular ZC order? If so please share what you did different because I do not see the item purchase on the Adam side of my ZC. I see the order and the fact that they use googlecheckout but not the product list that is included in the order.

    Thanks

  5. #265
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by ropu View Post
    hi

    try changing in catalog/googlecheckout/responsehandler.php line 153
    PHP Code:
          $new_cart = new shoppingCart;
          
    $product_list $data[$root]['shopping-cart']['merchant-private-data']['product-data'];
    //Retrieve the list of product ids to get the contents of the cart when it was posted
          
    $tok strtok($product_list";");
          while(
    $tok != FALSE) {
            
    $product_id $tok;
            
    $new_cart->add_cart($product_id);
            
    $tok strtok(";");
          }
          
    //$products = $new_cart->get_products();

    //Reset the cart stored in the session
         
    $_SESSION['cart']->reset(TRUE);
         
    $orders_id process_new_order_notification($root$data$googlepayment$cart$_SESSION['customer_id'], $_SESSION['languages_id'], $message_log); //$new_cart is empty. Changed to $cart - Added by colosports. 
    PHP Code:
    // not used any more
    /*
          $new_cart = new shoppingCart;
          $product_list = $data[$root]['shopping-cart']['merchant-private-data']['product-data']['VALUE'];
    //Retrieve the list of product ids to get the contents of the cart when it was posted
          $tok = strtok($product_list, ";");
          while($tok != FALSE) {
            $product_id = $tok;
            $new_cart->add_cart($product_id);
            $tok = strtok(";");
          }
          //$products = $new_cart->get_products();
    */

         
    $orders_id process_new_order_notification($root$data$googlepayment$cart$_SESSION['customer_id'], $_SESSION['languages_id'], $message_log); //$new_cart is empty. Changed to $cart - Added by colosports.
    //Reset the cart stored in the session
       
    $_SESSION['cart']->reset(TRUE); 
    Im working on a new release that will also support merchant calculations i think next week i'll have more news.

    For those who want, i can check regularly our SVN, there are the latest code drops.
    http://code.google.com/p/google-checkout-zencart/

    thx for your feedbacks

    ropu

    Using the above revised code fixed my problem and orders are now showing with the product purchased on the Admin side. However, I just noticed another problem which maybe unrelated. It did not calculate tax when it should have. Any ideas?

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

    Default Re: Google Checkout module for Zen Cart released

    Hello,

    I just finished reading this whole GCO for ZC mod thread.

    If I am not mistaken recent posts to this thread may indicate 'colosports' and 'ropu' might be independently working on different versions of the GCO for ZC mod?

    And I also see listed on http://code.google.com/p/google-checkout-zencart/
    the names of vigneshgg, david.eger, jacob13moon, checkoutdevpro, rovagnati listed as the Google Code project owners.

    So are there various forks of this GCO for ZC mod in existence? Or is everyone developing the same mod?

    The reason I ask is there have been a number of recommended patches posted in this support thread. But some of those patch recommends don't state which version of the GCO mod and which version of Zen Cart the patch is intended for.

    Also could anyone knowledgable in the status of this GCO for ZC mod development put together a short list (hopefully) of known issues with the current v.1.04 mod (including a list of standard Zen Cart features which are NOT supported, using Zen Cart v.1.36 as the basis of comparison).

    I think this kind of info will get everyone up-to-date and on the same page.

    Thanks,

    Woody

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

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by BlessIsaacola View Post
    Everything is working perfectly for me. Make sure you fix the error in orders.php, tpl_shopping_cart_default.php and responsehandler.php
    1. Which edits are recommended for responsehandler.php ?

    I do not find anything in the readme for v.1.04 or any consensus in this support thread on this topic?

    2. Also I noted an early recommended by Jacob to edit /admin/googlecheckout/gcheckout.php.

    But as you were kind enough to indicate /admin/googlecheckout does not exist.

    3. Also I see a number of patch recommends in this support thread that do not indicate which file to edit. Is that not fundamental information, Watson?

    Thanks,
    Woody

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

    Default Re: Google Checkout module for Zen Cart released

    Besides chmod 777 the following files:
    response_error.log
    response_message.log

    What are the recommended chmod permissions settings for the googlecheckout directory and files within:

    gcheckout.php
    responsehandler.php
    xmlbuilder.php
    xmlparser.php

    So 777 means the whole world can read the log files? Is this ok?

    Should there be an index.txt file added to the googlecheckout directory? And any recommended .htaccess settings or any other configuration recommended to prevent the googlecheckout directory from being spidered or accessed in other unwanted ways.

    Whom in this forum has the security credentials to provide guidance regarding the Google Checkout for Zen Cart mod security configuration?

    Woody

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

    Default Re: Google Checkout module for Zen Cart released

    Hello again,

    1. I'm running ZC 1.36. Just installed colosports v.1.04 GCO mod with his 11-16-06 tpl_checkout_confirmation_default.php edit and with ropu's responsehandler.php 11-23-06 edit.

    The GCO button is displaying on the login page and the shopping cart page.

    However the Google Checkout radio button does not appear on Step 2 of Checkout (Payment Method).

    Before I dive in and over think this problem, are there any common reasons this might occur?

    2. Also I see the very first line of gcheckout.php is:
    require_once('admin/includes/configure.php');

    Any good reason the admin directory needs to be hard coded this way? For those storeowners who renamed their 'admin' directory as official Zen Cart security recommendations highly recommends, this will be problematic.

    3. Anyone yet test Google Checkout by purchasing/downloading virtual softgoods (a.k.a. instant download products)? If so is the customer redirected back to the checkout success page with the download link displayed?

    Thanks,
    Woody

  10. #270
    Join Date
    Oct 2006
    Location
    Hanover, PA
    Posts
    71
    Plugin Contributions
    0

    Default Re: Google Checkout module for Zen Cart released

    Quote Originally Posted by BlessIsaacola View Post
    Are you saying the details of the item that is purchased is displayed on your Admin page like regular ZC order? If so please share what you did different because I do not see the item purchase on the Adam side of my ZC. I see the order and the fact that they use googlecheckout but not the product list that is included in the order.

    Thanks
    Do you mean what I have attached here? All I did was put the files in the appropriate place.

    Does no one know the answer to my question?
    Attached Images Attached Images  

 

 

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