Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!

CookieDomainPeriods

Avatar

Level 10

The cookieDomainPeriods variable determines the domain on which the Analytics cookies s_cc and s_sq are set by determining the number of periods in the domain of the page URL. This variable is also used by some plug-ins in determining the correct domain to set the plug-in's cookie.

The default value for cookieDomainPeriods is "2". This is the value that is used if cookieDomainPeriods is omitted. For example, using the domain www.mysite.com, cookieDomainPeriods should be "2". For www.mysite.co.jp, cookieDomainPeriods should be "3".

If cookieDomainPeriods is set to "2" but the domain contains three periods, the JavaScript file attempts to set cookies on the domain suffix.

For example, if setting cookieDomainPeriods to "2" on the domain www.mysite.co.jp, the s_cc and s_sq cookies are created on the domainco.jp. Because co.jp is an invalid domain, almost all browsers reject these cookies. As a consequence, visitor click map data is lost, and theVisitor Profile > Technology > Cookies report indicates that almost 100% of visitors reject cookies.

If cookieDomainPeriods is set to "3" but the domain contains only two periods, the JavaScript file sets the cookies on the subdomain of the site. For example, if setting cookieDomainPeriods to "3" on the domain www2.mysite.com, the s_cc and s_sq cookies are created on the domain www2.mysite.com. When a visitor goes to another subdomain of your site (such as www4.mysite.com), all cookies set withwww2.mysite.com cannot be read.

Note: Do not include additional subdomains as part of cookieDomainPeriods. For example, store.toys.mysite.com would still havecookieDomainPeriods set to "2". This variable definition correctly sets the cookies on the root domain, mysite.com. SettingcookieDomainPeriods to "3" in this example would set cookies on the domain toys.mysite.com, which has the same implications as the prior example.

See also fpCookieDomainPeriods.

               
Max SizeDebugger ParameterReports PopulatedDefault Value
N/ACDPAffects multiple reports as it controls how the visitor ID is stored and handled."2"

Examples

Setting the variable manually:
  1. s.cookieDomainPeriods = "3";
 

Several examples to dynamically set the variable if your core Javascript file hosts both types:

  1. document.URL.indexOf(".co.") > 0 ? s.cookieDomainPeriods = "3" : s.cookieDomainPeriods = "2";
 
  1. s.cookieDomainPeriods = "2";
  2. var d=window.location.hostname;
  3. if(d.indexOf(".co.uk") > 0 || d.indexOf(".com.au") > 0)
  4. {s.cookieDomainPeriods = "3";}
 
  1. s.cookieDomainPeriods = "2";
  2. if(window.location.indexOf(".co.jp") > 0 || window.location.indexOf(".com.au") > 0)
  3. {s.cookieDomainPeriods = "3";}
 

Pitfalls, Questions, and Tips

  • If you notice that visitor click map data is absent, or that the Traffic > Technology > Cookies report shows a large percentage of visitors who reject cookies, check that the value of cookieDomainPeriods is correct.
  • If cookieDomainPeriods is higher than the number of sections in the domain, cookies will be set with the full domain. This can cause data loss as visitors switch between subdomains.
  • The cookieDomainPeriods variable was used in deprecated implementations prior to trackingServer to set the visitor ID cookie. Though only present in outdated code, failure to correctly define cookieDomainPeriods in this circumstance puts your implementation at risk of data loss.

Reference: https://marketing.adobe.com/resources/help/en_US/sc/implement/cookiedomainperiods.html

0 Replies