0

記事ページへの人間の訪問のみを追跡する必要があります。SiteCatalyst は、ページ トラッキングに最適であると聞いています。これが私がやろうとしていることです。これは私が支払わなければならない金額に影響するため、可能であればすべての人間の訪問を追跡する必要があります. すべてのページの正確なヒット数を含むサイト統計をダウンロードする必要があります。繰り返しますが、私はスパイダー/ボットを追跡したくありません。サイト統計をダウンロードしたら、それを使用して各記事のヒット数を更新します。その後、ヒット数に応じてライターに支払います。SiteCatalyst はこれを行うことができますか。そうでない場合、誰がこのようなことをできると思いますか?

4

2 に答える 2

1

ルーク-クイックアンサー現在、これを取得するための100%正確な方法はありません。

OmnitureのSiteCatalystは、訪問者情報を取得するための非常に優れたツールを提供します。無料のオプションであるGoogleAnalyticsを含め、他のベンダーから訪問者情報を取得できます。

You may have been lead to believe as I had that Omniture strips out all bots and spiders by default. Omniture states that most bots and spiders do not load images or execute JavaScript, which is what they rely upon for tracking. I am not sure what the exact percentage is, but not all bots and spiders act in this way.

In order for you to gain a more accurate report on the number of "humans" you will need to know what the IP address of the visitor is and possibly the user agent. You can populate the agent and IP in PHP with these two variables $_SERVER['HTTP_USER_AGENT'] and $_SERVER['REMOTE_ADDR']. You will then need to strip out the IP address of known bots/spiders from your reporting. You can do this with lists like this: http://www.user-agents.org/index.shtml or manually by looking at the user agent. Beware of relying upon the user agent as the bot can easily spoof this. This will never be %100 accurate because new bots/spiders pop up every day. I suggest looking further into "click fraud".

Contact me if you want further info.

于 2009-10-15T22:58:46.893 に答える
1

omniture also weeds out traffic from known bots/spiders. But yeah...there is an accepted margin of error in the analytics industry because it can never be 100%, due to the nature of the currently available technology.

于 2010-07-24T21:07:41.367 に答える