Why don't Google Analytics Content Experiments show results?

First of all, let me quickly launch my installation for you. We have several domains, and for this reason I use a tracking code that simultaneously sends traffic to two different profiles. One profile tracks a specific domain, and the other is a multi-domain profile that collects data from all domains. Here's what the tracking code for my domain pages looks like. UA-XXXXX-11 - multi-domain account:   

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-XXXXX-1']);
      _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_trackPageview']);
      _gaq.push(['t2._setAccount', 'UA-XXXXX-11']);
  _gaq.push(['t2._setDomainName', 'none']);
  _gaq.push(['t2._setAllowLinker', true]);
  _gaq.push(['t2._setAllowHash', false]);
  _gaq.push(['t2._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>

, Content Experiments GA, . . , . utm_expid utm_referrer URL-, , , . 8 .

, , (: https://productforums.google.com/forum/?fromgroups#!topic/analytics/9ogbbQPZFpk), setAllowLinker setAllowHash.

(UA-XXXXX-1 . SetAllowLinker SetAllowHash) . , .

, , , utm_expid utm_referrer URL.

, 20 , . " ", "20 ", "0 ".

? , t2.- . , , , . , , ?

+5
1

, .

setDomainName, setAllowHash false / setCookiePath, Experiments.

_setDomainName ('example.com'); _udn = "example.com";

_setAllowHash (false); _uhash = "off";

_setCookiePath ('/'); _utcp = "/";

Google Analytics:

<script>
_udn = "example.com";
</script>
<!-- Google Analytics Experiment code -->
... Contents of the experiment code ...
<!-- End of Google Analytics Experiment code --> 

, - .

: http://support.google.com/analytics/bin/answer.py?hl=en&answer=2658141

+8

All Articles