Extension:Google Analytics Integration

From MediaWiki.org

Jump to: navigation, search

           

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
Google Analytics

Release status: stable

Implementation  User activity
Description Automatically inserts Google Analytics tracking code at the bottom of MediaWiki pages
Author(s)  Tim LaquaTalk
Last Version  2.0 (2008-01-02)
MediaWiki  1.11+
License No license specified
Download Download snapshot

Subversion [Help]
Browse source code

Example  WikiStory (view page source)

check usage (experimental)

This extension inserts Google Analytics tracking code in every MediaWiki page that is viewed. The extension excludes pages being viewed by users with 'protect' privileges (sysops) and users with 'bot' privileges (bots) to prevent pollution of the statistics. To use a version that also ignores logged-in users, see the 'See also' section at the end of this page.

[edit] Installation

  1. Create a new folder (directory) in the following location:
    wiki-install-folder/extensions/googleAnalytics
  2. Download the googleAnalytics.php files from SVN
  3. Copy googleAnalytics.php and googleAnalytics.i18n.php in to the new googleAnalytics folder
    Note: you may need to remove the pageTracker._initData(); line for Analytics to recognise the installation
  4. Add the following line to your LocalSettings.php at the bottom:
require_once( "$IP/extensions/googleAnalytics/googleAnalytics.php" );

In the googleAnalytics folder, googleAnalytics.php you can find the following and edit as appropriate:

# Replace xxxxxxx-x with YOUR GoogleAnalytics UA number
$wgGoogleAnalyticsAccount = "UA-xxxxxxx-x";
 
# Optional Variables (both default to true)
$wgGoogleAnalyticsIgnoreSysops = false;
$wgGoogleAnalyticsIgnoreBots = false;

[edit] Usage

  1. Create a Google Analytics account
  2. Locate your UA number
    • For the legacy code block, it can be found on the following line:
      _uacct="UA-xxxxxxx-x";
      
    • For the new ga.js code block, it can be found on the following line:
      var pageTracker = _gat._getTracker("UA-xxxxxxx-x");
      
  3. Follow Installation Instructions
  4. Google Analytics stats should start populating within 24-48 hours.

[edit] See also

  • Google Analytics - this same extension but also allows you to ignore logged in users (new variable used is used, $wgGoogleAnalyticsIgnoreUsers). This is useful since if we want true visitors statistics, we want to ignore logged-in users who are often 'wiki-workers' and perhaps we dont want to include their stats since they could have lots of page views, like sysops.