Page 36 of 38 FirstFirst ... 263435363738 LastLast
Results 351 to 360 of 379
  1. #351
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: USPS Shipping Module [Support Thread]

    Finally upgraded to the latest version of this plugin today and I too am seeing the rate differences mentioned by others.

    This has nothing to do with ShipStation or any other shipping tool.

    The rates returned on Zen-Cart (via the USPS API) are not what they should be for the associated shipping account. I verified this by comparing the rates returned on stamps.com when logged into stamps.com.

    That said, I do not have access to USPS developer services to actually debug the rate quoting that is happening in the programming.

  2. #352
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,155
    Plugin Contributions
    11

    Default Re: USPS Shipping Module [Support Thread]

    What is your setting for "Retail Pricing or Online Pricing?"?

    You should probably have it set for Online if using ShipStation.

    Of course, tare weights set elsewhere can affect the quote as well.
    Last edited by dbltoe; 18 Dec 2023 at 11:15 PM. Reason: more info

  3. #353
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by dbltoe View Post
    What is your setting for "Retail Pricing or Online Pricing?"?

    You should probably have it set for Online if using ShipStation.

    Of course, tare weights set elsewhere can affect the quote as well.
    I have played with both settings. Neither is correct.

    I will re-iterate again though, this has nothing to do with Shipstation, Shipworks, PirateShip, Shippo, or any other shipping tool.

    It has to do with the rates being returned from USPS via the API being incorrect for the account number / meter number. I have played with weights and dimensions and everything else to no avail.

    Although my understanding of the Zen-Cart module is not strong, I have contacts in USPS that might be able to connect me with their dev. team to try and troubleshoot.

  4. #354
    Join Date
    Jun 2007
    Posts
    474
    Plugin Contributions
    2

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by lindasdd View Post
    I have played with both settings. Neither is correct.

    I will re-iterate again though, this has nothing to do with Shipstation, Shipworks, PirateShip, Shippo, or any other shipping tool.

    It has to do with the rates being returned from USPS via the API being incorrect for the account number / meter number. I have played with weights and dimensions and everything else to no avail.

    Although my understanding of the Zen-Cart module is not strong, I have contacts in USPS that might be able to connect me with their dev. team to try and troubleshoot.
    Upon furthur review, it seems the Priority rates *might* be coming through correctly (although I had thought not yesterday and I think toggling the retail pricing on and then back to online pricing helped for some reason) and the issue was with the Ground Advantage rates.

    Upon review of the code, I believe the following change needs to be made to includes\modules\shipping\usps.php
    line 1281 should be changed from $service = 'GROUND ADVANTAGE'; to $service = 'GROUND ADVANTAGE COMMERCIAL';

    I have made this change and it appears to be quoting correctly for me now.

    That does leave one extra wrinkle for shippers to keep in mind - there is a 2nd tier (lower pricing) of Ground Advantage rates. Ground Advantage Cubic. I personally tap into that with the combination of product volume settings and shipping based on volume. Only important if you can utilize the cubic sizes and are shipping to far zones.

  5. #355
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by lindasdd View Post
    Upon furthur review, it seems the Priority rates *might* be coming through correctly (although I had thought not yesterday and I think toggling the retail pricing on and then back to online pricing helped for some reason) and the issue was with the Ground Advantage rates.

    Upon review of the code, I believe the following change needs to be made to includes\modules\shipping\usps.php
    line 1281 should be changed from $service = 'GROUND ADVANTAGE'; to $service = 'GROUND ADVANTAGE COMMERCIAL';

    I have made this change and it appears to be quoting correctly for me now.

    That does leave one extra wrinkle for shippers to keep in mind - there is a 2nd tier (lower pricing) of Ground Advantage rates. Ground Advantage Cubic. I personally tap into that with the combination of product volume settings and shipping based on volume. Only important if you can utilize the cubic sizes and are shipping to far zones.
    Thanks for your input! I just tried it on my end and it worked (Ground Advantage)!
    Last edited by njcyx; 19 Dec 2023 at 10:07 PM.

  6. #356
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,501
    Plugin Contributions
    88

    Default Re: USPS Shipping Module [Support Thread]

    Heads Up to all USPS shipping module users!

    From this (https://www.usps.com/business/web-to...ease-notes.pdf) USPS documentation:

    Summary: Effective January 31, 2024, Web Tools will require the password be provided with the USERID in each label API XML request. Otherwise, an error will return. In TBD 2024, the password will be required for all API requests. Integrators are strongly encouraged to provide this information in advance of the change to avoid any service disruptions or integration issues. Contact [email protected] for any questions or concerns.

    2. Summary: Effective TBD December 2023, API access and permissions will be added separately after registration. To obtain these permissions, contact [email protected] and provide in your request for access:
    - Username/UserID (from the automated registration email):
    - USPS Mailer ID (MID):
    - Company Website:
    -Are you a shipper or software provider? Please provide details on how your business will use the
    APIs.
    -List of API(s) to which you would like access and expected volume (peak daily, weekly, monthly) – reference www.usps.com/webtools for a complete list of APIs

    You'll need to request access to the RatesV4 and IntlV2 APIs.

    Existing users note: You'll need to find you oldy-moldy email from USPS that includes that password. A forthcoming release of USPS will include a setting through which you can supply the password (which, for backward compatibility can be blank).

  7. #357
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,501
    Plugin Contributions
    88

    Default Re: USPS Shipping Module [Support Thread]

    USPS Web Tools API shipping-module version 2024_02_14_K11j is now available for download: https://www.zen-cart.com/downloads.php?do=file&id=1292

    Adds the PASSWORD setting that USPS will require for Web Tools API requests sometime in 2024, see GitHub issue #41 for details.

    Additional documentation is provided at the shipping-module's Wiki: https://github.com/lat9/usps/wiki

    Please Note: USPS plans to deprecate (no-longer support in non-tech-speak) the Web Tools API sometime later in 2024. I'm currently reviewing their new API and will have a new USPS shipping-module available within the next couple of months. That module will be designed to work with Zen Cart 1.5.8 and later, requiring a minimum PHP version of 8.0, so if your site is currently shipping with USPS on an older version of Zen Cart it's a great time to start planning your upgrade!

  8. #358
    Join Date
    Apr 2019
    Posts
    245
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by lat9 View Post
    USPS Web Tools API shipping-module version 2024_02_14_K11j is now available for download: https://www.zen-cart.com/downloads.php?do=file&id=1292

    Adds the PASSWORD setting that USPS will require for Web Tools API requests sometime in 2024, see GitHub issue #41 for details.

    Additional documentation is provided at the shipping-module's Wiki: https://github.com/lat9/usps/wiki

    Please Note: USPS plans to deprecate (no-longer support in non-tech-speak) the Web Tools API sometime later in 2024. I'm currently reviewing their new API and will have a new USPS shipping-module available within the next couple of months. That module will be designed to work with Zen Cart 1.5.8 and later, requiring a minimum PHP version of 8.0, so if your site is currently shipping with USPS on an older version of Zen Cart it's a great time to start planning your upgrade!
    Hi @lat9, thanks for your updates! I just updated my site from 11i to 11j and it worked fine. I only entered the account password. All the settings are the same as before after the upgrade. It seems working fine.

    Do you have any comments regarding post #354? $service = 'GROUND ADVANTAGE' or $service = 'GROUND ADVANTAGE COMMERCIAL' ?

    https://www.zen-cart.com/showthread....77#post1398277

  9. #359
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    590
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    I need to exclude one product from some shipping services, something I've done with multiple other products. For whatever reason, this product number is being ignored in the statements that should be able to find it. I need to figure out what product id the program is actually seeing, since it's clearly not seeing the number that Zencart allegedly assigned to it. I've been trying to figure out the variable name for the product id in the cart array, and so far have not been successful. Can anyone help?

  10. #360
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,501
    Plugin Contributions
    88

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by HeleneWallis View Post
    I need to exclude one product from some shipping services, something I've done with multiple other products. For whatever reason, this product number is being ignored in the statements that should be able to find it. I need to figure out what product id the program is actually seeing, since it's clearly not seeing the number that Zencart allegedly assigned to it. I've been trying to figure out the variable name for the product id in the cart array, and so far have not been successful. Can anyone help?
    ... and what are "the statements that should be able to find it"?

 

 
Page 36 of 38 FirstFirst ... 263435363738 LastLast

Similar Threads

  1. MultiSite Module Support Thread
    By Gerome in forum All Other Contributions/Addons
    Replies: 2220
    Last Post: 13 Mar 2024, 01:24 PM
  2. Optional Shipping Insurance Module [Support Thread]
    By jettrue in forum Addon Shipping Modules
    Replies: 396
    Last Post: 31 Mar 2023, 05:35 PM
  3. Replies: 29
    Last Post: 24 Sep 2014, 09:59 PM
  4. Replies: 335
    Last Post: 1 Aug 2013, 08:54 PM
  5. PC Configurator Module [Support Thread]
    By lebrand2006 in forum All Other Contributions/Addons
    Replies: 254
    Last Post: 22 Aug 2012, 03:52 PM

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