Page 5 of 24 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 238
  1. #41
    Join Date
    Feb 2007
    Location
    Pennsylvania
    Posts
    806
    Plugin Contributions
    0

    Default Re: USPS International shipping problem...

    Thanks Linda! Workin' Great so far on 1.3.8>upgrades>1.3.9h

    John

  2. #42
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: USPS International shipping problem...

    Quote Originally Posted by SeanLoberg View Post
    Also, if, after installing Ajah's quick fix, international is showing up, but domestic is not, change, on line 193 the zen_round from 3 to 2 ...
    Line 193 old: $shipping_ounces = zen_round($shipping_ounces, 3);

    Line 193 new: $shipping_ounces = zen_round($shipping_ounces, 2);

    for some reason, USPS can't handle 3 digits!

    P.S. All credit to Ajeh, who found this for me months ago! Thanks again for the quick action Ajeh!!!
    Did you find you needed the 2 digit for domestic or international?

    What are your settings in the Shipping/Packaging?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #43
    Join Date
    May 2006
    Posts
    310
    Plugin Contributions
    0

    Default Re: USPS International shipping problem...

    thank you Ajeh for the super fast response. In case anyone wants to know if this works with rather old versions of zencart, I run 1.3.0.2 and it appears to have taken just fine.

    I should also note that the weights I have set in my shop are 3 decimal points and there were no issues returning a postage estimate - international nor domestic.
    Last edited by woodlandsprite; 4 Jan 2011 at 02:19 AM. Reason: add info on rounding
    Live again! http://spritelygoods.com Rebuilt on ZC v 1.5.1 from 1.3.0.2

  4. #44
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: USPS International shipping problem...

    Usually, I have only seen that issue on certain cases of Tare Settings ... but I am looking for a better pattern ...

    I hate to default it to 2 digit unless it is absolutely necessary as that causes issues for folks with very low weight products ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #45
    Join Date
    Apr 2009
    Posts
    4
    Plugin Contributions
    0

    Default Re: USPS International shipping problem...

    I too had customers telling me they could not place orders. This started a day or two ago. I did some Googling and came up to this thread.

    Applied the above fix and it works great! I have 1.3.8a

    Love this site!

  6. #46
    Join Date
    Mar 2008
    Posts
    15
    Plugin Contributions
    0

    Default Re: USPS International shipping problem...

    Quote Originally Posted by Ajeh View Post
    Usually, I have only seen that issue on certain cases of Tare Settings ... but I am looking for a better pattern ...

    I hate to default it to 2 digit unless it is absolutely necessary as that causes issues for folks with very low weight products ...
    Quote Originally Posted by Ajeh View Post
    Did you find you needed the 2 digit for domestic or international?

    What are your settings in the Shipping/Packaging?
    Good morning Ajeh! I had it backwards in my previous post (sorry everyone)... if International is not showing up, round down to 2 digits! I have very low weight products ...

    Running 1.3.9e ... here are my USPS settings:
    ==========================================
    Enable USPS Shipping = True
    Which server to use = production
    Handling Fee = 0
    Handling Per Order or Per Box = Order
    Tax Class = Non-Taxable Goods
    Tax Basis = Shipping
    Shipping Zone = --none--
    Sort Order = 30
    All Packages are Machinable = False
    USPS Options = Display weight, Display transit time
    Domestic Shipping Methods = EXPRESS, PRIORITY
    International Shipping Methods = Express Mail Int, Priority Mail International, First Class Mail Int Package
    Debug Mode = Off
    ==========================================
    Here is my tare info:
    ==========================================
    Enter the Maximum Package Weight you will ship 50
    Package Tare Small to Medium - added percentage:weight 15:0
    Larger packages - added packaging percentage:weight 20:0
    Display Number of Boxes and Weight Status 0
    Order Free Shipping 0 Weight Status 1
    Shipping Estimator Display Settings for Shopping Cart 2
    ==========================================

  7. #47
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: USPS International shipping problem...

    Yes, based on your Product Weights and your specific Tare Rates, the International can fail on certain quantities, unless you change the rounding to 2 ...

    Why the International will not accept the same values as the National is a USPS mystery in their ... umm ... infinite wisdom ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #48
    Join Date
    Nov 2008
    Posts
    19
    Plugin Contributions
    0

    Default Re: USPS International shipping problem...

    Hi Linda,
    You're awesome!
    My old USPS php had a little customization to limit the First Class weight to 2.2 pounds. If you can help me to add this restriction to the 2011 USPS php I will appreciate it.
    Here is my old customization for my 1.37 cart

    PHP Code:
     $methods[] = array('id' => $type,
              
    'title' => ((isset($this->types[$type])) ? $this->types[$type] : $type),
              
    'cost' => ($cost MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
              */
                  if (
    $type == 'First-Class Mail International Package' && $shipping_weight >= 2.2) {
                
    // skip First Class Mail Int Package on >= 2.2
              
    } else {
              
    $methods[] = array('id' => $type,
                                 
    'title' => $title,
                                 
    'cost' => ($cost MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes); 

  9. #49
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: USPS International shipping problem...

    Try using:
    First-Class Mail International Package**
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #50
    Join Date
    Feb 2007
    Posts
    210
    Plugin Contributions
    0

    Default Re: USPS International shipping problem...

    Thank you - again - I guess we should all just make a yearly appt. with Ajeh and the USPS module?
    Grrrr,,,,

 

 
Page 5 of 24 FirstFirst ... 3456715 ... LastLast

Similar Threads

  1. USPS international shipping calculation problem
    By OrionsAttic in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 27 Jun 2011, 04:26 PM
  2. USPS International Shipping Problem and Solution
    By grafcaps.com in forum Built-in Shipping and Payment Modules
    Replies: 10
    Last Post: 13 May 2011, 12:58 AM
  3. USPS domestic flat rate box I see it for international
    By cshart in forum Built-in Shipping and Payment Modules
    Replies: 15
    Last Post: 22 Nov 2010, 08:53 PM
  4. Replies: 2
    Last Post: 23 Aug 2009, 11:25 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