私はGoogleアナリティクスのページビューをトラッキングするために使用しているコード(下記)を用意しています。 Googleアナリティクスでは、すべてのページの名前が「$ A」になります。
私が間違ってやっている私は、同じ問題があった人を見つけることができないよう、私は見ることができない。
<script type="text/javascript">
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);
_gaq.push(['_trackPageview']);
</script>
<script src="/__utm.js" type="text/javascript"></script>
「__utm.js」とは何ですか? –
UrchinトラッキングモジュールサイトはUrchinの使用を中止し、現在GAを使用しています。 – HardlyNoticeable
私はUrchinを使い慣れてから何年も経っていますが、UrchinがGAを妨害している可能性はありますか?私は、少なくともいくつかのテストページでそれを削除しようとし、何が起こるかを見てみましょう。 –