Questions tagged [user-tracking]

141 questions
46
votes
4 answers

Detecting a "unique" anonymous user

It is impossible to identify a user or request as unique since duping is trivial. However, there are a handful of methods that, combined, can hamper cheating attempts and give a user quasi-unique status. I know of the following: IP Address - store…
Omar
  • 37,391
  • 42
  • 132
  • 207
27
votes
5 answers

Cross Domain User Tracking

We have several websites on different domains and I'd like to be able to track users' movements on these sites. Obviously cookies are not feasable, because they don't cross domain borders. I could look at a combination of IP address and User…
BlaM
  • 26,721
  • 31
  • 89
  • 104
17
votes
1 answer

Having trouble with mapkit usertrackingwithheading mode on iOS 6

I think I may have discovered a bug in the mapkit API for iOS 6, but since I still consider myself a rookie I thought I'd check here to see if anyone can point out something I may be doing wrong. I have an app that I've been working on for a few…
vichudson1
  • 881
  • 1
  • 9
  • 21
16
votes
1 answer

why browsers allow setting cookie on the parent (cross) domain of an iframe?

Why can a site (a.com) having an iframe to another domain (b.com) have its cookie viewed and changed by that other domain document? Just saw this happening in an Ad, and went to do a proof of concept, and it worked... here's what i did: first,…
gcb
  • 12,288
  • 7
  • 58
  • 86
13
votes
2 answers

How Do Internet Advertisers Use Third-Party Cookies?

If a given web server can only read cookies from those set within its own domain, how do Internet advertisers track user's web traffic from websites outside of their network? Is there some kind of "supercookie" global advertising system that…
depthfirstdesigner
  • 3,033
  • 4
  • 29
  • 48
11
votes
5 answers

Disable Track and Trace in apache

I have Apache 2.2.22 in suse Linux. I want to disable track & trace in Apache and use 1- TraceEnable Off and 2- RewriteEngine on RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK) RewriteRule .* - [F] . but of 2 way don't work.
Kobra Ghahremani
  • 175
  • 2
  • 2
  • 7
8
votes
3 answers

How to write "Last Seen" logic like that on Stack Overflow

I'm working on an application that has similar logic as SO with regards to when the user was last seen. I've run into a conceptual problem that I'm hoping some of you Guru's can help me out with. All activity is logged in an ActivityLog table in…
Chase Florell
  • 42,985
  • 56
  • 169
  • 364
7
votes
2 answers

Parsing __utmz tracking cookie to get referral

I use Google Analytics on my site, and I want to read __umtz cookie to get referring link. I made some research and I wrote such code: $refer=explode('utmcsr=',$_COOKIE['__utmz']); if(count($refer)>1)…
Thinker
  • 12,902
  • 8
  • 37
  • 52
6
votes
3 answers

How to track user interest and display products based on their interest

I have an e-commerce website and I need to display products in homepage based on user interest like advertisement showing on facebook and google based on the search we did on the internet. Is there any API from facebook or google or any website for…
6
votes
4 answers

How would you implement a "last seen" feature for users?

On Stack Overflow, the profile page lists a "last seen" property. This doesn't seem to be updated on every page view (for performance reasons, obviously). How would you implement it in a heavy-traffic web app? Would you update it only on certain…
Kevin Pang
  • 39,694
  • 37
  • 117
  • 169
6
votes
5 answers

What are the Alternatives to Google Analytics

I need to Track Unique Visitor count in my web application. I would really like to use Google Analytics but due to the Load limitations that google imposes I will not be able to use them. I am expecting WAY over 10,000 requests a day. This is the…
Luke101
  • 56,845
  • 75
  • 204
  • 330
5
votes
1 answer

How to gather info similar to panopticlick.eff.org

I saw that the website http://panopticlick.eff.org/ gather info about your browser, which makes you unique, even without cookies or IP tracking. My question: How do you use javascript to see this info?
Yousf
  • 3,853
  • 2
  • 23
  • 37
4
votes
9 answers

how to know visitors is actually looking at the webpage and for how long?

when the visitor goes to a webpage, how do we know the visitor is actually showing the page on top (instead of going to another tab or app already). also how do we know how long the user has read the page or how long the page stayed open?
nonopolarity
  • 130,775
  • 117
  • 415
  • 675
4
votes
2 answers

How does Google track search result clicks? Is this the best way?

As the question states, I'm trying to figure out how google tracks clicks on search results. When you view the source, you find the following:
Darryl Hein
  • 134,677
  • 87
  • 206
  • 257
4
votes
4 answers

Google Analytics - only track traffic to a folder of the site

I want to track traffic for mysite.com/current-campaign/ and careless about traffic on mysite.com in general. Is it ok to place the GA tracking code in the files inside the /current-campaign/ folder or does it HAVE TO be in the root of the server…
Francisc
  • 66,160
  • 57
  • 172
  • 264
1
2 3
9 10