Page 4 of 17 FirstFirst ... 2345614 ... LastLast
Results 31 to 40 of 168
  1. #31
    Join Date
    Nov 2006
    Posts
    13
    Plugin Contributions
    0

    Default Re: USPS new rates May

    Greetings Kim!

    95% of all of our shipments are envelop mailings, either First Class or International Airmail. The remaining 5% are flat rate Priority Mail... about 1,000 pieces per month.

  2. #32
    Join Date
    Jun 2003
    Posts
    33,721
    Plugin Contributions
    0

    Default Re: USPS new rates May

    http://www.usps.com/prices/prices_shape.htm - Really not *that* different from the old.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  3. #33
    Join Date
    Jan 2005
    Location
    Tennessee
    Posts
    1,128
    Plugin Contributions
    0

    Default Re: USPS new rates May

    Is there a new API for getting postage costs? I have not found a new one at USPS. I am sure I will need to tell the code to get the "package rate" for first class mail. Or is the current module already asking for the package rate?

  4. #34
    Join Date
    Sep 2006
    Location
    Colorado Springs CO USA
    Posts
    516
    Plugin Contributions
    2

    Default Re: USPS new rates May

    Quote Originally Posted by yodamo View Post
    Any new news on this yet? I ship to a great many international customers, all packages sent USPS with Airmail Letter or Priority... plus quite a few USA shipments using First Class Mail.

    Any news on an update for the built-in USPS shipping module...?

    I notice that Endicia has only just now (within the last week or so) released their update for their program, and OUCH those extra fields for package size definitely put a drag on shipping speed here. :-/

    [edited to add:]

    Just a thought... but I already track or book internally the dimensions of each product we sell. Something that added dimensions to the product database might be useful? eg. if a customer adds just one item to their cart, then the cart would know to go with xxx size envelop/box, etc. but if the customer added 100, then the cart could calculate what size of envelop or box should be used. Of course, I have no idea on how to implement this, but would sure like to see something like that available at some time.
    I agree. Perhaps the team could consider that for a future ZenCart version?

  5. #35
    Join Date
    Jan 2004
    Posts
    66,446
    Plugin Contributions
    81

    Default Re: USPS new rates May

    Quote Originally Posted by stagebrace View Post
    Is there a new API for getting postage costs? I have not found a new one at USPS. I am sure I will need to tell the code to get the "package rate" for first class mail. Or is the current module already asking for the package rate?
    Apparently there *is*, but there is *no* documentation on it.
    Their posted documentation is for API v1.0. But this month's changes relate to their API v3.0.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #36
    Join Date
    Sep 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: USPS new rates May

    I'm just going to either add a heck of a surcharge or remove the USPS as a shipping method until they get their poop in a group.

  7. #37
    Join Date
    Jan 2005
    Location
    Tennessee
    Posts
    1,128
    Plugin Contributions
    0

    Default Re: USPS new rates May

    Subject
    ---------------------------------------------------------------
    Web Tools APIs release.


    Discussion Thread
    ---------------------------------------------------------------
    Response (Kim E) - 05/13/2007 10:47 AM
    Dear DENNIS SAYER,

    I have researched into when the new documentation will be available. The new user documentation for web tools will be available on our website by noon on Monday May 14, 2007.

    If I can be of assistance to you in the future, please don't hesitate to contact me.

    Thank you for choosing the United States Postal ServiceŽ.

    Regards,

    Kim E

  8. #38
    Join Date
    Jan 2005
    Location
    Tennessee
    Posts
    1,128
    Plugin Contributions
    0

    Default Re: USPS new rates May

    I called USPS last night. They agree there is no API update on there site. And they would give me nothing over the phone. I asked who I need to call for this info. the answer was basically "don't call us, we will call you". They took my email address. And that was it.
    After playing with settings I agree there are no changes required if you are going to use the First Class Parcel rate. Because the First class settings will default to the higher Parcel rate. If you want to test and make a display change do the two following changes in /includes/modules/shipping/usps.php.
    With no other changes, USPS returns First Class - Package rates. Which is what I needed.

    Change this:
    $usps_server = 'production.shippingapis.com';
    To this:
    $usps_server = 'stg-production.shippingapis.com';

    This:
    'First Class' => 'First-Class Mail',
    To This:
    'First Class' => 'First Class Parcel',


    Other things I learned yesterday by process of expimentation, but not needed for Monday are.
    // old
    // $request = 'API=Rate&XML=' . urlencode($request);
    // change to
    $request = 'API=RateV3&XML=' . urlencode($request);

    // old
    // $request .= '</RateRequest>';
    // change to
    $request .= '</RateV3Request>';

    // old
    // $request = '<RateRequest USERID="' . MODULE_SHIPPING_USPS_USERID . '" PASSWORD="' . MODULE_SHIPPING_USPS_PASSWORD . '">';
    // change to
    $request = '<RateV3Request USERID="' . MODULE_SHIPPING_USPS_USERID . '">';

    // old
    //'<Service>' . $key . '</Service>' .
    //'<ZipOrigination>' . SHIPPING_ORIGIN_ZIP . '</ZipOrigination>' .
    // change to
    '<Service>' . $key . '</Service>' .
    '<FirstClassMailType>(1 of 3 new terms we dont know yet)</FirstClassMailType>' .
    '<ZipOrigination>' . SHIPPING_ORIGIN_ZIP . '</ZipOrigination>' .

  9. #39
    Join Date
    Jan 2007
    Posts
    31
    Plugin Contributions
    0

    Default Re: USPS new rates May

    Quote Originally Posted by stagebrace View Post
    I called USPS last night. They agree there is no API update on there site. And they would give me nothing over the phone. I asked who I need to call for this info. the answer was basically "don't call us, we will call you". They took my email address. And that was it.
    After playing with settings I agree there are no changes required if you are going to use the First Class Parcel rate. Because the First class settings will default to the higher Parcel rate. If you want to test and make a display change do the two following changes in /includes/modules/shipping/usps.php.
    With no other changes, USPS returns First Class - Package rates. Which is what I needed.

    Change this:
    $usps_server = 'production.shippingapis.com';
    To this:
    $usps_server = 'stg-production.shippingapis.com';

    This:
    'First Class' => 'First-Class Mail',
    To This:
    'First Class' => 'First Class Parcel',


    Other things I learned yesterday by process of expimentation, but not needed for Monday are.
    // old
    // $request = 'API=Rate&XML=' . urlencode($request);
    // change to
    $request = 'API=RateV3&XML=' . urlencode($request);

    // old
    // $request .= '</RateRequest>';
    // change to
    $request .= '</RateV3Request>';

    // old
    // $request = '<RateRequest USERID="' . MODULE_SHIPPING_USPS_USERID . '" PASSWORD="' . MODULE_SHIPPING_USPS_PASSWORD . '">';
    // change to
    $request = '<RateV3Request USERID="' . MODULE_SHIPPING_USPS_USERID . '">';

    // old
    //'<Service>' . $key . '</Service>' .
    //'<ZipOrigination>' . SHIPPING_ORIGIN_ZIP . '</ZipOrigination>' .
    // change to
    '<Service>' . $key . '</Service>' .
    '<FirstClassMailType>(1 of 3 new terms we dont know yet)</FirstClassMailType>' .
    '<ZipOrigination>' . SHIPPING_ORIGIN_ZIP . '</ZipOrigination>' .
    When I use their staging environment, US domestic priority works ok. However, I am getting the following error for international priority mail

    -----------------------------
    We are unable to find a USPS shipping quote suitable for your mailing address and the shipping methods we typically use.
    If you prefer to use USPS as your shipping method, please contact us for assistance.
    (Please check that your Zip Code is entered correctly.)
    ----------------------------

    Anyone has a workaround?

  10. #40
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: USPS new rates May

    We, the Zen Cart Development Team, have a release that will be coming out shortly ...

    staging server is working fine with Monday rates ... and if USPS manages to flip the switch correctly ... all will be right in the world for both US and International ...

    We have some folks testing as are we ... and all is looking good ...
    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!]
    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!

 

 
Page 4 of 17 FirstFirst ... 2345614 ... LastLast

Similar Threads

  1. USPS RateV4 Intl RateV2 - May 31, 2015 Version K7 for May 31, 2015
    By Ajeh in forum Zen Cart Release Announcements
    Replies: 0
    Last Post: 31 May 2015, 12:20 AM
  2. v138a Cannot update to new USPS v4 rates
    By DesDev5 in forum Addon Shipping Modules
    Replies: 20
    Last Post: 21 Aug 2013, 03:51 PM
  3. USPS New May 14th Shipping Module
    By Ajeh in forum Zen Cart Release Announcements
    Replies: 2
    Last Post: 15 May 2007, 12:25 AM
  4. New USPS shipping changes in May
    By OregonBum in forum Addon Shipping Modules
    Replies: 0
    Last Post: 26 Mar 2007, 04:53 AM

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