Page 117 of 394 FirstFirst ... 1767107115116117118119127167217 ... LastLast
Results 1,161 to 1,170 of 3932
  1. #1161
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    Quote Originally Posted by ropu View Post
    please post the step-by-step to reproduce it, and i'll test it
    also tell me if u can do it in http://demo.globant.com/~brovagnati/zen_demo2/
    I thought I did provide a "step-by-step". I could write a novel if you want
    Will checkout your demo to see if I can replicate issue there.

    Woody

  2. #1162

    Default Shipping amount not showing in Google

    Address is fine but the cost of shipping doesn't appear. It says: (Shipping and tax calculated on next page)

    But when you go to the next page there are no shipping fees. It worked before but I obviously did something wrong. Any help is appreciated.


  3. #1163
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Quote Originally Posted by Woodymon View Post
    getting closer...I think.

    I used this code
    PHP Code:
    <?php
        $cart 
    $_SESSION['cart']; 
        if ( 
    MODULE_PAYMENT_GOOGLECHECKOUT_VIRTUAL_GOODS == 'True' && $cart->get_content_type() != 'physical' ) {
            echo 
    '<div class="warning">' MODULE_PAYMENT_GOOGLECHECKOUT_TEXT_VIRTUAL '</div>';
          }
    ?>
    Then I visited an eBook product page. The page rendered as normal but the expected warning text did not display.

    So after:
    $cart = $_SESSION['cart'];

    For debugging I added:
    echo $cart;

    And I observed:
    Code:
    Object id #4
    Any ideas?

    Thanks,
    Woody
    yes woody, the issue is that the shipping_cart.php class is not loaded before u are trying to grap the object from session, so it doesnt know what class to use. so u must include that file before getting the cart from session.

    ropu

  4. #1164
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

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

    Quote Originally Posted by dharma View Post
    Since ZC as of 1.3.7 has Paypal Express Checkout code in the core files, I wanted to suggest that in the next version of GCO be compatible with the existing PPE (have both PPE and GCO working at the same time).
    With the latest 1.3RC2 update Ropu has included the current 1.37 template files (as provided by Chainman), so no need for template merging, unless you have customized your login or shopping cart template pages or admin orders page.

    So "compatibility" with PPEC is a non-issue.

    when it comes to accepting payments, this should be along with paypal part of the core/base files, and not a mod left to a few hard working people....but fully supported by the ZC developers and included in each new ZC release.
    Not sure what you mean by "fully supported".

    Keep in mind that DrByte is doing the updates on the PPEC (and PP IPN) mods along with supporting/developing Zen Cart proper. I don't think he has much time left over to also develop Google Checkout mod. But maybe he does and just does not require sleep

    (Note the PPEC module had been changing almost as fast as the GC module, until recently.)

    I'm sure the founders are happy to have ropu do the heavy lifting.

    Including GC in core is good idea from the shopowner perspective (as good as including PPEC anyway). But that would have to wait at least after the mod is out of beta and that will be some time. And I suspect the support team would first need to agree to become a Google Checkout partner before it would ever become a built in payment module. And they would have to find the time and expertise to support.

    Woody

  5. #1165
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

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

    Thanks woody for your response...I am going by the GCO version available in the downloads 1.0.4r...as it is still there I assumed that was the last stable version....by fully supported, I meant that any bug fixes, patches etc in both PPE and GCO be updated then rolled into the next upgrade of ZC as a whole.

    I am not a big fan of paypal, and am excited by google checkout...but I guess I will have to wait a bit longer...I just wish you guys weren't alone on it, seems like a big job...

    anyway, I do appreciate all the hard work everyone has done so far and am looking forward to it all coming together...

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

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

    Quote Originally Posted by ropu View Post
    yes woody, the issue is that the shipping_cart.php class is not loaded before u are trying to grap the object from session, so it doesnt know what class to use. so u must include that file before getting the cart from session.

    ropu
    That makes sense. But I assume the class was loaded by config.core.php
    (autoloader array for catalog application_top.php)
    See http://www.zen-cart.com/wiki/index.p...als#InitSystem wikitutorials

    At any rate, when I insert into tpl_product_info_display.php:
    require(DIR_WS_CLASSES . 'shopping_cart.php');

    above:
    $cart = $_SESSION['cart'];

    The page stops loading wherever the require was inserted.
    I also tried making it the first line in the file after the comments in the header.

    I also tried:
    include(DIR_WS_CLASSES . 'shopping_cart.php');

    include or require, either appears to have the same effect.

    I observe the error in error log:
    PHP Fatal error: Cannot redeclare class shoppingcart in /home/myaccount/public_html/myshop/includes/classes/shopping_cart.php on line 1878

    Any more ideas?

    Thanks again,
    Woody

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

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

    Quote Originally Posted by dharma View Post
    Thanks woody for your response...I am going by the GCO version available in the downloads 1.0.4r...as it is still there I assumed that was the last stable version....by fully supported, I meant that any bug fixes, patches etc in both PPE and GCO be updated then rolled into the next upgrade of ZC as a whole.
    Get the much newer mod version. 1.3RC2_beta. Ropu posted a link to it on Friday.

    ropu is the developer following up on the work others had implemented before him. He has taken this mod very far in the last month. It can be very difficult if more than one person is developing a mod. The left hand will not necessarily know what the right hand is doing. And note the mod is based on the Google Checkout API (and has to be maintained to support the API).

    The rest of us are just shopowners whom are beta "testers'. You should be one too! Just download the mod, install, test and post your findings.

    Woody

  8. #1168
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Quote Originally Posted by Woodymon View Post
    That makes sense. But I assume the class was loaded by config.core.php
    (autoloader array for catalog application_top.php)
    See http://www.zen-cart.com/wiki/index.p...als#InitSystem wikitutorials

    At any rate, when I insert into tpl_product_info_display.php:
    require(DIR_WS_CLASSES . 'shopping_cart.php');

    above:
    $cart = $_SESSION['cart'];

    The page stops loading wherever the require was inserted.
    I also tried making it the first line in the file after the comments in the header.

    I also tried:
    include(DIR_WS_CLASSES . 'shopping_cart.php');

    include or require, either appears to have the same effect.

    I observe the error in error log:
    PHP Fatal error: Cannot redeclare class shoppingcart in /home/myaccount/public_html/myshop/includes/classes/shopping_cart.php on line 1878

    Any more ideas?

    Thanks again,
    Woody
    woody the file should be included before the session is started.

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

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

    Quote Originally Posted by ropu View Post
    woody the file should be included before the session is started.
    ropu,

    The error log entry I reported appears to indicate that it is indeed loaded before the product info page displays.

    And I have restarted my browser and observe same issue. Or do I have to do something special to kill the session? Should I empty the sessions table in the DB?

    I also put the include at the bottom of application_top.php but then the site would not load.

    Woody

  10. #1170
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Quote Originally Posted by Woodymon View Post
    ropu,

    The error log entry I reported appears to indicate that it is indeed loaded before the product info page displays.

    And I have restarted my browser and observe same issue. Or do I have to do something special to kill the session? Should I empty the sessions table in the DB?

    I also put the include at the bottom of application_top.php but then the site would not load.

    Woody
    try doing a
    PHP Code:
    session_destroy(): 
    and then re-run the code.

 

 

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