Page 16 of 44 FirstFirst ... 6141516171826 ... LastLast
Results 151 to 160 of 440
  1. #151
    Join Date
    Apr 2019
    Posts
    292
    Plugin Contributions
    0

    Default Re: Only First Class shipping rates are being displayed

    Hi @lat9, thanks for your fast update again! I just updated my site to k11c and it worked great!

  2. #152
    Join Date
    Oct 2008
    Location
    Rancho cordova, CA
    Posts
    12
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    Is the latest version of the USPS Shipping module compatible with Zencart V 1.5.5d? Our Priority Mail quit showing with the latest price increase from USPS.

  3. #153
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,464
    Plugin Contributions
    11

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by teresa529 View Post
    Is the latest version of the USPS Shipping module compatible with Zencart V 1.5.5d? Our Priority Mail quit showing with the latest price increase from USPS.
    It should work fine. If you have 2021-05-05 K11a, it's a simple matter of overwriting includes/modules/shipping/usps.php from the version 2022-07-12 K11c download.

  4. #154
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,375
    Plugin Contributions
    94

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by teresa529 View Post
    Is the latest version of the USPS Shipping module compatible with Zencart V 1.5.5d? Our Priority Mail quit showing with the latest price increase from USPS.
    Quote Originally Posted by dbltoe View Post
    It should work fine. If you have 2021-05-05 K11a, it's a simple matter of overwriting includes/modules/shipping/usps.php from the version 2022-07-12 K11c download.
    What @dbltoe said.

  5. #155
    Join Date
    Dec 2018
    Posts
    4
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    Hey guys,

    After I updated the USPS module I started having problems with payment page.
    I tried reversing what what done, meaning reinstalled the 2021 usps files but nothing changed.
    Here is what I have at the checkout page.

    MODULE_PAYMENT_PAYFLOW_TEXT_TITLE
    MODULE_PAYMENT_PAYFLOW_TEXT_CREDIT_CARD_FIRSTNAME
    MODULE_PAYMENT_PAYFLOW_TEXT_CREDIT_CARD_LASTNAME
    MODULE_PAYMENT_PAYFLOW_TEXT_CREDIT_CARD_NUMBER
    MODULE_PAYMENT_PAYFLOW_TEXT_CREDIT_CARD_EXPIRES
    MODULE_PAYMENT_PAYFLOW_TEXT_CREDIT_CARD_CHECKNUMBER
    MODULE_PAYMENT_PAYFLOW_TEXT_CREDIT_CARD_CHECKNUMBER_LOCATION
    MODULE_PAYMENT_PAYPALWPP_TEXT_BUTTON_ALTTEXT MODULE_PAYMENT_PAYPALWPP_MARK_BUTTON_TXT

    My cart version is v1.5.4
    Any help will be very much appreciated.

  6. #156
    Join Date
    Dec 2018
    Posts
    4
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    Nevermind, re-installed the payment module folder and solved the issue.

  7. #157
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,375
    Plugin Contributions
    94

    Default Re: USPS Shipping Module [Support Thread]

    I've just uploaded 2022-07-30 K11d for the Zen Cart moderators' review and will post back here when it's available for download.

    This release contains the correction for GitHub issue #23 (CommitmentName coming back as an empty array).

  8. #158
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,375
    Plugin Contributions
    94

    Default Re: USPS Shipping Module [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've just uploaded 2022-07-30 K11d for the Zen Cart moderators' review and will post back here when it's available for download.

    This release contains the correction for GitHub issue #23 (CommitmentName coming back as an empty array).
    Now available for download: https://www.zen-cart.com/downloads.php?do=file&id=1292

  9. #159
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,375
    Plugin Contributions
    94

    Default Re: USPS Shipping Module [Support Thread]

    I've just uploaded USPS version 2022-08-07 K11e, correcting the auto-update from 2022-07-12 K11c due to a misspelling (see GitHub issue #25).

    Sorry about the churn!

  10. #160
    Join Date
    Apr 2019
    Posts
    292
    Plugin Contributions
    0

    Default Re: USPS Shipping Module [Support Thread]

    2022-08-07 K11e

    This morning, my site received several error messages from an Australian customer:

    [11-Aug-2022 07:10:50 America/New_York] Request URI: /index.php?main_page=checkout_one, IP address: 121.213.160.xx
    #1 usps->quote() called at [/includes/classes/shipping.php:174]
    #2 shipping->quote() called at [/includes/modules/pages/checkout_one/header_php.php:222]
    #3 require(/includes/modules/pages/checkout_one/header_php.php) called at [/home3/auberins/public_html/index.php:35]
    --> PHP Warning: count(): Parameter must be an array or an object that implements Countable in /includes/modules/shipping/usps.php on line 555.

    and

    [11-Aug-2022 06:54:41 America/New_York] Request URI: /index.php?main_page=popup_shipping_estimator, IP address: 121.213.160.x
    #1 usps->quote() called at [/includes/classes/shipping.php:174]
    #2 shipping->quote() called at [/includes/modules/shipping_estimator.php:156]
    #3 require(/includes/modules/shipping_estimator.php) called at [/includes/templates/template_default/popup_shipping_estimator/tpl_main_page.php:16]
    #4 require(/includes/templates/template_default/popup_shipping_estimator/tpl_main_page.php) called at [/index.php:94]
    --> PHP Warning: count(): Parameter must be an array or an object that implements Countable in /includes/modules/shipping/usps.php on line 555.

    Line 555 is the following:

    if ($this->is_us_shipment) {
    $PackageSize = count($uspsQuote['Package']);
    // if object has no legitimate children, turn it into a firstborn:
    if (isset($uspsQuote['Package']['ZipDestination']) && !isset($uspsQuote['Package'][0]['Postage'])) {
    $uspsQuote['Package'][] = $uspsQuote['Package'];
    $PackageSize = 1;
    }
    } else {
    $PackageSize = count($uspsQuote['Package']['Service']); //line 555
    }

    I remember this error and I found out a temporary solution as the following before. I thought this bug was fixed already so I removed this modification... Maybe @lat9 has a better way to improve.

    Change
    $PackageSize = count($uspsQuote['Package']['Service']); //line 555

    To
    if ($uspsQuote['Package']['Service']) {
    $PackageSize = count($uspsQuote['Package']['Service']);
    }

 

 
Page 16 of 44 FirstFirst ... 6141516171826 ... LastLast

Similar Threads

  1. MultiSite Module Support Thread
    By Gerome in forum All Other Contributions/Addons
    Replies: 2237
    Last Post: 9 May 2025, 03:20 AM
  2. Optional Shipping Insurance Module [Support Thread]
    By jettrue in forum Addon Shipping Modules
    Replies: 414
    Last Post: 20 Mar 2025, 01:39 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