2009
06.30

nukethewhales

Most of you have a shit ISP that overcharges you for unreliable service and can’t do shit about it because that company either has a micromonopoly in your region or because they are considered the “least worst” of your “options”. What you may not realize is that the same shit company is also making serious bank off those stupid 404-jacking pages they send you half the time instead of the local site’s. They sell these huge data streams of their customers 404′d requests to domain squatting types so that you’re guaranteed to get an MFA when you type in http://www.yxhoo.com/ or the like.

Anyhoo… my ISP’s awesome dev dept conveniently forgot to ensure the opt out feature worked prior to launch. And for the record, I’d be perfectly happy with the ads and personal information leaks if they would charge less or at least provide me with the level of service I pay for.

Now, will someone tell me why ebay is still buying ads for everything? I thought they filtered out “Nukes” and other nefarious keywords long ago.

2009
06.27

piwik
There are a couple of benefits for running a single Piwik installation for multiple domains such as a single database, single install and easy tracking from a single control panel. We can also expect more accurate results because many people such as myself use NoScript and have it set up to automatically allow top level sites by default.
As more browsers start to wise up to XSS problems, we’ll all eventually have problems with external JS and by having our own analytics we stay a step ahead. The benefits of using your own tracking software rather than relying on the big G’s or others are obvious, but if you’d like to know more, be sure to check out Piwik’s site: http://piwik.org/
 
 

Now to the good stuff. It’s really an easy process, and this is just one of many ways you can do it:

Download and install Piwik to a folder outside your publicly accessible space.

Create symbolic links to each of your domains folders:

cd domain1/
ln -s ../piwik/ track
cd ../domain2/
ln -s ../piwik/ track
cd ../domain3/
ln -s ../piwik/ track

etc…

Add meta nofollow tags to the templates:

<meta NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW" />

plugins/Login/templates
plugins/CoreHome/templates

And add it to piwik/robots.txt if you want:

#Disallow everything
User-agent: *
Disallow: /
Disallow: /*
Disallow: */*
Disallow: *.*
Disallow: *
Disallow: .

Next you can log in to your Piwik install from any of your domains like this:
http://domain1.com/track/

Then you can add your site and it will create tracking code for the domain your are logged in from.

You can manage and view your data for any domain from any other domain since its a single installation.