I've just discovered that "Google Analytics" gives you the "Tracking Not Installed" error if you using HTTP redirects
[code]
<?php header( 'location: login.php' ) ; ?>
[/code]
so you must (temporarily ?) rewrite you code so that the google script is included DIRECTLY in the first page on your website
[code]
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-747268-6";
urchinTracker();
</script>
[/code]
Comments
I have the same problem which you wrote about above. But Im using asp pgaes protected by membership. However, I have included the snippet just before the </body> tag on all pages....still doesnt work....any ideas?
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(
unescape(
"%3C"+"script src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'" + "%3E"+"%3C/script%3E"
)
);
</script>
<script type="text/javascript">
try
{
var pageTracker = _gat._getTracker("UA-NNNNNN");
pageTracker._trackPageview();
}
catch(err)
{
}
</script>
you could try the analytics and webmaster googlegroups next !