I installed a profile for Google Analytics. I have dozens of URL parameters that use different pages, and I want to exclude. Fortunately, google has a field that you can change in the general profile settings [Exclude URL Query Parameters:]. Out of a few dozen points, they all work for me and are not considered part of the URL. Except forpropid
I added propidto the comma-separated list on Monday. But every time I check GA, I'm pretty sure that they are still connecting.
So, am I trying to exclude too many parameters? I could not find the documentation on the GA site to say that there was a limit.
here is the exact contentexclude URL Query parameter field
There is a reason why so many bha, before me did not know the difference between get / post.
propid,account,pp,kw1,kw2,kw3,sortby,page,msg,sd,ed,ea,ec,sc,subname,subcode,sa,qc,type,code,propid,acct,minbr,maxbr,minfb,maxfb,minhb,maxhb,minrm,maxrm,minst,maxst,minun,maxun,minyb,maxyb,minla,maxla,minba,maxba,minuc,maxuc,card,print,year,type
Update
I thought that after more time has passed, “bad data” will fall from GA. But as of yesterday, it still reports the predicted querystring value, despite being added to the list of exceptions, as well as other variables.
Update2
I found this post on google https://www.google.com/support/forum/p/Google+Analytics/thread?tid=72de4afc7b734c4e&hl=en
He reads that the field allows 255 char, Ok. The problem is solved. With the exception of my value field, only 247 characters. ARGGGHH!
* Update 3 *
, , googleAnalytics.asp, asp. - ? . ( *.inc, intellisense)
<script type="text/javascript">
<% GAPageDisplayName = REQUEST.ServerVariables("PATH_INFO") %>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20842347-1']);
_gaq.push(['_setDomainName', '.sc-pa.com']);
<% if GAPageDisplayName <> "" then %>
_gaq.push(['_trackPageview','<%=GAPageDisplayName %>']);
<% else %>
_gaq.push(['_trackPageview']);
<% end if %>
(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>
4
, -, . , , Google. , , , , .