Labanino
Labanino

Reputation: 3960

Can't access flutter.dev (Mac OS)

I just can't access flutter.dev. Yes, I have an internet connection. I guess is due to the .dev extension. In Firefox I get Unable to connect and a 404 in Safari. Again, my internet connection is fine and I'm able to surf the web with no problem. Any idea?

enter image description here

EDIT: Don't have antivirus, cache cleaned, set up a custom DNS, router rebooted and still does not work.

Upvotes: 16

Views: 4608

Answers (6)

Olalekan Rahmon
Olalekan Rahmon

Reputation: 1

If the dev file (or resolver folder) is not available in /etc/, you could find resolv.conf directly inside /etc. Then, back up the file as as follows and enter the root password:

sudo mv resolv.conf resolv.conf_bak

Upvotes: 0

Emmanuel Edwards
Emmanuel Edwards

Reputation: 169

A simple router restart or switching to another internet service provider solves it for me anytime it happens.

Upvotes: 0

Maruf Hassan
Maruf Hassan

Reputation: 1248

If you are facing this issue on Windows 10, you can check the answer here

Upvotes: 0

O.BigVee
O.BigVee

Reputation: 25

install KProxy browser extension and turn it on any time you experience such, this should solve it.

Upvotes: -1

Rich A
Rich A

Reputation: 21

Open Network Utility on your Mac, and select the Traceroute tab. Type Flutter.dev in the top empty box, then select Trace. If the first trace entry shows 127.0.0.1, you likely have proxy software, like POW, redirecting that path internally.

The Network Utility is not in System Preferences > Network.
Use Spotlight search to find the Network Utility.

Upvotes: 2

Maulana Yusup Abdullah
Maulana Yusup Abdullah

Reputation: 501

I just solved this problem using this command:

  • Go to /etc/resolver folder
  • Remove file called dev
  • done

Which was generated by puma-dev. When I deleted it, it just worked.

Reference: https://support.google.com/chrome/thread/2228098?hl=en

Upvotes: 44

Related Questions