te')); return $arr; } /* 遍历用户所有主题 * @param $uid 用户ID * @param int $page 页数 * @param int $pagesize 每页记录条数 * @param bool $desc 排序方式 TRUE降序 FALSE升序 * @param string $key 返回的数组用那一列的值作为 key * @param array $col 查询哪些列 */ function thread_tid_find_by_uid($uid, $page = 1, $pagesize = 1000, $desc = TRUE, $key = 'tid', $col = array()) { if (empty($uid)) return array(); $orderby = TRUE == $desc ? -1 : 1; $arr = thread_tid__find($cond = array('uid' => $uid), array('tid' => $orderby), $page, $pagesize, $key, $col); return $arr; } // 遍历栏目下tid 支持数组 $fid = array(1,2,3) function thread_tid_find_by_fid($fid, $page = 1, $pagesize = 1000, $desc = TRUE) { if (empty($fid)) return array(); $orderby = TRUE == $desc ? -1 : 1; $arr = thread_tid__find($cond = array('fid' => $fid), array('tid' => $orderby), $page, $pagesize, 'tid', array('tid', 'verify_date')); return $arr; } function thread_tid_delete($tid) { if (empty($tid)) return FALSE; $r = thread_tid__delete(array('tid' => $tid)); return $r; } function thread_tid_count() { $n = thread_tid__count(); return $n; } // 统计用户主题数 大数量下严谨使用非主键统计 function thread_uid_count($uid) { $n = thread_tid__count(array('uid' => $uid)); return $n; } // 统计栏目主题数 大数量下严谨使用非主键统计 function thread_fid_count($fid) { $n = thread_tid__count(array('fid' => $fid)); return $n; } ?>javascript - Google ad was preloaded using link preload but not used within a few seconds from the window's load event -
最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Google ad was preloaded using link preload but not used within a few seconds from the window's load event -

programmeradmin4浏览0评论

When I go to my website no ads are displaying even though I set one at the bottom of the page. It returns error - The resource .js was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate as value and it is preloaded intentionally. Yes, adblocker is disabled Here's my code for ad:

<script async src="//pagead2.googlesyndication/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
     style="display:block; text-align:center;"
     data-ad-layout="in-article"
     data-ad-format="fluid"
     data-ad-client="ca-pub-9121789382833091"
     data-ad-slot="8487804504"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>

When I go to my website no ads are displaying even though I set one at the bottom of the page. It returns error - The resource https://pagead2.googlesyndication./pagead/js/r20181107/r20180604/show_ads_impl.js was preloaded using link preload but not used within a few seconds from the window's load event. Please make sure it has an appropriate as value and it is preloaded intentionally. Yes, adblocker is disabled Here's my code for ad:

<script async src="//pagead2.googlesyndication./pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
     style="display:block; text-align:center;"
     data-ad-layout="in-article"
     data-ad-format="fluid"
     data-ad-client="ca-pub-9121789382833091"
     data-ad-slot="8487804504"></ins>
<script>
     (adsbygoogle = window.adsbygoogle || []).push({});
</script>
Share Improve this question edited Nov 17, 2018 at 15:11 tao 90.2k17 gold badges132 silver badges173 bronze badges asked Nov 13, 2018 at 13:12 JakeJake 3301 gold badge4 silver badges16 bronze badges 14
  • It is a piece of html and “it was preloaded using link” is a css error – Jake Commented Nov 13, 2018 at 13:28
  • 4 That’s so dumb, it isn’t a duplicate, if you don’t understand the question simply skip it – Jake Commented Nov 13, 2018 at 13:35
  • 2 @fbparis flag it as in need of moderator attention – Jake Commented Nov 17, 2018 at 8:35
  • 1 If you checked everything on this list and it still doesn't work, you should ask adsense for support. – tao Commented Nov 17, 2018 at 15:24
  • 2 Has anybody found a solution for this problem? I get the warning too and sometimes the same page displays the ad and sometime not... – croppio. Commented Dec 21, 2018 at 10:17
 |  Show 9 more ments

2 Answers 2

Reset to default 6

I suspect this is not the reason why ads doesn't show because after a few hours without updating the source code of the page the ads finally display, but the warning is still here in the javascript console.

I've noticed that every time I'm updating the source code, the ads disappear again for a few hours so I guess Google doesn't really "trust" me and ads are automatically suspended till a bot or something es back to check that everything is OK.

Are you using Cloudflare? I fixed this by disabling rocket loader on the adsense script.

data-cfasync="false"

I have read multiple times that rocket loader has no negative effect on Adsense, now I am not so convinced.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论