我的新Google通用分析代码在chrome的分析调试器插件中给出了错误:
初始化Google Analytics。 analytics_debug.js:9
注册的新插件:ga(提供,“链接器”,功能) analytics_debug.js:9
注册的新插件:ga(提供,“displayfeatures”,功能) analytics_debug.js:9
运行命令:ga(create,UA - 1,amleo.com) analytics_debug.js:9
创建新跟踪器:t0 analytics_debug.js:9
新访客。生成新的clientId analytics_debug.js:9
运行命令:ga(send,pageview)analytics_debug.js:9
存储不可用。中止命中。 analytics_debug.js:9
执行Google Analytics命令。 analytics_debug.js:9
运行命令:ga(发送,事件,rfk,rfk_1,rfk_1,rg_1,rw_1,) analytics_debug.js:9
存储不可用。中止命中。
在Google Analytics代码助手Chrome附加组件中,它显示“严重错误”,错误内容为:
错误:未检测到HTTP响应
我在所有网页上的常规跟踪代码均为:(我将直接从Google Analytics管理员复制的跟踪代码段缩小了)
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-1-1', 'amleo.com');ga('send', 'pageview');</script>
我的电子商务跟踪代码为:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA--1', 'amleo.com');ga('send', 'pageview');
//Include the ecommerce plugin
ga('require', 'ecommerce', 'ecommerce.js');
//Initialize the transaction
ga('ecommerce:addTransaction', {
'id': 'WEBA001399736',// order ID - required
'affiliation': 'A.M. Leonard',// affiliation or store name
'revenue': '19.99',// total - required
'shipping': '9.99',// shipping
'tax': '2.10',// tax
});
ga('ecommerce:addItem', {
'id': 'WEBA001399736',// order ID - necessary to associate item with transaction
'name': 'Leonard+ArborRain+Tower+-+Plant+%26+Tree+Hydrator',// product name
'sku': 'ART20',// SKU/code - required
'category': '',// category or variation
'price': '19.99',// unit price - required
'quantity': '1'// quantity - required
});
ga('ecommerce:send');//submits transaction to the analytics servers
</script>
答案 0 :(得分:2)
您可以尝试从amleo.com
删除ga('create', 'UA-1-1', 'amleo.com');
。不指定域名允许您选择最佳域来编写cookie。所以,你的代码应该说:
ga('create', 'UA-1-1');
答案 1 :(得分:0)
使用'auto'的cookieDomain。有关更多信息,请阅读这篇精彩的文章:http://www.simoahava.com/analytics/cross-domain-tracking-across-subdomains/