I'm getting favicon.ico error

Rockstar5645 picture Rockstar5645 · Jun 26, 2015 · Viewed 287.4k times · Source

I downloaded the Netbeans IDE to code in HTML. I'm new to it. When I run my code, chrome is opening and everything is working just fine. I'm getting some sort of error in the Output - Browser Log.

Failed to load resource: net::ERR_EMPTY_RESPONSE (20:00:55:963 | error, network)
at http://localhost:8383/favicon.ico

How do I fix it?

Answer

element11 picture element11 · Jul 10, 2015

I have had this error for some time as well. It might be some kind of netbeans bug that has to do with netbeans connector. I can't find any mention of favicon.ico in my code or in the project settings.

I was able to fix it by putting the following line in the head section of my html file

<link rel="shortcut icon" href="">

I am currently using this in my testing environment, but I would remove it for any production environment.