Page 97 of 394 FirstFirst ... 47879596979899107147197 ... LastLast
Results 961 to 970 of 3932
  1. #961
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

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

    Quote Originally Posted by knuckle-101 View Post
    Ayone got any idea whats causing this error?


    I have tried everyhting I can think of

    Oops!
    Sprite Mobile Ltd. has sent Google a shopping cart with errors in it. We'll contact them to ask that they fix this problem. As this could be a temporary issue, you can go back in your browser to try checking out again.
    Log in to your GoogleCheckout seller account>Integration>Settings and there you will have more details with an specific error and possible causes.

  2. #962
    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
    I believe the template files are based on 1.3.6, not 1.3.7.
    In 1.3.7, the files contain code for PayPal Express and as someone else mentioned, if you also want to use PayPal Express, you'd need to merge both files otherwise one or the other payment modules will be broken.


    ropu, it would be great if you could base the template files and instructions on 1.3.7 this way no code will be broken or one won't have to merge code from two files.

    Here are the version ids of the template files:

    Current: tpl_checkout_payment_default.php 5414 2006-12-27 07:51:03Z drbyte
    Used on GC: tpl_checkout_payment_default.php 4332 2006-09-01 04:33:16Z ajeh

    Current: tpl_login_default.php 5419 2006-12-28 05:56:39Z drbyte
    Used on GC: tpl_login_default.php 2834 2006-01-11 22:16:37Z birdbrain

    Current: tpl_shopping_cart_default.php 5414 2006-12-27 07:51:03Z drbyte
    Used on GC: tpl_shopping_cart_default.php 4140 2006-08-15 03:37:53Z drbyte
    My bad, I meant that ropu's new release did not have any changes to the template. There has been no change to the actual templates files since 1.0.5. My assumption is you've had this working at one point or the other which meant you wouldn't have applied the code from GoogleCheckout to the three template files affected as well as applied the code changes to admin/orders.php.

    If you didn't have a working template with these changes then you need to obviously apply the code changes to your templates.

    I am using ZV 1.3.7 and Googlecheckout and PayPal Express are cohabitating just fine once the code is applied to the templates.

  3. #963
    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 knuckle-101 View Post
    Ayone got any idea whats causing this error?


    I have tried everyhting I can think of

    Oops!
    Sprite Mobile Ltd. has sent Google a shopping cart with errors in it. We'll contact them to ask that they fix this problem. As this could be a temporary issue, you can go back in your browser to try checking out again.
    Just for testing purpose,

    1. make sure that all your shipping options in Admin-Module-Shipping have zone set to none (this should give you all green status).

    2. Make sure if you have tax zone set up that all your shipping options in Admin-Module-Shipping are all using the same tax zone.

    Test GoogleCheckout again and report back.

    PS. Which version of googlecheckout are you using?

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

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

    Chain_man, here is my code based on version 1.3. Please note that I have removed fedex1 as that's a duplicate as well as all shipping options that we don't actually offer on our site.

    PHP Code:
    $this->mc_shipping_methods = array(
                            
    'usps' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'Express' => 'Express Mail',
                                              
    'First Class' => 'First-Class Mail',
                                              
    'Priority' => 'Priority Mail'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'Express' => 'Global Express Mail (EMS)',
                                              
    'Priority Var' => 'Global Priority Mail - Variable Weight Envelope (single)'
                                               
    ),
                                            ),
                            
    'ups' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    '1DA' => 'Next Day Air',
                                              
    '1DP' => 'Next Day Air Saver',
                                              
    '2DA' => '2nd Day Air',
                                              
    '3DS' => '3 Day Select',
                                              
    'GND' => 'Ground',
                                              
    'STD' => 'Canada Standard',
                                              
    'XPR' => 'Worldwide Express'
                                               
    ),

                                        
    'international_types' =>
                                          array(

                                               ),
                                            ),
                            
    'zones' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'zones' => 'Zones Rates'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'zones' => 'Zones Rates intl'
                                               
    ),
                                            ),
                            
    'fedexexpress' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    '03' => 'FedEx 2Day',
                                              
    '05' => 'FedEx Standard Overnight',
                                              
    '06' => 'FedEx First Overnight',
                                              
    '20' => 'FedEx Express Saver'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    '03' => 'FedEx International Economy',
                                              
    '06' => 'FedEx International First'
                                               
    ),
                                            ),
                            
    'fedexground' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    '90' => 'FedEx Home Delivery',
                                              
    '92' => 'FedEx Ground Service'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    '90' => 'International Home Delivery',
                                              
    '92' => 'International Ground Service'
                                               
    ),
                                            ),
                            
    'freeoptions' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'freeoptions' => 'Free Options'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'freeoptions' => 'Free Options intl'
                                               
    ),
                                            ),
                            
    'freeshipper' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'freeshipper' => 'Free Shipper'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'freeshipper' => 'Free Shipper intl'
                                               
    ),
                                            ),
                            
    'perweightunit' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'perweightunit' => 'Perweight Unit'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'perweightunit' => 'Perweight Unit intl'
                                               
    ),
                                            ),
                            
    'storepickup' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'storepickup' => 'Store Pickup'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'storepickup' => 'Store Pickup intl'
                                               
    ),
                                            ),
                            
    'flat' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'flat' => 'Flat Rate Per Order'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'flat' => 'Flat Rate Per Order intl'
                                               
    ),
                                            ),
                            
    'item' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'item' => 'Flat Rate Per Item'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'item' => 'Flat Rate Per Item intl'
                                               
    ),
                                            ),
                            
    'table' => array(
                                        
    'domestic_types' =>
                                          array(
                                              
    'table' => 'Vary by Weight/Price'
                                               
    ),

                                        
    'international_types' =>
                                          array(
                                              
    'table' => 'Vary by Weight/Price intl'
                                               
    ),
                                            ),
                                      );

    $this->mc_shipping_methods_names = array(
                                             
    'usps' => 'USPS',
                                             
    'ups' => 'UPS',
                                             
    'zones' => 'Zones',
                                             
    'fedexexpress' => 'Fedex Express',
                                             
    'fedexground' => 'Fedex Ground',
                                             
    'freeoptions' => 'Free Options',
                                             
    'freeshipper' => 'Free Shipper',
                                             
    'perweightunit' => 'Perweight Unit',
                                             
    'storepickup' => 'Store Pickup',
                                             
    'flat' => 'Flat Rate',
                                             
    'item' => 'Item',
                                             
    'table' => 'Table',
                                            ); 

  5. #965
    Join Date
    Dec 2005
    Location
    Box Elder, SD
    Posts
    373
    Plugin Contributions
    0

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

    Quote Originally Posted by BlessIsaacola View Post
    The only shipping options available are the ones that we've actually configured on the admin side module-shipping.

    ropu, helped me out with out to set this up to work correctly (I have a feeling ropu will release a tool in the future to help others).

    There was actually a duplicate fedex1 in the originally file downloaded by ropu and that was completely deleted from my file after getting help from ropu.

    considering that merchant shipping calculation is pretty touched it's important to have things set right.


    Okay, I just realized the above code I posted is from my 1.2RC4REV1. I will post updated code based on 1.3
    Thanks! That's just what I needed! I cleared all the details from all the array declarations that I don't use, in the fashion you showed above, and I got decent test results!!

  6. #966
    Join Date
    Jan 2005
    Location
    Winter Haven, FL
    Posts
    163
    Plugin Contributions
    0

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

    I set up a Google Checkout account - but after reading 97 pages of posts (must be near some type of record for Zen Forum) , it looks like setting this up might be more than the average person can tackle. Is there anyone who is offering to set Zen 1.3.7 stores up with Google Checkout - for a nominal fee of course.? Thanks

  7. #967
    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 2004g35 View Post
    I set up a Google Checkout account - but after reading 97 pages of posts (must be near some type of record for Zen Forum) , it looks like setting this up might be more than the average person can tackle. Is there anyone who is offering to set Zen 1.3.7 stores up with Google Checkout - for a nominal fee of course.? Thanks
    What's wrong with your current installation of Google Checkout? Do you have a url we can take look at for how your Google Checkout is working?

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

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

    Quote Originally Posted by 2004g35 View Post
    I set up a Google Checkout account - but after reading 97 pages of posts (must be near some type of record for Zen Forum) , it looks like setting this up might be more than the average person can tackle. Is there anyone who is offering to set Zen 1.3.7 stores up with Google Checkout - for a nominal fee of course.? Thanks
    Don't get discouraged, it's actually very easy to install. My technical knowledge is very limited and I was able to install it correctly on the first try in about 10 minutes and without getting any errors.

    I thought the same thing when I saw all the pages, but I gave it a shot and I'm glad I did, it's very easy to install.

  9. #969
    Join Date
    Mar 2005
    Location
    California
    Posts
    663
    Plugin Contributions
    0

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

    After successfully testing on a test store, I tried to use it on a live store and I got this error when displaying the contents of the cart:
    ***************
    Warning: main(admin/includes/configure.php) [function.main]: failed to open stream: No such file or directory in /public_html/googlecheckout/gcheckout.php on line 33

    Fatal error: main() [function.require]: Failed opening required 'admin/includes/configure.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /public_html/googlecheckout/gcheckout.php on line 33
    **************

    I think the cause of this error is that I, as any ZC user should as recommended for security, have renamed the admin directory.

    Line 33 on googlecheckout/gcheckout.php reads:
    require_once('admin/includes/configure.php');

    I think the instructions should mention one should change this line if the one has renamed the admin directory.

  10. #970
    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
    After successfully testing on a test store, I tried to use it on a live store and I got this error when displaying the contents of the cart:
    ***************
    Warning: main(admin/includes/configure.php) [function.main]: failed to open stream: No such file or directory in /public_html/googlecheckout/gcheckout.php on line 33

    Fatal error: main() [function.require]: Failed opening required 'admin/includes/configure.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /public_html/googlecheckout/gcheckout.php on line 33
    **************

    I think the cause of this error is that I, as any ZC user should as recommended for security, have renamed the admin directory.

    Line 33 on googlecheckout/gcheckout.php reads:
    require_once('admin/includes/configure.php');

    I think the instructions should mention one should change this line if the one has renamed the admin directory.
    Better yet, the code should be smart enough to read the current admin directory instead of being hard coded. Thanks for sharing your solution with the community.

 

 

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