9

What does the utmscr and/or utmcct values mean in reference to the Http cookie Server variable? Are they acronyms or short for something?

We are getting Elmah errors with the title "System.Web.HttpException: Unable to validate data." In each Elmah error message, the Http Cookie server variable value contains a property called utmscr set to the same Web site and utmcct set to a page at that Web site. Here is a section from the Http Cookie Value from the Elmah Server variables dump.

utmccn=(referral)|utmcsr=someWebSite.com|utmcct=/someWebPage.htm|utmcmd=referral; CP=null*;

The someWebpage.htm page does exist at someWebsite.com but does not currently have a reference to our page. We think the error is related to view state. Any thoughts? Thanks!

Pavel Vlasov
  • 4,206
  • 6
  • 41
  • 54
James Lawruk
  • 30,112
  • 19
  • 130
  • 137

2 Answers2

13

My guess, like that of dr. evil, is that it's something to do with Google Analytics or gaforflash.

On this page

http://gaforflash.googlecode.com/svn-history/r330/trunk/src/com/google/analytics/campaign/CampaignTracker.as

I found this comment block:

 /**
         * Format for tracker have the following fields (seperated by "|"):
         *         <table>
         *           <tr><td>utmcid - lookup table id</td></tr>
         *           <tr><td>utmcsr - campaign source</td></tr>
         *       <tr><td>utmgclid - google ad click id</td></tr>
         *           <tr><td>utmccn - campaign name</td></tr>
         *           <tr><td>utmcmd - campaign medium</td></tr>
         *           <tr><td>utmctr - keywords</td></tr>
         *           <tr><td>utmcct - ad content description</td></tr>       
         *         </table>
         * should be in this order : utmcid=one|utmcsr=two|utmgclid=three|utmccn=four|utmcmd=five|utmctr=six|utmcct=seven
         * 
         */

That, or something related, is possibly where your values are coming from.

Community
  • 1
  • 1
Eric King
  • 11,594
  • 5
  • 43
  • 53
0

This should be a Google Analytics cookie or some other 3rd party tracking cookie. I don't know if that helps :)

Appulus
  • 18,630
  • 11
  • 38
  • 46
dr. evil
  • 26,944
  • 33
  • 131
  • 201