I need a modified Javascript which inflated the pageviews, unique visitors and visitor count!
For educational purposes because I want to see if there are certain patterns when artificaly altering the G. Analytics report
I coded this but it does not work:
<script type="text/javascript">
var i=0;
for (i=0;i<=10;i++) {
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19629541-9']);
_gaq.push(['_trackPageview']);
_gaq.push([_setDomainName, '.domain.com']);
_gaq.push([_setDomainName, 'domain.com']);
(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>
and this Code only alters the pageviews:
<script>
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script>
// Google Analytics
var pageTracker;
try {
pageTracker = _gat._getTracker("UA-15064357-1"); // pour dystroy.org
pageTracker._setDomainName("none");
pageTracker._setAllowLinker(true);
for (var i=10; i-->0;) pageTracker._trackPageview();
} catch(err) {console.log(err);}
</script>
I am asking becasue I recenlty viewed an analytics report which did not quite mach up with all the underlaying data
thanks