How to identify web site inaccessible issue on OSX?

239

Check the error you're receiving:

If you can load the webpage using another browser, but not Google Chrome, check the exact error you're getting by clicking the More information on this error link on the page.

If you're getting "Error 124 (net__ERR_WINSOCK_UNEXPECTED_WRITTEN_BYTES)," see the Error 124 troubleshooting article.

For the following errors, try the solutions below:

  • Error 101 (net::ERR_CONNECTION_RESET)
  • Error 2 (net::ERR_FAILED): Unknown error
  • Error 104 (net::ERR_CONNECTION_FAILED)
  • Error 105 (net::ERR_NAME_NOT_RESOLVED)
  • Error 102 (net::ERR_CONNECTION_REFUSED): Unknown error
  • Error 324 (net::ERR_EMPTY_RESPONSE)

Clear your cookies:

Cookies are files created by websites you've visited to store browsing information, such as your preferences for the website or profile information. A corrupted cookie file may be causing this error to show up. Follow these steps to clear your cookies:

Click the Chrome menu Chrome menu on the browser toolbar.

  1. Select Settings
  2. Click Show advanced settings.
  3. In the "Privacy" section, click Content settings
  4. In the "Cookies" section, click the All cookies and site data.
  5. Click Remove all. Click X to close the dialog.

Make sure Google Chrome is allowed in your antivirus and firewall settings:

  • Each program works differently, so check your software's help resources for further instructions.

Are you using a proxy? Please try disabling it in system preferences --> Networking --> Active internet connection (usually marked as green circle).

Then click on "Advanced..." button. - Select Proxies tab.

Uncheck "Web Proxy" and "Secure web proxy"

Share:
239

Related videos on Youtube

CSSer
Author by

CSSer

Updated on September 18, 2022

Comments

  • CSSer
    CSSer almost 2 years

    In my react project, I have several config folders:

    -config
      -api/
        |index.ts
        |types.d.ts
      -routes/
        |index.ts
        |types.d.ts
    ...
    

    In api/index.ts for example, I can import types needed with import {SomeType} from './types.

    Now in other component pages, I'd like to import those types with import {SomeType} from config/api, so I tried exporting all types in api/index.ts with export * from './types', but got error: Module not found: Error: Can't resolve './types' in ....

    What is the correct way to achieve this? Is this even possible? Or maybe there're some workarounds?

    packages:

    • "typescript": "^4.0.3",
    • "react": "^18.0.0",
  • Juza
    Juza over 10 years
    @G Koe, thank you for the information. I have checked them and it seems be there is not affected setting.
  • G Koe
    G Koe over 10 years
    does this issue persist after a reboot?
  • Juza
    Juza over 10 years
    @G Koe, Yes I rebooted my mac and had a problem.
  • G Koe
    G Koe over 10 years
    Navigate to chrome://net-internals/#dns and press the "Clear host cache" button. AND Navigate to chrome://net-internals/#dns and press the "Clear host cache" button.
  • G Koe
    G Koe over 10 years
    See More details here, as I'm fairly sure it is a CHROME DNS problem: superuser.com/questions/203674/…
  • Juza
    Juza over 10 years
    @G Koe, I tried but It did not work for me thank you for your help. I will rebuilt in a couple of days due to other purpose. Then I will know the problem this is on purpose by someone or not.