Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I have added this to my GA script ( in footer )

_gaq.push(['_trackPageview' , '<?php $thisurl="http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];echo $thisurl; ?>']);

My question is , when we look at src code: we see .. ( for our about.php page )

 _gaq.push(['_trackPageview' , 'http://www.ourdomain.com/about.php']);

Now is this correct protocol, or because setDomainName has already been set to ourdomain.com within GA script ..

Should we echo this instead ?

 _gaq.push(['_trackPageview' , '/about.php']);

ANy help appreciated

share|improve this question

1 Answer

_gaq.push(['_trackPageview' , '/about.php']); is the right way. See example at Google tutorial:

http://code.google.com/apis/analytics/docs/gaJS/gaJSApiBasicConfiguration.html#_gat.GA_Tracker_._trackPageview

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.