从包含谷歌分析主域的子域设置cookie
主站点 - www.example.com
应用程序站点 - app.example.com
该 cookie 在 app.example.com 上创建,但也应适用于 www.example.com。
setcookie("gacookie", time(), time()+31536000, '/');
这可能吗?代码是什么?
该 cookie 用于为 GA 创建过滤器,该过滤器将排除我的应用程序的所有当前成员。 cookie 在他们第一次登录时设置。主域和子域都使用相同的 GA 跟踪代码。
另外,如果我访问的另一个网站有一个带有字符串“gacookie”的 cookie,这会影响 Google Analytics 过滤器,还是只准备来自它正在跟踪的域和子域的 cookie...
Main site - www.example.com
App site - app.example.com
The cookie is created on app.example.com, but should also work for www.example.com.
setcookie("gacookie", time(), time()+31536000, '/');
Is this possible? What would be the code?
The cookie is being used to create a filter for GA that will exclude all current members of my application. The cookie is set the first time they log in. Both the main domain and the subdomain use the same GA tracking code.
Also, if another site that I visit has a cookie with the string "gacookie", will that effect the Google Analytics filter, or will it only ready cookies from the domain and subdomain it is tracking...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是有关如何跨子/域集成跟踪的更多详细信息。
http://code.google.com/apis/analytics/docs/tracking /gaTrackingSite.html
Here are more details on how to integrate tracking across sub/domains.
http://code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html