Snagit for Mac: Screenshots for OS X

Posted January 7th, 2010 in SEM tools, SEO tools by Tim

I was pleased to have gotten an e-mail today from TechSmith announcing have finally released a Mac OS X version of Snagit!

Macbooks are so popular amongst web developers and search marketers, yet up until today I haven’t found anything like Snagit for Windows for web site audits, which I use in documents and e-mails on a daily basis.

Download Snagit Mac

Google Analytics & AdWords: 301s not passing gclid

Posted December 18th, 2009 in AdWords, htaccess, SEM by Tim

A good webmaster will implement 301 or 302 redirects to legacy URLs but it often results in paid search traffic being mis-categorised. Whilst your destination URLs will still end up at the expected page, it often be tagged as organic traffic.

Specifically, when you link AdWords and Analytics, Google will append a gclid to destination URLs which Google uses to match keywords, campaigns and other dimensions to give you richer data in GA.

e.g. http://you.com/widgets/?gclid=CYC0uITG354CFYwtpAodiFBdJX

However, most webmasters won’t implement the right directives to pass on the query string, so the user clicks on the redirected URL, the following happens and the gclid is lost in the redirection.

Are my redirects AdWords friendly?

There’s a very simple way to check if your redirect is AdWords and Analytics friendly, simply try going to the old destination URL and append “?gclid=testing” on the end. If it redirects to the new URL and keeps it on the end, you don’t need to be on the phone with your webmaster!

Fixing with Apache & .htaccess

If the above tip didn’t pass on the gclid for you, the good news is there’s an easy way to fix this in Apache:

# incorrect
RewriteRule ^widgets/?$ /new-widgets/

# correct
RewriteRule ^widgets/?$ /new-widgets/?%{QUERY_STRING}

Tip: Use my free Batch HTTP header checker to verify up to 500 destination URLs before making your SEM campaign live.