Page 95 of 394 FirstFirst ... 45859394959697105145195 ... LastLast
Results 941 to 950 of 3932
  1. #941
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    I'll be out next week, in Argentina we are in hollydays

    i'll be having a look to the forum, but not as regularly as usual

    ropu

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

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

    ropu,

    This is parsing the XML output in the shopping cart and you have to scroll so far to the right to see the Google Checkout button. This obviously, is an unacceptable behavior as no Merchant will want the XML output to their customers.

    Also, the button issue still hasn't been resolved. It's displaying the standard button instead of the promotion button.

    Thanks for this new release.

  3. #943
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

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

    I'm getting the same as BlessIsaacola. International shipping is not working either (I use USPS calculated shipping).

    Many nice features, unfortunately cannot be used in a live shop as it is right now.

  4. #944
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Quote Originally Posted by BlessIsaacola View Post
    ropu,

    This is parsing the XML output in the shopping cart and you have to scroll so far to the right to see the Google Checkout button. This obviously, is an unacceptable behavior as no Merchant will want the XML output to their customers.

    Also, the button issue still hasn't been resolved. It's displaying the standard button instead of the promotion button.

    Thanks for this new release.
    Sotty about that debug info

    please delete googlecheckout/gcheckout.php line 692

    PHP Code:
    <xmp>
    <?=$gcheck->getXml();?>
    </xmp>

    and regarding the button, im pretty sure that the 10&#37; promotion, is for production, and is not shown when u are in sandbox

    because the code for buttons is the same

    im uploading the new version,
    http://google-checkout-zencart.googl...1.3RC1rev1.zip

    ropu
    Last edited by ropu; 31 Mar 2007 at 01:23 PM.

  5. #945
    Join Date
    Feb 2007
    Location
    Santa Cruz, CA
    Posts
    14
    Plugin Contributions
    0

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

    Hi All.
    I saw one other person post with this issue, but no real solution. Everything is working fine with my Google checkout, but on an empty shopping cart page, I get the following error and a greyed-out GCO button:
    Code:
    Fatal error:  Cannot redeclare selfurl() (previously declared in /home/sally/public_html/store/googlecheckout/gcheckout.php:38) in /home/sally/public_html/store/googlecheckout/gcheckout.php on line 42
    I have done searched the code of the entire site, and there is only one declaration of selfURL().

    Any ideas?

    Thanks for any help...

  6. #946
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Quote Originally Posted by nabrown78 View Post
    Hi All.
    I saw one other person post with this issue, but no real solution. Everything is working fine with my Google checkout, but on an empty shopping cart page, I get the following error and a greyed-out GCO button:
    Code:
    Fatal error:  Cannot redeclare selfurl() (previously declared in /home/sally/public_html/store/googlecheckout/gcheckout.php:38) in /home/sally/public_html/store/googlecheckout/gcheckout.php on line 42
    I have done searched the code of the entire site, and there is only one declaration of selfURL().

    Any ideas?

    Thanks for any help...
    Hi nabrown

    i don'y really know the cause of the issue

    but this should solve it

    replace in googlecheckout/gcheckout.php 38

    PHP Code:
       function selfURL() { 
          
    $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" ""
          
    $protocol strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s
          
    $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]); 
          return 
    $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI']; 
        } 
    with this

    PHP Code:
      if (!function_exists('selfURL')) {
        function 
    selfURL() { 
          
    $s = empty($_SERVER["HTTPS"]) ? '' : ($_SERVER["HTTPS"] == "on") ? "s" ""
          
    $protocol strleft(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s
          
    $port = ($_SERVER["SERVER_PORT"] == "80") ? "" : (":".$_SERVER["SERVER_PORT"]); 
          return 
    $protocol."://".$_SERVER['SERVER_NAME'].$port.$_SERVER['REQUEST_URI']; 
        }
      } 
    please send your feedbacks

    hope this helps

    ropu

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

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

    ropu,

    I am reporting back that everything so far works flawlessly except tax. It's not calculating taxes but UPS merchant calculated shipping as well as others are currently working.

    This is a major improvement. Thanks!

  8. #948
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

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

    BlessIsaacola, when you say tax isn't working, what exactly do you mean?

    The only problem I have with the tax calculation is that GC is not rounding according to the settings I specified, I have set it to Total and Half Up, so that if for example total tax is 10.825, it should round to 10.83, but instead it seems to keep using the default and rounding to 10.82

    There's still a problem with international shipping. It doesn't work yet. Does it work for you BlessIsaacola?


    Also, if I want to go with installation Option B, e.i., manually editing orders.php, tpl_checkout_payment_default.php, tpl_login_default.php and tpl_shopping_cart_default.php, I'm having a bit of hard time trying to figure out where the edits go in the in the three template files because the instructions seem to be based on an older version and not the latest current ZC 1.3.7, the instructions refer to slightly different code and line number than that found in the latest files.
    Perhaps you could take a look at the latest files and change the instructinos to refer to the exact code and line number.

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

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

    Quote Originally Posted by tj1 View Post
    BlessIsaacola, when you say tax isn't working, what exactly do you mean?

    The only problem I have with the tax calculation is that GC is not rounding according to the settings I specified, I have set it to Total and Half Up, so that if for example total tax is 10.825, it should round to 10.83, but instead it seems to keep using the default and rounding to 10.82

    There's still a problem with international shipping. It doesn't work yet. Does it work for you BlessIsaacola?


    Also, if I want to go with installation Option B, e.i., manually editing orders.php, tpl_checkout_payment_default.php, tpl_login_default.php and tpl_shopping_cart_default.php, I'm having a bit of hard time trying to figure out where the edits go in the in the three template files because the instructions seem to be based on an older version and not the latest current ZC 1.3.7, the instructions refer to slightly different code and line number than that found in the latest files.
    Perhaps you could take a look at the latest files and change the instructinos to refer to the exact code and line number.
    Actually, the template files did not change from previous version so if you have a working template from previous version you should be good.

    I tried checking out with a shipping address that you be taxed because it's one of the states included in the zone for taxing. Unfortunately, when I go to check out it did not include tax.

    As far as internationaly goes, I got shipping option during checkout instead of the standard "We currently do not ship to your location" but not all options returned calculated shipping so I still have to look more into this.

    This is definitely hit and miss and I haven't tested for all scenarios. My main tests are for soft goods, calculated shipping and tax calculation. We do not have too many international customers currently so I am not too concern about that. At least I can handle them with table rate or zones if calculated doesn't work.

    I will continue testing and report back.

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

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

    Quote Originally Posted by tj1 View Post
    BlessIsaacola, when you say tax isn't working, what exactly do you mean?

    The only problem I have with the tax calculation is that GC is not rounding according to the settings I specified, I have set it to Total and Half Up, so that if for example total tax is 10.825, it should round to 10.83, but instead it seems to keep using the default and rounding to 10.82

    There's still a problem with international shipping. It doesn't work yet. Does it work for you BlessIsaacola?


    Also, if I want to go with installation Option B, e.i., manually editing orders.php, tpl_checkout_payment_default.php, tpl_login_default.php and tpl_shopping_cart_default.php, I'm having a bit of hard time trying to figure out where the edits go in the in the three template files because the instructions seem to be based on an older version and not the latest current ZC 1.3.7, the instructions refer to slightly different code and line number than that found in the latest files.
    Perhaps you could take a look at the latest files and change the instructinos to refer to the exact code and line number.
    tj, orders.php is based on 1.3.7
    but templates, im not sure... the truth is that i missed up checking that.

    thx for the reminder...

    regarding intl shipping, what is the issue?

    please double check that ur shipping option is under the internationl_types in includes/modules/payment/googlecheckout.php


    if is not there, it wont be show for countries different form US.

    that way i now added flat intl, table intl, etc

    btw im runing a batch script comparing fedex and ups response times usign zencart shipping class, and times for ups arent good, ill post results and teh scrip so u can also test it, and the send results to google guys!

    hope this helps

    ropu

 

 

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