Page 74 of 394 FirstFirst ... 2464727374757684124174 ... LastLast
Results 731 to 740 of 3932
  1. #731
    Join Date
    Feb 2007
    Location
    Chicago, IL
    Posts
    63
    Plugin Contributions
    0

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

    Does anyone have a store with this feature working on it? I would love to take a peek to see how it will look to a customer.

    I am hoping that this mod will be the absolute last addition to my cart before I think about going live!
    [FONT=Tahoma]- S[FONT=Verdana]teph -
    Fetch Designs: Standards Compliant Web Design

    [/FONT] [/FONT] [FONT=Verdana] Pink Puppy Designs[/FONT][FONT=Verdana]
    [/FONT] [FONT=Verdana] "Collars dogs REALLY want to wear!"
    www.PinkPuppyDesigns.com[/FONT]

  2. #732
    Join Date
    Jan 2007
    Location
    MO
    Posts
    24
    Plugin Contributions
    0

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

    What file do I put the code for the google tracking code in? I am starting to get confused now.

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

    Default Re: Help!!! Technical Question About Google Checkout Setup

    Quote Originally Posted by ropu View Post
    humbll, hi!

    yes, is true, there are 2
    <?php
    if (sizeof($selection) > 1) {
    ?>

    But there is just ONE at line 127 , the second one. Im adding some bigger part of the code so you can see how the final code must be.

    PHP Code:
    <?php
      $radio_buttons 
    0;
      for (
    $i=0$n=sizeof($selection); $i<$n$i++) {
    ?>
    <?php
        
    if (sizeof($selection) > 1) {
          if(
    $selection[$i]['id'] == "googlecheckout")
            continue;
     
    ?>
    <?php 
    echo zen_draw_radio_field('payment'$selection[$i]['id'], ($selection[$i]['id'] == $_SESSION['payment'] ? true false), 'id="pmt-'.$selection[$i]['id'].'"'); ?>
    <?php
        
    } else {
    ?>
    <?php 
    echo zen_draw_hidden_field('payment'$selection[$i]['id']); ?>
    <?php
        
    }
    ?>
    ropu
    This is what I have in mine:

    PHP Code:
    <?php
      $radio_buttons 
    0;
      for (
    $i=0$n=sizeof($selection); $i<$n$i++) {
    ?>
    <?php
        
    if (sizeof($selection) > 1) {
          if(
    $selection[$i]['id'] == "googlecheckout")
            continue;
            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
        
    }
    ?>
    Are you saying to delete the line if (empty($selection[$i]['noradio'])) { even though it's part of ZC 1.3.7 template?

  4. #734
    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
    I have installed and reinstalled everything. However, the google button is still not enabled on the site.

    The message in response_error.log is: HTTP Basic Authentication failed. Can't retrive Merchant Id/Key, Installed over CGI??

    If I set .htaccess Basic Authentication Mode to True instead of false, I am not able to activate the configuration file. Clicking on the link generates the following error: You don't have permission to access /myadminfolder/includes/htaccess.php on this server.

    Please provide assistance with how to configure the .htaccess if it's need and where the file needs to be uploaded. Also, why does everything work fine for 1.0.4r but now it cannot connect to GC?

    Thanks!
    please, download this file
    http://google-checkout-zencart.googl...n/htaccess.php

    and put it under admin/

    run it from there.

    u should have perms

    ropu

  5. #735
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

    Default Re: Help!!! Technical Question About Google Checkout Setup

    Quote Originally Posted by BlessIsaacola View Post
    This is what I have in mine:

    PHP Code:
    <?php
      $radio_buttons 
    0;
      for (
    $i=0$n=sizeof($selection); $i<$n$i++) {
    ?>
    <?php
        
    if (sizeof($selection) > 1) {
          if(
    $selection[$i]['id'] == "googlecheckout")
            continue;
            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
        
    }
    ?>
    Are you saying to delete the line if (empty($selection[$i]['noradio'])) { even though it's part of ZC 1.3.7 template?
    No, that quote was for an other older release. it should be ok as you have it.

    ropu

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

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

    Quote Originally Posted by jhaase83 View Post
    What file do I put the code for the google tracking code in? I am starting to get confused now.
    im sorry jhaase, i cant fully understand your question.

    ropu

  7. #737
    Join Date
    Jan 2007
    Location
    MO
    Posts
    24
    Plugin Contributions
    0

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

    When I was getting my Google Analytics set up it wanted me to put a tracking code on every page in my web site I want it to track. And for the life of me right now I don't remember what file to put it under. Or do I even need to worry about that?

  8. #738
    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 ropu View Post
    please, download this file
    http://google-checkout-zencart.googl...n/htaccess.php

    and put it under admin/

    run it from there.

    u should have perms

    ropu
    I am assuming that running that file should create 2 files in the googlecheckout folder? That did not happen. I have pasted below the result of running that file:

    .htaccess file:
    <<<Start---
    AuthName "Google checkout Basic Authentication"
    AuthType Basic
    AuthUserFile /var/www/html/googlecheckout/.htpasswd
    require valid-user
    ---End>>>


    .htpasswd file:
    <<<Start---
    sandboxaccount(was here):JztdoYcegScMQ
    productionaccount (was here):tb37Ly2XWynww
    ---End>>>

    what does the bolded line about valid-user mean?

    Also, is there a way to find out if PHP is install over CGI because I do not believe that's the case with mine. Do I need to comment out a block of code from responsehandler.php before running htaccess.php?

    It would really help if there is a more straight forward approach to installing this mod.

    Things like:

    To check if your PHP is install over CGI do the following....
    IF your PHP is install over CGI, perform the following steps in order...

    Something simpler not all these try and error process. There has to be a consistent way of installing Google Checkout instead of all the work arounds for each person.

    This is a great mod when it works! Thanks!

  9. #739
    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
    I am assuming that running that file should create 2 files in the googlecheckout folder? That did not happen. I have pasted below the result of running that file:

    .htaccess file:
    <<<Start---
    AuthName "Google checkout Basic Authentication"
    AuthType Basic
    AuthUserFile /var/www/html/googlecheckout/.htpasswd
    require valid-user
    ---End>>>


    .htpasswd file:
    <<<Start---
    sandboxaccount(was here):JztdoYcegScMQ
    productionaccount (was here):tb37Ly2XWynww
    ---End>>>

    what does the bolded line about valid-user mean?

    Also, is there a way to find out if PHP is install over CGI because I do not believe that's the case with mine. Do I need to comment out a block of code from responsehandler.php before running htaccess.php?

    It would really help if there is a more straight forward approach to installing this mod.

    Things like:

    To check if your PHP is install over CGI do the following....
    IF your PHP is install over CGI, perform the following steps in order...

    Something simpler not all these try and error process. There has to be a consistent way of installing Google Checkout instead of all the work arounds for each person.

    This is a great mod when it works! Thanks!
    yes, it supposed to create both files!

    do you check the boxes "Check if dir exists:" and "Create Files:" ??
    the require valid-user is a directive of htaccess that tells the browser to look for valid users in .htpasswd

    you DONt have to comment any code in responsehandler.php just need to enable or disable this feature from the amin UI!

    just set tru to this
    HTML Code:
    .htaccess Basic Authentication Mode with PHP over CGI?
    This configuration will disable PHP Basic Authentication in the responsehandler.php to validate Google Checkout messages.
    If setted True you MUST configure your .htaccess files here.
    and add the htaccess with the script. .

    i take notes about an easier readme file. thanks for your feedback

    ropu

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

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

    Quote Originally Posted by jhaase83 View Post
    When I was getting my Google Analytics set up it wanted me to put a tracking code on every page in my web site I want it to track. And for the life of me right now I don't remember what file to put it under. Or do I even need to worry about that?
    if you want to track more pages of your site, you must add that JS code.

    The feature i added automatically adds that code to all the pages where the Google Checkout Button appears, also add a feature that joins Google Analytics with Google Checkout. As the link says you must activate in google analytics the e-commerce compatibility.
    http://code.google.com/apis/checkout...merceReporting

    no need to do anything else.

    any doubts please ask me, ill add it to the docs. im trying to have better doc, but not to easy and i dont have plenty of time, sorry for that.

    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