gpt4 book ai didi

google-analytics - 试图将 http ://www. example.com 链接到我在 https ://secure. example.com 上的购物车

转载 作者:行者123 更新时间:2023-12-03 16:07:50 24 4
gpt4 key购买 nike

这是我的传奇 - 我正在尝试链接 http://www.example.com到我的购物车 https://secure.example.com ,但它似乎没有正确链接。

这是我的代码:

<!--Google Analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-125xxxxx-1");
//start cart link
pageTracker._setDomainName(".example.com");
pageTracker._setAllowHash(false);
//end cart link
pageTracker._trackPageview();
} catch(err) {}</script>
<!--Google Analytics -->

注意这两行:
pageTracker._setDomainName(".example.com");
pageTracker._setAllowHash(false);

我添加了第一行,以便我可以在站点和购物车之间共享 cookie,并添加了 setAllowHash 以确保它使用 cookie 中的 utm 值,并且在我输入 https://secure.example.com 时没有“重新创建”它们.

使用 firecookie,它确实在站点和购物车之间共享相同的 cookie,并且 cookie 域是“example.com”。

我很确定,如果它工作正常,我所有的 utmz、utma 值等都应该被复制并保持不变,但它们正在改变。我已经复制了所有发送到谷歌分析的参数,然后粘贴在下面。它显示了从我的主页到我的产品页面,然后在我的购物车中一直到订购前的页面发生的情况。 (如果不买东西,我实际上无法自己测试最后一页,所以如果需要,我稍后会从我们的确认页面发布代码。)

开始:
===============================================================
HOMEPAGE - http://www.example.com
----------------------------------------------------------------------------------------
utmac UA-125xxxxx-1
utmcc __utma=1.1920057171.1269446996.1269446996.1269446996.1;+__utmz=1.1269446996.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);
utmcs UTF-8
utmdt GSM Cell Phone Rental from example
utmfl 10.0 r45
utmhid 69978133
utmhn www.example.com
utmje 1
utmn 1806413990
utmp /
utmr -
utmsc 24-bit
utmsr 1280x800
utmul en-gb
utmwv 4.6.5

PRODUCT PAGE - http://www.example.com/products/international-cell-phone-purchase/
----------------------------------------------------------------
utmac UA-125xxxxx-1
utmcc __utma=1.1920057171.1269446996.1269446996.1269446996.1;+__utmz=1.1269446996.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);
utmcs UTF-8
utmdt example | International Cell Phones
utmfl 10.0 r45
utmhid 276151647
utmhn www.example.com
utmje 1
utmn 155808433
utmp /products/international-cell-phone-purchase/
utmr 0
utmsc 24-bit
utmsr 1280x800
utmul en-gb
utmwv 4.6.5

CART STAGE 1 - https://secure.example.com/checkout/viewbasket.php
------------------------------------------------
utmac UA-125xxxxx-1
utmcc __utma=60286578.994269564.1269447144.1269447144.1269447144.1;+__utmz=60286578.1269447144.1.1.utmcsr=example.com|utmccn=(referral)|utmcmd=referral|utmcct=/products/international-cell-phone-purchase/;
utmcn 1
utmcs UTF-8
utmdt Your Cart
utmfl 10.0 r45
utmhid 1802074903
utmhn secure.example.com
utmje 1
utmn 1621444199
utmp 1-reviewcart
utmr http://www.example.com/products/international-cell-phone-purchase/
utmsc 24-bit
utmsr 1280x800
utmul en-gb
utmwv 4.6.5

CART STAGE 2 - https://secure.example.com/checkout/docheckout.php
------------------------------------------------
utmac UA-125xxxxx-1
utmcc __utma=60286578.994269564.1269447144.1269447144.1269447144.1;+__utmz=60286578.1269447144.1.1.utmcsr=example.com|utmccn=(referral)|utmcmd=referral|utmcct=/products/international-cell-phone-purchase/;
utmcs UTF-8
utmdt Checkout
utmfl 10.0 r45
utmhid 871670520
utmhn secure.example.com
utmje 1
utmn 1153927228
utmp 2-checkout
utmr 0
utmsc 24-bit
utmsr 1280x800
utmul en-gb
utmwv 4.6.5

CART STAGE 3 - https://secure.example.com/checkout/doreview.php
----------------------------------------------
utmac UA-125xxxxx-1
utmcc __utma=60286578.994269564.1269447144.1269447144.1269447144.1;+__utmz=60286578.1269447144.1.1.utmcsr=example.com|utmccn=(referral)|utmcmd=referral|utmcct=/products/international-cell-phone-purchase/;
utmcs UTF-8
utmdt Checkout
utmfl 10.0 r45
utmhid 1731598159
utmhn secure.example.com
utmje 1
utmn 1442257710
utmp 3-checkoutreview
utmr 0
utmsc 24-bit
utmsr 1280x800
utmul en-gb
utmwv 4.6.5
===============================================================

正如你所看到的,utma 值没有被保留,所以它看起来像一个配置问题。我研究了帮助,但似乎没有一个案例适合我。

我希望有人可以提供帮助,这一直是我的一个持续问题,并且最终获得坚如磐石的可靠分析设置会很好。

最佳答案

(我假设您已从个人资料设置中启用电子商务报告。)

我相信您缺少一些样板文件(稍后会详细介绍)。此外,您在问题文本中提到的两行(在“开始购物车链接”和“结束购物车链接”之间)不是必需的。

在调用 _trackPageview 之后,您需要另外三行,其中两行分别更新保存交易和存储项目数据的数组,最后一行调用 _trackTrans()。这就是您需要将信息发送到 GA 服务器的调用:

因此,在调用 _trackPageview 之后,插入以下三行:

pageTracker._addTrans();        // initializes a trans obj; stores trans data     
pageTracker._addItem(); // array holding data for each item in the cart
pageTracker._trackTrans(); // confirms purchase, finalizes transaction

在调用 _trackTrans 时没有传递任何内容,但您将为上面的两个函数调用传递参数。请记住,这两个函数的参数列表都是按位置匹配的,因此最好对不使用的参数使用占位符。这是 link到显示参数列表的页面。

关于google-analytics - 试图将 http ://www. example.com 链接到我在 https ://secure. example.com 上的购物车,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2509922/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com