active questions tagged google-analytics - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:41:49Zhttp://stackoverflow.com/feeds/tag/google-analyticshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1940904/how-does-compete-com-know-google-analytics-data0How does compete.com know Google analytics data?Devrim2009-12-21T15:56:19Z2009-12-21T18:01:50Z
<p>Hi,</p>
<p>If you search for any site on compete.com you can get Google Analytics data about that site. I am wondering how they get that information..</p>
<p>Second point is if that data is out in the open, why google makes us insert ga.js files on every page ? </p>
http://stackoverflow.com/questions/1846460/cause-google-analytics-log-from-non-web-application-eg-via-webclient0Cause Google Analytics log from non-web application (eg. via WebClient)Danny Tuppeny2009-12-04T11:44:37Z2009-12-18T10:13:01Z
<p>I'd like to gather some stats about the usage of my application, and since I already have web stats in Google Analytics, I thought it'd be cool if I could send a request from the app that causes a hit in Analytics, eg.</p>
<p>/app/v1.0/debug</p>
<p>This would allow me to see how often my app is starting up (or whatever).</p>
<p>I had a look online and found some examples of people doing similar things (some to workaroudn Javascript being disabled, and others doing the same as me), but none in C#. I translated the code over as best as I could, but I've called it a few times a couple of days ago, and nothing showed up in the logs :(</p>
<pre><code>// Send a hit to Google Analytics so we can track which versions are being used
Random rnd = new Random();
int cookie = rnd.Next(10000000, 99999999);
string statsRequest = "http://www.google-analytics.com/__utm.gif" +
"?utmwv=4.3" +
"&utmn=" + rnd.Next(10000) + // Used only to stop browser caching
"&utmhn=myhost.com" + // Hostname
//"&utmhid=<random#>" +
"&utmr=-" + // Referer
"&utmp=/app/v0.4/DEBUG/Test" + // Requested page
"&utmac=UA-123456-7" + // Google Analytics ID
"&utmcc=__utma%3D" + cookie + "3B%2B__utmz%3D" + cookie + "%3B";
using (var client = new WebClient())
{
client.DownloadData(statsRequest);
}
</code></pre>
<p>Does anyone know what to do to make this work? It would be even better if I could store the cookie in some way, so that people are considered "returning visitors" when they run the app multiple times, but that's less important.</p>
http://stackoverflow.com/questions/1260356/using-google-analytics-with-soap-xml-json-web-service0Using Google Analytics with (Soap/XML/Json) Web service?Ed2009-08-11T13:26:33Z2009-12-18T05:53:14Z
<p>I am looking for a way to implement Google Analytics tracking in my web service.
My app sends and receives XML from the server, so implementing the Google JavaScript tracking stuff is unfortunately no option.</p>
<p>Any other alternatives? Someone must have done this before :-)</p>
http://stackoverflow.com/questions/1922416/what-are-options-of-open-source-or-cheap-user-tracking-software-that-can-be-self0What are options of open source or cheap user tracking software that can be self-hosted? [closed]Bialecki2009-12-17T15:15:57Z2009-12-17T15:24:56Z
<p>Google Analytics isn't an option because of security concerns, so are there any packages out there with similar outputs that can be self-hosted?</p>
<p>EDIT: Sorry meant self-hosted. And I guess this goes on servefault, so I'll move it there.</p>
http://stackoverflow.com/questions/1903577/add-analytics-to-account-of-someone-other-than-the-one-who-set-it-up0Add Analytics to account of someone other than the one who set it up?samgoody2009-12-14T21:19:24Z2009-12-17T01:34:20Z
<p>I have been requested to get involved with a family member's site.<br></p>
<p>To date, they have been paying an SEO outfit, which I believe has been feeding them lies and milking them for money.</p>
<p>I can see that all pages in the site have Google Analytics. However, the SEO outfit refuses to let us see the Analytics page, and has always just forwarded them some (presumably doctored) slideshows.</p>
<p>The only tracking service that lists their site is Compete, which shows a number of visitors far from what they are paying for.</p>
<p>I would like to add their site to my own Analytics account. I have ftp access to their server, and permission from the site owners to modify any files I want.</p>
<p>However, I don't want to do anything that might destroy the entire existing history of analytics data, or even that would interfere with the current SEO outfit [until I have something concrete in-hand].</p>
<p>Does anyone know:</p>
<ul>
<li>Can I add Analytics to my own account when it was originally setup by someone else? </li>
<li>Will there be any negative results of attempting this?</li>
<li>Any other ideas?</li>
</ul>
<p>Thanks</p>
<p>Edit: Can anyone suggest a better title - I can tell mine is not good?</p>
http://stackoverflow.com/questions/927113/is-anybody-happily-using-google-analytics-with-big-websites-million-pages-mil0Is anybody happily using Google Analytics with big websites? (million+ pages, million+ monthly visitors)Dennis Kashkin2009-05-29T17:10:16Z2009-12-16T07:08:34Z
<p>I was a happy customer of Google Analytics starting from the Urchin times. But something strange happened a few months ago and GA started showing a fake URL called "(other)" that is credited between 5% and 45% of all site traffic. I've tried filtering out some URL parameters to reduce the number of pages. Currently GA shows only 150,000 pages on my site, which is well below the half million limit that some people are talking about. Still, the page "(other)" is showing as the most popular page on my site. </p>
<p>Is anybody else struggling with this issue? I am wondering whether this could be a scalability issue. My site has been growing over the years, and currently doing 1.25 million unique monthly visitors and over 10 million pageviews. The site itself has around half a million pages. If you are successfully using GA with a bigger website than mine, please share your story. Are you using the Sampling feature of their tracking script?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1907881/jquery-deep-linking-how-does-it-effect-analytics0jquery deep linking - how does it effect analytics?Jared2009-12-15T14:37:38Z2009-12-15T14:47:25Z
<p>Hello,</p>
<p>I am looking into using <a href="http://www.asual.com/jquery/address/" rel="nofollow">http://www.asual.com/jquery/address/</a> , but I am wondering how it effects google analytics. Google analytics is a snippet of code at the bottom of pages. I would imagine deep linking would still look like activity on the initial page, not new pages.</p>
http://stackoverflow.com/questions/1423128/google-analytics-iframe0Google Analytics & iFrameThomas2009-09-14T18:18:05Z2009-12-15T07:09:24Z
<p>Hi Guys,</p>
<p>So I have a simple page and when a user clicks on a link an iframe opens. I am trying to use the </p>
<p><a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527" rel="nofollow">http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527</a></p>
<pre><code>pageTracker._trackPageview('/outgoing/example.com');
</code></pre>
<p>Inside the iframe - but it seems that its not working ? I have read this page </p>
<p>code.google.com/apis/analytics/docs/tracking/gaTrackingSite.html#trackingIFrames</p>
<p>And it seems that I use the "iframe.src = pageTracker._getLinkerUrl" to pass some cookie info to the iframe - the problem is that I want to track stuff INSIDE the iframe (i.e. such as events etc) and I get a "pageTracker is undefined" error.</p>
<p>Do I need to include something like </p>
<pre><code><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
</code></pre>
<p>inside the iFrame - to get the pageTracker to work. I take it that the "Publisher UA-XXXXX-X" ID will be passed via cookies and everything will work?</p>
<p>Any ideas</p>
http://stackoverflow.com/questions/934119/track-campaigns-with-google-analytics-without-query-string-parameters6Track campaigns with Google Analytics without query string parameters?Simon2009-06-01T09:28:57Z2009-12-09T03:39:07Z
<p>Is there a supported way in Google Analytics to track a campaign without having to use query string parameters.</p>
<p>In Analytics you can <a href="http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55518" rel="nofollow">tag a link to your site</a> with query string parameters such as <code>utm_campaign</code> and <code>utm_medium</code> which carry information about the campaign so that they can be tracked.</p>
<p>Google actually has an <a href="http://www.google.com/support/analytics/bin/answer.py?answer=55578&hl=en" rel="nofollow">online tool</a> to help in the creation of such links.</p>
<p>For instance if StackOverflow was advertising on Experts Exchange they may have a link like this :</p>
<p><a href="http://www.stackoverflow.com/?utm_source=expertexchange&utm_medium=banner&utm_campaign=a-better-expert-exchange" rel="nofollow">http://www.stackoverflow.com/?utm_source=expertexchange&utm_medium=banner&utm_campaign=a-better-expert-exchange</a> </p>
<p>For many reasons I don't want these clumsy looking parameters appearing in my URLS :</p>
<ul>
<li>I want to encourage twittering, and long links discourage this </li>
<li>I dont want people bookmarking them with campaign IDs in</li>
<li>I want people to see a clean URL </li>
<li>I dont want search engines indexing these links.</li>
<li>I want full control about what parameters are sent to google analytics - and not leave it up to my partners to mess up the URLs they access my site with</li>
</ul>
<p>I looked a while ago to try to find a way wherein you could set these parameters. <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiCampaignTracking.html" rel="nofollow">Google has a page</a> which at first glance looks like the solution, but actually isn't. That page describes how you can change the names of the query string parameters to something else - for instance to use <code>src</code> instead of <code>utm_source</code> you would run :</p>
<pre><code> pageTracker._setCampSourceKey("src");
</code></pre>
<p>I really cannot seem to figure out why they don't make it easy to actually explicitly set the value of the <code>utm_source</code> key - and not just set up an alternative parameter name for it.</p>
<p>I remember a while back finding someone who had a kind of nasty hack, but I cant even seem to find that now. I seem to recall though that whoever it was took a copy of the analytics code and essentially branched it off and hacked at it. This is not a good solution for me!</p>
<p>is there an officially supported way of doing this at all, without some kind of nasty redirects. </p>
<p>In a nutshell I want to do something like this (ASP.NET MVC site). Give a partnet a link to my site with a URL like this :</p>
<pre><code> http://www.example.com/?cid=2dae88a8-66b1-475d-8a35-2978bd1a158c
</code></pre>
<p>In the controller for my MVC page I would find out what campaign this GUID related to, and set the model state. Note: this gives me the advantage that i can change the campaign parameters without having to reissue the URL.</p>
<p>In the page itself I would then do this:</p>
<pre><code> var campaignMedium = <%= ViewData.Model.CampaignMedium %>;
var campaignSource = <%= ViewData.Model.CampaignSource %>;
var campaignName = <%= ViewData.Model.CampaignName %>;
pageTracker._setCampaignData( { utm_source=campaignSource, utm_medium=campaignMedium, utm_campaignName=campaignName });
pageTracker._trackPageview();
</code></pre>
<p><strong>IMPORTANT: This _setCampaignData method DOES NOT ACTUALLY EXIST. This is just 'pseudo code' for what I'd ideally like to be able to do.</strong></p>
<p>Has anyone successfully managed to do anything like this?</p>
http://stackoverflow.com/questions/1854767/tools-to-generate-reportanalytics-feeds-from-google0Tools to generate reportanalytics feeds from googledhaval2009-12-06T08:29:38Z2009-12-06T08:29:38Z
<p>Can you recommend any programmable tools/extensions that can be used to generate reports out of google analytics feed on th fly? Essentially some kind of pdf generator from feed, not sure though.
Or does the Google analytics itself gives reports output as feed etc.,</p>
http://stackoverflow.com/questions/1245958/when-is-google-analytics-not-good-enough5When is Google Analytics not good enough?Gabe2009-08-07T17:18:16Z2009-12-06T00:34:59Z
<p>I'm trying to determine why an enterprise wouldn't want to use Google Analytics. </p>
<p>Here are the main reasons I've seen mentioned:</p>
<ul>
<li>Inability to track clients that have Javascript disabled.</li>
<li>Lack of ownership of the statistics - Google owns the data.</li>
</ul>
<p>Most of the web clients with Javascript disabled will probably be bots/spiders. This data is interesting, but probably not very useful.</p>
<p>As for the ownership issue, this is a bit paranoid IMO. </p>
<p>What am I missing here? When is Google Analytics not good enough?</p>
http://stackoverflow.com/questions/686640/google-analytics-why-have-two-script-blocks7Google analytics, why have two script blocks?Ian Quigley2009-03-26T16:51:28Z2009-12-04T22:47:46Z
<p>Why does the Google Analytics script I add to my webpage need to come in two script blocks?</p>
<pre><code><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx-xx");
pageTracker._trackPageview();
} catch (err) { }
</script>
</code></pre>
http://stackoverflow.com/questions/905353/google-analytics-blocks-html-page-rendering2Google Analytics - Blocks HTML/page renderingBenHelley2009-05-25T04:47:37Z2009-12-04T22:42:41Z
<p>I have used the "<a href="http://lyncd.com/2009/03/better-google-analytics-javascript/" rel="nofollow">Better Google Analytics JavaScript that doesn’t block page downloading</a>" to load Google Analytics dynamically so that it will not block HTML / page rendering.</p>
<p>However, it appears occassionaly that my HTML page will block rendering on the Firefox 3.0 (WinXP) status message states:</p>
<p>"<strong>Transferring data from www.google-analytics.com</strong>"</p>
<p><em>Any ideas on how to load the Google Analytics JavaScript in a way in which it will not block HTML/page rending?</em></p>
http://stackoverflow.com/questions/1834077/browser-support-for-script-asynctrue3Browser support for <script async="true" />?knorv2009-12-02T16:27:13Z2009-12-02T18:41:35Z
<p>Today Google announced the support for <a href="http://googlecode.blogspot.com/2009/12/google-analytics-launches-asynchronous.html" rel="nofollow">asynchronous Google Analytics tracking</a>.</p>
<p>The asynchronous tracking is achieved using the async directive for the <code><script></code> tag.</p>
<p><b>Which browsers support the async directive (<code><script async="true" /></code>) and since which version?</b></p>
http://stackoverflow.com/questions/1330984/really-custom-reporting-in-google-analytics0Really Custom Reporting in Google AnalyticsPatrick Harrington2009-08-25T21:04:46Z2009-12-02T17:00:09Z
<p>I have a client who is currently using WebTrends for their analytics, and is considering making a move to Google Analytics.</p>
<p>However, from what I can tell, there is very little custom reporting available in GA. For example, if a user was logged into the system, and I wanted to be able to do reporting on people with blue eyes, brown hair, etc., is this possible?</p>
<p>It looks like you can set one "god variable" with the pagetracker._setVar() JS method, but it is limited to one metric. Any way to be able to track multiple metrics?</p>
http://stackoverflow.com/questions/753514/how-do-i-dynamically-load-google-analytics-javascript4How do I dynamically load Google Analytics JavaScript?Hank8102009-04-15T20:16:45Z2009-12-02T08:38:25Z
<p><strong>Without</strong> using any other JS frameworks (dojo, jquery, etc), <strong>how would I dynamically load Google Analytic's javascript to be used on a web page for web-tracking?</strong></p>
<p>The typical appropriate to dynamically loading JS is to do the following:</p>
<pre><code>var gaJs = document.createElement("script");
gaJs.type = "text/javascript";
gaJs.src = "http://www.google-analytics.com/ga.js";
document.body.appendChild(gaJs);
var pageTracker = _gat._getTracker("UA-XXXXXXXXX");
pageTracker._initData();
pageTracker._trackPageview();
</code></pre>
<p><strong>But that doesn't work.</strong></p>
<p>The ga.js file isn't loaded in time for <strong>_gat._getTracker</strong> & <strong>_initData/TrackPageview</strong> to function.</p>
<p>Any ideas on how to properly dynamically load ga.js.</p>
<p><strong>UPDATE</strong>: Seems like someone has attempted to address this problem at the following link. However, it's for use with the old Urchin code and not Google Analytics. </p>
<p>Any ideas on how to get this to work with ga.js instead of urchin.js?</p>
<p><a href="http://20y.hu/20070805/loading-google-analytics-dynamically-on-document-load.html" rel="nofollow">http://20y.hu/20070805/loading-google-analytics-dynamically-on-document-load.html</a></p>
http://stackoverflow.com/questions/1822517/html-valid-way-of-tracking-outbound-links-via-google-analytics1HTML valid way of tracking outbound links via Google Analytics?Brad2009-11-30T21:29:07Z2009-11-30T22:59:00Z
<p>I am using <a href="http://bit.ly/5NNAIa" rel="nofollow">http://bit.ly/5NNAIa</a>, and I have it tracking an outbound link, but I want my page to be valid.</p>
<p>This is the error I am getting: There is no "OnCick" attribute</p>
<p>The HTML is:</p>
<pre><code><p>View some of our student produced videos
on <a href="http://www.youtube.com/user/johndoe" onClick="javascript: pageTracker._trackPageview('/outgoing/youtube.com/user/johndoe');" rel="external">YouTube!</a></p>
</code></pre>
<p>I added this do my js embed file, to track all outgoing links</p>
<pre><code>$(document).ready(function() {
$('a[href^=http]:not("[href*=://' + document.domain + ']")').click(function() {
pageTracker._trackPageview('/out/'+$(this).attr("href"));
});
});
</code></pre>
<p>So now my js embed file looks like this below. I notice I call $(document).read(function() { at the beginning of both snippets, should they both go into one?</p>
<pre><code>$(document).ready(function() {
// opens links into separate window
$('A[rel="external"]').click( function() {
window.open( $(this).attr('href') );
return false;
});
});
$(document).ready(function() {
$('a[href^=http]:not("[href*=://' + document.domain + ']")').click(function() {
pageTracker._trackPageview('/out/'+$(this).attr("href"));
});
});
</code></pre>
http://stackoverflow.com/questions/1800253/google-analytics-can-it-collect-form-data1Google Analytics - can it collect form data?Murvinlai2009-11-25T22:02:58Z2009-11-25T22:29:48Z
<p>Simple scenario:
I have a signup form, with user name, password, email address, may be credit card number.</p>
<p>At the bottom of the page, I implement the Google Analytics code.<br>
when user clicks submit, it goes to a page wihtout google analytics.</p>
<p>question is..
can GA get the data (user naem, password..email..etc) in the first form after user input the data?</p>
<p>Do they say anything about it in their TOS or Privacy policy?</p>
http://stackoverflow.com/questions/1783250/is-there-a-lighter-version-of-google-analytics-for-flash0Is there a lighter version of Google Analytics for Flashunknown (google)2009-11-23T13:53:48Z2009-11-25T04:52:05Z
<p>40k of compiled code seems like a lot to me to be making some straightforward flash-javascript calls and makes GA unsuitable for banner ad work as well.</p>
<p>Does anyone know if there is a 'lite' version of Google Analytics for Flash?</p>
http://stackoverflow.com/questions/1784893/is-google-analytics-accurate1Is Google Analytics Accurate?Zack Peterson2009-11-23T18:02:01Z2009-11-24T15:50:13Z
<p>My records show a particular page of my web site was visited 609 times between July 2 and November 15.</p>
<p>Google Analytics reports only 238 page views during that time.</p>
<p>I can't explain this discrepancy.</p>
<p>For Google Analytics to track a page view event, the client browser must have JavaScript enabled and be able to access Google's servers. I doubt 60% of my visitors have either disabled JavaScript or firewalled outbound traffic to Google's tracking servers.</p>
<p>Do you have any explanation?</p>
<h2>More Info</h2>
<p>My application simply puts a record into a database as it serves up a page.</p>
<p>It doesn't do anything to distinguish a bot viewer from a human. </p>
http://stackoverflow.com/questions/1784996/how-to-track-ajax-requests-using-google-analytics2How to track Ajax requests using Google Analytics?Igor Pavelek2009-11-23T18:18:01Z2009-11-24T11:48:34Z
<p>I'm trying to use Google Analytics to track any Ajax request made by my web application (in my case built on ExtJS, but it doesn't matter right now).</p>
<p>I wrote few lines of code to track all Ajax requests:</p>
<pre><code>Ext.Ajax.on('requestcomplete', function(connection, options) {
pageTracker._trackPageview('/'+options.url);
});
</code></pre>
<p>but it doesn't work (it kind of works, but it doesn't track all the request). The numbers I'm getting are much lower than the number of my requests.</p>
http://stackoverflow.com/questions/1682380/problem-dispatching-with-google-mobile-analytics-for-iphone1Problem dispatching with google mobile analytics for iphoneEamonn2009-11-05T17:54:31Z2009-11-24T11:00:05Z
<p>I have integrated Google mobile analytics into my iphone app, but for some reason the page views and events are not dispatching.</p>
<p>I put this into my app delegate applicationDidFinishLaunching method (i've x'd out the UA string):</p>
<blockquote>
[[GANTracker sharedTracker] startTrackerWithAccountID:@"UA-xxxxxx-x" dispatchPeriod:10 delegate:self];
NSError *error;
[[GANTracker sharedTracker] trackPageview:@"/home" withError:&error];
</blockquote>
<p>This is the delegate method:</p>
<blockquote>
- (void)trackerDispatchDidComplete:(GANTracker *)tracker eventsDispatched:(NSUInteger)eventsDispatched eventsFailedDispatch:(NSUInteger)eventsFailedDispatch
{
NSLog(@"Google Analytics Dispatch: succeeded:%i, failed:%i",eventsDispatched,eventsFailedDispatch);
}
</blockquote>
<p>which prints out the message:</p>
<blockquote>
Google Analytics Dispatch: succeeded:0, failed:190
</blockquote>
<p>Did anyone else run into this problem?</p>
http://stackoverflow.com/questions/1785938/how-to-divide-a-search-query-into-sub-queries0How to divide a search query into sub queries?unknown (google)2009-11-23T21:02:24Z2009-11-23T21:05:17Z
<p>I am just wondering if there is an algorithm that can divide a user input query for a search engine into a set of sub queries.
for example if the entered query is
"plcae to stay and eat"
the sub queries would be
"place to stay" and "place to eat".
Thanks!!</p>
http://stackoverflow.com/questions/1782310/php-get-question-calling-from-a-post-call0PHP GET question - calling from a POST callRiddle2009-11-23T10:40:01Z2009-11-23T10:51:41Z
<p>I have a quick question i hope you guys can answer, i've got a search system that uses POST to do searches, now i want to track queries using Google Analytics but it requires using GET url parameters to pull parameters out the URL, what i don't want to do is rewrite the entire search system to use GET instead of POST. Is there any way around this? I was thinking maybe i can make a GET call to a new page from the page that recieves the search POSTs, but i don't want it to redirect, i merely want it to "hit" the url without actually redirecting?</p>
<p>Is this possible?</p>
<p>Any other solutions would also be appreciated.</p>
<p>Thanks for the help</p>
http://stackoverflow.com/questions/1782197/site-compromised-has-anyone-seen-this-hack-before-googleanalyticsresearchengi0Site compromised, has anyone seen this hack before? - googleanalyticsresearchengine.eu [closed]Dan C2009-11-23T10:07:57Z2009-11-23T10:07:57Z
<p>Hi,</p>
<p>One of our sites has been compromised and we have had a warning email from google. The site has been blocked by Google in Firefox, has anyone seen this type of attack before?</p>
<blockquote>
<p>Of the 1 pages we tested on the site
over the past 90 days, 1 page(s)
resulted in malicious software being
downloaded and installed without user
consent. The last time Google visited
this site was on 2009-11-19, and the
last time suspicious content was found
on this site was on 2009-11-19.</p>
<p>Malicious software includes 1
trojan(s). Successful infection
resulted in an average of 6 new
process(es) on the target machine.</p>
<p>Malicious software is hosted on 1
domain(s), including
googleanalyticsresearchengine.eu/.</p>
<p>1 domain(s) appear to be functioning
as intermediaries for distributing
malware to visitors of this site,
including web-bureau.com/.</p>
<p>This site was hosted on 1 network(s)
including AS31727 (NODE4).</p>
</blockquote>
http://stackoverflow.com/questions/1777921/website-session-analysis0Website Session AnalysisPaul Tarjan2009-11-22T05:37:01Z2009-11-22T13:11:32Z
<p>I'd like to know the best way to deep dive into the flow of my users. For example, I have 4 pages in my flow, how can I analyze which users abandon on which step? I can definitely do it by hand with logging, etc, but I'd rather use an off the shelf solution.</p>
<p>I have apache request logs, as well as google analytics. Can these analyze users as sessions?</p>
http://stackoverflow.com/questions/1770120/why-does-google-unescape-their-analytics-tracking-code5Why does Google unescape their Analytics tracking code?Jeff2009-11-20T12:19:36Z2009-11-20T13:46:07Z
<p>Just getting off my JavaScript training wheels.</p>
<p>Why does Google choose to <code>unescape</code> the <code>document.write</code> line in <strong>Part 1</strong> below?</p>
<p>Why don't they just write it like this? Maybe <code>unescape</code> is required for some older browser compatibility?</p>
<pre><code>document.write('<script src="'
+ gaJsHost
+ 'google-analytics.com/ga.js" type="text/javascript"></script>');
</code></pre>
<p>For reference, the entire Google Analytics tracking code looks like this:</p>
<p><strong>Part 1:</strong></p>
<pre><code><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol)
? "https://ssl."
: "http://www."
);
document.write(unescape("%3Cscript src='"
+ gaJsHost
+ "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"
));
</script>
</code></pre>
<p><strong>Part 2:</strong></p>
<pre><code><script type="text/javascript">
try
{
var pageTracker = _gat._getTracker("UA-0000000-0");
pageTracker._trackPageview();
}
catch(err){}
</script>
</code></pre>
<p>I understand what the rest of the code does, just curious about the unescape part.</p>
<p><strong>Edit</strong></p>
<p>The bottom line is, <code>unescape</code> is required. Voted to close this question because it is a duplicate (see answer marked correct).</p>
http://stackoverflow.com/questions/1770373/google-analytics-to-track-firefox-extension-use0Google Analytics to track FireFox extension useSwizec Teller2009-11-20T13:18:44Z2009-11-20T13:18:44Z
<p>Hi all,</p>
<p>I'm developing a Firefox extension and would like to track its use with google analytics, but I can't get it working.</p>
<p>I've tried manually calling a funstion from ga.js, but that didn't work for some reason. No error was produced, but neither was any data collected.</p>
<p>My last attempt was to have a website that just holds the tracking javascript and then loading it within the extension in an iframe with the URL configured so it contains meaningful data. This way the analytics are getting connected when I visit said webpage with a browser, but not in an extension. I've tried putting some visible javascript ont he site and have confirmed the site's javascript is executing. This method also works with other trackers, but I don't like their output and would prefer Google Analytics.</p>
<p>Any ideas what else I could try to accomplish this?</p>
http://stackoverflow.com/questions/1767142/track-visits-from-nonbrowser-application-using-google-analytics0track visits from nonbrowser application using google analyticsunknown (google)2009-11-19T22:52:03Z2009-11-19T23:26:16Z
<p>is it possible use google analytics to track visits from nonbrowser application? will ga be able to recognize custom user agents or other http headers? Anyone has experience in this area? thanks!</p>
http://stackoverflow.com/questions/1211507/how-to-track-anchor-tags-with-google-analytics2How to track anchor tags with Google AnalyticsBobby Jack2009-07-31T09:17:52Z2009-11-19T18:08:52Z
<p>I'm trying to track clicks via Google Analytics that do not result in a new request. Specifically, clicks on tabs that are created via the <a href="http://jqueryui.com/demos/tabs/" rel="nofollow">jQuery UI tabs widget</a>. I'm using the older version of the code ('urchin tracker') and trying to log the clicks like so:</p>
<pre><code>$('.ui-tabs-nav li a').click(function() {
val = "/tab/" + $(this).attr('href');
// when uncommented, the following line reports, for example:
// /tab/#main
// as expected.
// console.log(val);
res = urchinTracker(val);
});
</code></pre>
<p>The same method works, in another instance, whose only significant difference, as far as I can tell, is the lack of a hash (#) symbol in the string. Is that character not allowed in a string tracked by <code>urchinTracker()</code>, or could there be some other cause (other than no-one having clicked on the links!)?</p>