Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 35
  1. #11
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,684
    Plugin Contributions
    9

    Default Re: Shopping Estimator Stopped Working!

    Quote Originally Posted by sle39lvr View Post
    The Shipping Estimator stopped showing actual estimates. I have UPS enabled and has been working this whole time.

    Nothing on Error log.
    while the symptoms may be the same (no estimates and no logs), that does not mean the problem is the same.

    creating a curl transaction; sending it to an outside server; and then parsing the results can be fraught with errors.

    i can not provide any info on the old plug-in module; i can only help if you want to go forward with your current situation. which you think is the curl transaction as that is the code you posted.

    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  2. #12
    Join Date
    Jan 2011
    Posts
    196
    Plugin Contributions
    0

    Default Re: Shopping Estimator Stopped Working!

    Understood. I will be testing what's on your previous post now.

  3. #13
    Join Date
    Jan 2011
    Posts
    196
    Plugin Contributions
    0

    Default Re: Shopping Estimator Stopped Working!

    I got this from ups_error.log

    Code:
    * About to connect() to www.ups.com port 443 (#0)
    *   Trying 23.43.242.135... * connected
    * Connected to www.ups.com (23.43.242.135) port 443 (#0)
    * Initializing NSS with certpath: sql:/etc/pki/nssdb
    *   CAfile: /etc/pki/tls/certs/ca-bundle.crt
      CApath: none
    * SSL connection using TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
    * Server certificate:
    * 	subject: CN=www.ups.com,OU=Unified Communications,OU=Hosted by United Parcel Service,OU=886234 - J2EE,O=United Parcel Service,STREET=340 MacArthur Blvd.,L=Mahwah,ST=NJ,postalCode=07430,C=US
    * 	start date: Apr 24 00:00:00 2018 GMT
    * 	expire date: Apr 23 23:59:59 2020 GMT
    * 	common name: www.ups.com
    * 	issuer: CN=COMODO RSA Organization Validation Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB
    > GET /using/services/rave/qcostcgi.cgi?accept_UPS_license_agreement=yes&10_action=4&13_product=GNDRES&14_origCountry=US&15_origPostal=33455&19_destPostal=34997&22_destCountry=US&23_weight=3.9&47_rate_chart=Customer+Counter&48_container=00&49_residential=1 HTTP/1.1
    User-Agent: Zen Cart quote inquiry
    Host: www.ups.com
    Accept: */*
    
    < HTTP/1.1 403 Forbidden
    < Server: AkamaiGHost
    < Mime-Version: 1.0
    < Content-Type: text/html
    < Content-Length: 314
    < Expires: Fri, 11 Jan 2019 17:06:16 GMT
    < Date: Fri, 11 Jan 2019 17:06:16 GMT
    < Connection: close
    < Server-Timing: cdn-cache; desc=HIT
    < Server-Timing: edge; dur=0
    < 
    * Closing connection #0

  4. #14
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,684
    Plugin Contributions
    9

    Default Re: Shopping Estimator Stopped Working!

    pretty cool, eh?

    as you can see in the response, you are getting a 403 forbidden. so you are indeed having a problem with your curl request.

    have you checked your server using ssllabs? put your website name here:

    https://www.ssllabs.com/ssltest/

    and let's see what sort of ssl problems you might be having.

    i have a feeling you might be using the wrong tls encryption. but i could be wrong.... see:

    https://www.ups.com/us/en/help-cente...-security.page

    this file also gives you something that you can talk to the ups technical support people to see why you are getting the 403 forbidden.

    hope that gives you a few places to start.

    let us know what you find out.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  5. #15
    Join Date
    Jan 2011
    Posts
    196
    Plugin Contributions
    0

    Default Re: Shopping Estimator Stopped Working!

    Click image for larger version. 

Name:	Screen Shot 2019-01-11 at 12.58.48 PM.jpg 
Views:	14 
Size:	14.9 KB 
ID:	18260

    That's what I got from https://www.ssllabs.com/ssltest/

  6. #16
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,684
    Plugin Contributions
    9

    Default Re: Shopping Estimator Stopped Working!

    what about this part:

    Click image for larger version. 

Name:	Screenshot from 2019-01-11 10-06-33.jpg 
Views:	17 
Size:	48.1 KB 
ID:	18261
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  7. #17
    Join Date
    Jan 2011
    Posts
    196
    Plugin Contributions
    0

    Default Re: Shopping Estimator Stopped Working!

    Click image for larger version. 

Name:	Screen Shot 2019-01-11 at 1.08.52 PM.jpg 
Views:	19 
Size:	46.3 KB 
ID:	18262

    Oops..

  8. #18
    Join Date
    Nov 2005
    Location
    los angeles
    Posts
    2,684
    Plugin Contributions
    9

    Default Re: Shopping Estimator Stopped Working!

    • you should talk to your host about disabling tls 1.0. see: https://www.globalsign.com/en/blog/d...-ssl-versions/
    • you should read the notes on the downloads page for this module: UPS United Parcel Service - Version: 2015-12-30
      This update only contains technical changes:
      - switched to use CURL instead of the aging http_client for communications, as http_client is being retired
      - self-check for future plugin updates
      (explains your comment from above)
    • you can also look at the code to see how to get responses:

      Code:
          // BOF: UPS 
          /*
          TEST by checking out in the catalog; try a variety of shipping destinations to be sure
          your customers will be properly served.  If you are not getting any quotes, try enabling
          more alternatives in admin. Make sure your store's postal code is set in Admin ->
          Configuration -> Shipping/Packaging, since you won't get any quotes unless there is
          a origin that UPS recognizes.
      
          If you STILL don't get any quotes, here is a way to find out exactly what UPS is sending
          back in response to rate quote request, you can uncomment the following mail() line and
          then check your email after visiting the shipping page in checkout ...
          */
          //mail(STORE_OWNER_EMAIL_ADDRESS, 'UPS response', $body, 'From: <'.STORE_OWNER_EMAIL_ADDRESS.'>');
      
          // EOF: UPS
    • i would contact UPS technical support to see why you are getting a forbidden response.


    best.
    author of square Webpay.
    mxWorks has premium plugins. donations: venmo or paypal accepted.
    premium consistent excellent support. available for hire.

  9. #19
    Join Date
    Jan 2011
    Posts
    196
    Plugin Contributions
    0

    Default Re: Shopping Estimator Stopped Working!

    Looks like UPS, FEDEX, USPS...all those modules do not work. My hosting is HostMonster.

  10. #20
    Join Date
    Jan 2011
    Posts
    196
    Plugin Contributions
    0

    Default Re: Shopping Estimator Stopped Working!

    I found UPS module working yesterday. Today, it doesn't seem to work again. Still have to contact Host Monster.

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. v154 UPS Estimator Stopped Working on January 5, 2019
    By kwright in forum Addon Shipping Modules
    Replies: 32
    Last Post: 12 May 2019, 04:02 PM
  2. v153 HELP!!!!! my shopping cart and checkout have stopped working
    By ultimateautovibes in forum Basic Configuration
    Replies: 4
    Last Post: 23 Nov 2014, 10:36 PM
  3. Shopping cart stopped working please help
    By adam123 in forum General Questions
    Replies: 1
    Last Post: 1 Nov 2011, 11:29 AM
  4. My Shipping Estimator just stopped working
    By johnd in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 7 Jul 2007, 06:41 PM
  5. My Shopping Cart Just Stopped Working Won't Process cards
    By tbianco in forum Addon Payment Modules
    Replies: 1
    Last Post: 2 Apr 2007, 12:14 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