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.

I'm setting up a SaaS website and I want customers to be able to track their own sites (cust1.mysite.com, cust2.mysite.com) and I want to be able to aggregate all that data and look at it myself -- customers should not have access to the aggregate data, only their own.

I think this can be done with multiple profiles tied to the same account, but i expect to have a lot of customers, and i don't want to be in the business of creating profiles/logins/etc.

I've read through the Google cross-domain docs, etc. several times. I've got some test websites set up on Weebly as well -- thus far data is not appearing for my sites.

http://learnexacust1.weebly.com/

http://learnexacust2.weebly.com/

I have 3 GA accounts set up -- one aggregate, and one for each of those 'cust' sites. It's been more than 48 hours.

I can see the 'realtime' data coming in, but it doesn't show any other place. I've made tons of changes over the past couple of days including most recently updating the profile names. The real-time aggregate data will show up to 8 visitors on the site at one time, but it's only 1 IP with 2 different browsers.

I think Google says "Don't use separate accounts," but weebly suggests this practice is fine. I can't think of another way of doing this without giving myself the big headache of managing tons of customers' google accounts -- i want them to be able to just paste in their code and be able to access their data.

Is there another way to troubleshoot this? I've used Firebug but don't see any javascript errors. Thank you.

<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-32876403-1']); // customer account
  _gaq.push(['_trackPageview']);

  _gaq.push(['b._setAccount', 'UA-32860478-1']); // aggregate account
  _gaq.push(['b._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>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.