counter - google analytics can not see the code on the site -


ga code placed before </head> tag, more 3 days still "code not installed" here code

<script type="text/javascript">     var _gaq = _gaq || [];   _gaq.push(['_setaccount', 'ua-18367xxx-1']);   _gaq.push(['_trackpageview']);    (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);   })();  </script>  

probably there special settings on server?? (in robots.txt example - nothing special)

the code works fine, sends data ga fine itself.

you need supply more info c/p of code generated, in general....

1) data sent ga going , viewing page in browser. doesn't matter in robots.txt. if not on page go , view in browser, data not sent.

2) ensure have right account number in line:

_gaq.push(['_setaccount', 'ua-18367xxx-1']); 

i assume xxx'd out account number posting purposes know assuming...

3) make sure looking @ right account/report(s) in ga.

4) make sure don't have filters or blocking page(s) in question (or whole domain)

other things check...can't without more details.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -