Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am getting Failed to load resource: net::ERR_BLOCKED_BY_CLIENT with Google chrome

I am getting white page after running my project but its work with .net Client properly Do I need any settings in the browser? and the link will come after the error

Failed to load resource: net::ERR_BLOCKED_BY_CLIENT http://clkmon.com/adServe/getTag?cid=200093510300000000&pid=CRSRDR&type=inject  Failed to load resource: net::ERR_BLOCKED_BY_CLIENT http://ads.626apps.com/a.php?626ref2=200093510300000000&626Name=Plus-HD-4.9&626ref3=B41A77C1675040A28F7E209964620E5EIE&626ref1=63726f73737269646572 
like image 817
gaurav Avatar asked Mar 11 '14 06:03

gaurav


People also ask

How do I resolve failed to load a resource?

Chrome's cache clearing process, check all the options, and set the time range to “All time.” After you've cleared your cache, this might reset any options that were producing the error. Check the page in question to see if the resource is now displaying correctly. If not, you can also try resetting Chrome flags.

What does Net :: ERR_BLOCKED_BY_CLIENT mean?

This error is commonly caused due to one of the extensions installed within Chrome. Most likely you will see this error appear if you are using an extension such as Adblock or a browser safety plugin.

What does net err blocked by response mean?

It turns out when the network waterfall list this error, it means a browser extension blocked the request. The most common culprit is an ad blocker like AdBlock Plus. In short your requests to server have been blocked by an extension. Specifically AdBlock Plus was blocking my image.


2 Answers

These errors are usually generated from an ad blocking plugin, such as Adblock Plus. To test this use either a different browser or uninstall the ad blocking plugin (right clicking the extension by the URL bar and clicking "Remove from Chrome...").

There is an easier way to temporarily disable an extension. In Chrome, opening an Incognito tab will usually stop extensions running (unless you have specifically told Chrome which ones to run in Incognito).

like image 89
ygrichman Avatar answered Oct 20 '22 04:10

ygrichman


My advice is to avoid any image names; class names or ID's with the words:

  • Advert
  • Advertise

in their name!

I ran some tests and Ad blockers regularly block any direct content with these names either within the CSS file, Div or Span Layers.

So an image name loaded via CSS such as advertise-with-us.png gets blocked on any machine running such software for example.

EDIT: I've Traced a list of web page elements in Chrome which AdBlock Plus sets the CSS value to "display:none". They probably apply to other browsers too:

::content #ads > .dose > .dosesingle,  ::content #content > #center > .dose > .dosesingle, ::content #content > #right > .dose > .dosesingle,  ::content #header + #content > #left > #rlblock_left,  ::content .trc_rbox_border_elm .syndicatedItem,  ::content .trc_rbox_div .syndicatedItem,  ::content div[id^="mainads"], ::content #ad-banner-980,  ::content #adbox300600, ::content #chartAdWrap,  ::content #in-content-ad, ::content #main-right-ad-tray,  ::content #second-right-ad-tray, ::content #sponsored-message,  ::content #tr-adv-banner, ::content #votvAds_inner,  ::content #welcome_ad, ::content #wp_ad_marker,  ::content .PremiumObitAdBar, ::content .ad-active 
like image 32
Martin Sansone - MiOEE Avatar answered Oct 20 '22 05:10

Martin Sansone - MiOEE