0

I need to track traffic between a specific set of web sites. I would then store the number of clicks in a database table with the fields fromSite, toSite, day, noOfClicks. The complete urls are unimportant - only web site identity is needed.

I've ruled out redirects since I don't want my server to be a single point of failure. I want the links to work even if the tracking application or server is down or overloaded.

Another goal is to minimize the work each participating site has to do in order for the tracking to work.

What would be the best way to solve this problem?

4

3 回答 3

1

The best way is to use an analytics program like Google Analytics, and to review the reports for each domain.

于 2008-09-19T23:04:44.837 回答
1

您是否有权访问所有相关站点的日志?如果是这样,您应该能够从日志文件(Referer 标头)中提取该数据。

于 2008-09-19T23:24:35.600 回答
0

You could place an onclick event on to each link that goes between each site. the onclick would then call some javascript which could do a server call back to register the click.

于 2008-09-19T23:16:55.090 回答