Page 66 of 394 FirstFirst ... 1656646566676876116166 ... LastLast
Results 651 to 660 of 3932
  1. #651
    Join Date
    Oct 2006
    Location
    argentina
    Posts
    243
    Plugin Contributions
    1

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

    Quote Originally Posted by eaglewu View Post
    The order of GC is not shown in the admin. I think several people already mentioned this, but I did not see the solution.
    I check my sql, then I find the two tables google_orders and google_checkout were created (am I right?). Since all the tables of mine have the prefix. I think add the prefix to these two tables may work. But I don't know how to do that. Can anyone help to write the sql codes?

    This may not work out, but I will try it.

    Thanks,
    Hi, that in fact wont change anything, table names are stored in the includes/modules/payment/googlecheckout.php class.

    Please, double check ur logs, configuration and Doc files.

    if that doesnt work, try to fully describe ur issue...

    ropu

  2. #652
    Join Date
    Jul 2006
    Posts
    40
    Plugin Contributions
    0

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

    completed a site that uses two custom shipping modules for R&L freightlines, and the new UPSxml interface. Reading the GCO notes we need to , according to the release notes .....

    "For each enabled module you'll have to set the default values in the Google Checkout Admin UI.This Value will be used if for any reason Google Checkout cannot reach your API callback to calculate the shipping price. "

    >> where is this configured .... i dont see a place to do this in GCO admin or in ZC admin

    "The available shipping methods for each shipping provider must be configured in includes/modules/payment/googlecheckout.php in the mc_shipping_methods parameter. If you want to disable one or more methods, just comment them out.
    Be aware that if you mix flat rate and real time rates, both will be taken as merchant-calculated-shipping. "

    >> where is this ?

    Can you give me some clues on what is required to get these extra shipping modules to take effect . The notes refer to includes/modules/payment/googlecheckout.php in the mc_shipping_methods there is no such code structure.

    im running a ZC 1.3.6 .... and GCO
    GOOGLE CHECKOUT PLUGIN FOR ZEN CART v1.0.5b1 - 1/12/2007

    Please , any help is gettign my two shipping moduels to with with GCO is appreciated

  3. #653
    Join Date
    Jul 2006
    Posts
    40
    Plugin Contributions
    0

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

    We completed a ZC site that uses two custom shipping modules for R&L freightlines, and the new UPSxml interface. Reading the GCO notes we need to , according to the release notes .....

    "For each enabled module you'll have to set the default values in the Google Checkout Admin UI.This Value will be used if for any reason Google Checkout cannot reach your API callback to calculate the shipping price. "

    >> where is this configured .... i dont see a place to do this in GCO admin or in ZC admin

    "The available shipping methods for each shipping provider must be configured in includes/modules/payment/googlecheckout.php in the mc_shipping_methods parameter. If you want to disable one or more methods, just comment them out.
    Be aware that if you mix flat rate and real time rates, both will be taken as merchant-calculated-shipping. "

    >> where is this ?

    Can you give me some clues on what is required to get these extra shipping modules to take effect . The notes refer to includes/modules/payment/googlecheckout.php in the mc_shipping_methods there is no such code structure.

    im running a ZC 1.3.6 .... and GCO
    GOOGLE CHECKOUT PLUGIN FOR ZEN CART v1.0.5b1 - 1/12/2007

    Please , any help is gettign my two shipping moduels to with with GCO is appreciated

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

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

    Quote Originally Posted by regenbauma View Post
    completed a site that uses two custom shipping modules for R&L freightlines, and the new UPSxml interface. Reading the GCO notes we need to , according to the release notes .....

    "For each enabled module you'll have to set the default values in the Google Checkout Admin UI.This Value will be used if for any reason Google Checkout cannot reach your API callback to calculate the shipping price. "

    >> where is this configured .... i dont see a place to do this in GCO admin or in ZC admin

    "The available shipping methods for each shipping provider must be configured in includes/modules/payment/googlecheckout.php in the mc_shipping_methods parameter. If you want to disable one or more methods, just comment them out.
    Be aware that if you mix flat rate and real time rates, both will be taken as merchant-calculated-shipping. "

    >> where is this ?

    Can you give me some clues on what is required to get these extra shipping modules to take effect . The notes refer to includes/modules/payment/googlecheckout.php in the mc_shipping_methods there is no such code structure.

    im running a ZC 1.3.6 .... and GCO
    GOOGLE CHECKOUT PLUGIN FOR ZEN CART v1.0.5b1 - 1/12/2007

    Please , any help is gettign my two shipping moduels to with with GCO is appreciated
    hi regenbauma,

    this is a resumed copy of the ncludes/modules/payment/googlecheckout.php mc_shipping_methods method:


    PHP Code:
     $this->mc_shipping_methods = array('usps' => array(     'domestic_types' => 
                                                                    array(    
    'Express' => 'Express Mail'
                                                                            
    'First Class' => 'First-Class Mail'
                                                                                                
    'Library' => 'Library'), 
                                                                   
    'international_types' => 
                                                                       array(    
    'GXG Document' => 'Global Express Guaranteed Document Service'
                                                                            
    'GXG Non-Document' => 'Global Express Guaranteed Non-Document Service'
                                                                            
    'Express' => 'Global Express Mail (EMS)'
                                                            
    ), 
                                               
    'zones' => array(     
                                                                
    'domestic_types' => array('zones' => 'Zones Rates'
                                                               ),  
                                                                
                                               
    'fedexexpress' => array(     
                                                                
    'domestic_types' => array( 
                                                                                        
    '03' => 'FedEx 2Day'
                                                                                        
    '20' => 'FedEx Express Saver'
                                                               ),  
                                               
    'fedexground' => array(     
                                                                
    'domestic_types' => array( 
                                                                                            
    '92' => 'FedEx Ground Service'
                                                               ),  
                                            
    // flat methods         
                                            
    'flat' => array(     
                                                                
    'domestic_types' => array('flat' => GOOGLECHECKOUT_FLAT_RATE_SHIPPING
                                                               ), 
                                            
    'item' => array(     
                                                                
    'domestic_types' => array('item' => GOOGLECHECKOUT_ITEM_RATE_SHIPPING
                                                               ), 
                                            
    'table' => array(     
                                                                
    'domestic_types' => array('table' => GOOGLECHECKOUT_TABLE_RATE_SHIPPING
                                                               )  
                                             
                                            ); 
    you should also add this

    PHP Code:
          $this->mc_shipping_methods_names = array(
          
    'usps' => 'USPS',
          
    'fedexexpress' => 'Fedex Express',
          
    'fedexground' => 'Fedex Ground',
          
    'zones' => 'Zones'
          
    'flat' => 'Flat Rate',
          
    'item' => 'Item',
          
    'table' => 'Table'); 
    hope this helps.

    ropu

  5. #655
    Join Date
    Oct 2006
    Location
    Hanover, PA
    Posts
    71
    Plugin Contributions
    0

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

    Wow, five months later and there still isn't a stable release of this mod?
    [FONT=Century Gothic].: Stef :.[/FONT]

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

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

    Quote Originally Posted by TripleMoons View Post
    Wow, five months later and there still isn't a stable release of this mod?
    Tripple, the release is stable with a flat Zencart installation, the issue is when, as you may notice, must be merged with many different contributions and server configurations.

    Im publishing some demos servers to show how this module works.

    For now the only big issue is the time out problem with shipping calculations. but that is not a GC module fault, GC srv times out in 3 secs, and as you should know FEdex, usps, ups, some times take longer to response. More over, php doe NOT have threads, so is difficult to do parallel instead of serial ones, this makes providers timeout to sum, increasing the chance of GC srv timeout. Any ideas are very appreciated!

    Here is what the idea is about,
    http://www.webforumz.com/php-forum/1....htm#post96102

    if you still have issues, please, post them or PM me, im sure we can solve them

    Thank you for all your collaboration,

    ropu

  7. #657
    Join Date
    Sep 2006
    Posts
    14
    Plugin Contributions
    0

    Default Google Checkout not updating in Admin

    I too am having trouble getting Google Checkout orders to show up in admin. I've double checked the installation and everything appears to be in order. I do not receive any error messages from Google, or from the responsehandler.php.

    What should I be looking for that would cause Zencart to not update with orders processed via Google Checkout?

    Any help would be appriciated.

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

    Default Re: Google Checkout not updating in Admin

    Quote Originally Posted by nresults View Post
    I too am having trouble getting Google Checkout orders to show up in admin. I've double checked the installation and everything appears to be in order. I do not receive any error messages from Google, or from the responsehandler.php.

    What should I be looking for that would cause Zencart to not update with orders processed via Google Checkout?

    Any help would be appriciated.
    nresults, have you look at the logs under googlecheckout/ ?

    you have tested responshandler.php with responsehandler_test.php in my signature?

    give us your site configuration, zencart version, GC module version, web server config, using CGI?

    all this info help us determine where is ur issue.

    thanks, ropu

  9. #659
    Join Date
    Jun 2006
    Location
    Pacific Northwest
    Posts
    6
    Plugin Contributions
    0

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

    "New"release, what date? If one installed this in the last weeks, is it already out of date?


    Quote Originally Posted by jacob13moon View Post
    Hi everyone,

    This is Jacob from the Google Checkout team.

    I'd like to let you know that we just released Google Checkout module for Zen Cart. This module provides Level 2 implementation of Google Checkout with Zen Cart, enabling you to provide Google Checkout to buyers and process orders through your admin UI.

    This project is hosted at http://code.google.com/p/google-checkout-zencart where you can find the latest release at any time.


    Thanks,
    Jacob

  10. #660
    Join Date
    Sep 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Google Checkout not updating in Admin

    Quote Originally Posted by ropu View Post
    nresults, have you look at the logs under googlecheckout/ ?

    you have tested responshandler.php with responsehandler_test.php in my signature?

    give us your site configuration, zencart version, GC module version, web server config, using CGI?

    all this info help us determine where is ur issue.

    thanks, ropu
    Thanks for your prompt response Ropu!

    The responsehandler_test.php returned the following:

    **************
    HTTP/1.1 200 OK
    Date: Tue, 13 Feb 2007 20:45:24 GMT
    Server: Apache/1.3.37 (Unix) mod_fastcgi/2.4.2 mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635.SR1.2 mod_ssl/2.8.28 OpenSSL/0.9.7a PHP-CGI/0.1b
    Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
    Expires: Thu, 19 Nov 1981 08:52:00 GMT
    Pragma: no-cache
    X-Powered-By: PHP/4.4.3
    Set-Cookie: zenid=b2d57e15f53f5eeaaf4db13bd6d248af; path=/; domain=<<removed for privacy>>
    Transfer-Encoding: chunked
    Content-Type: text/html; charset=iso-8859-1

    Time to response: 2.30815291405 segs
    Note: This script MUST response in less than 3 sec. so GC srv doesn't timeout.'
    ***************

    I'm currently running the following:
    Zencart Version: V1.3.6
    Database Patch Level: 1.3.6
    Database: MySQL 4.1.21-standard
    HTTP Server: Apache/1.3.37 (Unix)
    PHP Version: 4.4.3 (Zend: 1.3.0)
    Server API: CGI/FastCGI
    PHP API: 20020918
    PHP Extension: 20020429
    Google Checkout: Version 1.0.4r

    The response_error.log file contains the following error message, repeated with a new date for each transaction attempt.

    "Tue Feb 13 14:45:24 CST 2007:- Line 119: headers['Authorization'] is NULL."

    I'm a little new to this. I hope I have given you the information you need.

    Thanks for your help!

    nresults

 

 

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