Ironvine Analytics Web Analytics, Data Analysis, Online Marketing, and Search Engine Information.

11May/110

Coremetrics URL Query Strings MMC Tags for Marketing Programs Tracking Code

Coremetrics® Tracking Code

From: http://www.kpilist.com/2009/02/coremetrics-url-query-strings-mmc-tags.html

Coremetrics® is one of the most powerful and easy to configure Enterprise Level Web Analytics Solutions in today's marketplace. One of the key features that set's this web analytics tool apart from its closest competitor Omniture®, is the ease of use in creating and Tracking Marketing Campaigns. Similar to the use of UTM tags in Google Analytics. Coremetrics® uses MMC Parameters. These URL Query Strings quickly and easily triage your incoming click based traffic in the predetermined campaign, which is all specified by the way the URL Query string is structured and formatted. Incoming traffic data is reported under the Marketing Programs Report. There is a maximum of 4 variables or campaign meta-data that can be captured. Coremetrics® is pre-configured to capture Vendor, Category, Placement and Item. But you can use these parameters how-ever you wish, just know that your data is will be found under that corresponding Marketing Program attribute. Generating Tracking Code is very simple and easy. This can either be done by hand coding the mmc parameters into each link leading back to your site or supplying the URL Query strings to your Display media Vendor such as Atlas, Dart, Query Strings should be appended to all Paid Search or PPC ads for Yahoo! Search Marketing or Google AdWords or for all Affiliate Marketing like Link Share or Commission Junction.




FORMATTING URL QUERY STRING TRACKING CODE
There are two ways of formatting Coremetrics Marketing Programs Tracking Code. The 4 parameter format (old) or the 1 parameter format (new).
- Use a question mark at the very end of your URL destination, whether that is the top level domain or the targeted landing page. Use "?" to designate that the URL Query string is starting.
- Always separate Parameters by using an ampersand "&"
- If you have to use other Query String Parameters in conjunction with Coremetrics Marketing Programs Tracking Codes, such as a promo code or page specific code, make sure that the Coremetrics Tracking Codes are placed last.

4 PARAMETER FORMAT
cm_ven=Vendor
cm_cat=Category
cm_pla=Placement
cm_ite=Item

Paid Search
http://www.domain.com?cm_ven=SEM&cm_cat=Google&cm_pla=AdGroup&cm_ite=Keyword
http://www.domain.com/landing-page.html?cm_ven=SEM&cm_cat=Yahoo&cm_pla=AdGroup&cm_ite=Keyword

Banner Ad
http://www.domain.com?cm_ven=Display&cm_cat=ValueClick&cm_pla=Messaging&cm_ite=728x90-Leaderboard-Creative-One

Affiliate Link
http://www.domain.com?cm_ven=Affiliate&cm_cat=LinkShare&cm_pla=Affiliate-Website&cm_ite=Product-Offer


1 PARAMETER FORMAT (variables are separate by a dash underscore dash "-_-")
cm_mmc=Vendor-_-Category-_-Placement-_-Item

Paid Search
http://www.domain.com?cm_mmc=SEM-_-Google-_-AdGroup-_-Keyword
http://www.domain.com/landing-page.html?cm_mmc=SEM-_-Yahoo-_-AdGroup-_-Keyword

Banner Ad
http://www.domain.com?cm_mmc=Display-_-ValueClick-_-Messaging-_-728x90-Leaderboard-Creative-One

Affiliate Link
http://www.domain.com?cm_mmc=Affiliate-_-LinkShare-_-Affiliate-Website-_-Product-Offer


ATTENTION TO DETAIL
There are several illegal characters that are not to be when creating URL Query String Parameters. Remember to never use a "space" to separate words or data points within a parameter, use a dash "-" instead, do not use an underscore "_". If a special character has to be coded with the Coremetrics Query String Tracking Code please use the appropriate html designated URL Query String Parameter Code.

For a Percent "%" Use "%25"
For a Space " " Use "%20"
For a Open Bracket "{" Use "%7b"
For a Closed Bracket "}" Use "%7d"
For a Pipe "|" Use "%7c"
For a Backslash "\" Use "%5c"
For a Carrot "^" Use "%5e"
For a Open Bracket "[" Use "%5b"
For a Closed Bracket "]" Use "%5d"
For a Accent "`" Use "%60"
For a Less Than "<" Use "%3c" For a Greater Than ">" Use "%3e"
For a Number Sign "#" Use "%23"
For a Semi-colon ";" Use "%3b"
For a Forward slash "/" Use "%2f"
For a Question Mark "?" Use "%3f"
For a Colon ":" Use "%3a"
For a At "@" Use "%40"
For a Equals "=" Use "%3d"
For a Ampersand "&" Use "%26"
For a Plus "+" Use "%2b"
For a Single Quote "'" Use "%22"

6Apr/11Off

Facebook Select All Friends in Questions

Facebook QuestionsJavascript to select all friends in Facebooks new Question feature

When you click “Ask Friends”, post the following javascript into the URL bar of your browser. (Need to use Firefox or Chrome)

javascript:(function(){var f=document.getElementsByClassName("fbProfileBrowserListContainer");for(var i=0;i<f.length;i++){if(f[i].children){var c=f[i].getElementsByTagName("input");for(var l=0;l<c.length;l++){c[l].click();}}}})();

Good luck!

from http://spottedsun.com/javascript-to-select-all-friends-in-facebooks-new-question-feature/

29Mar/11Off

Webpage-Web site Redirects

Webpage/Web site Redirects

 

Optimally you should always do this on the server side with a 403 Redirect. As a resort, and for certain other usages you can use an HTML redirect. Below are a few examples:

 

HTML Method:
<meta equiv="Refresh" content="0; URL=http://www.website.com/html-redirect.html">

ASP Method:
<% Response.Redirect "http://www.w3schools.com" %>

PHP Method:
<?php
header( 'Location: http://www.yoursite.com/new_page.html' ) ;
?>

23Dec/10Off

Excel VBA – Convert Text to Date

This is a quick little Excel VBA macro to convert a date in text format into an actual date format.

This can be easily modified for other string formats as needed.

Sub ConvertToDate()

'=======Convert "yyyymmdd" text format to "yyyymmdd" date format=======

For Each cell In Selection.Cells

s = cell.Value

If s = "" Then
Else
cell.Value = (Left(Trim(s), 4) & "/" & Mid(s, 5, 2) & "/" & Mid(s, 7, 2))
cell.NumberFormat = "yyyymmdd"
End If

Next

End Sub

5Jan/10Off

Windows 7 GodMode

This looks to be a really cool hidden feature in Windows 7.

Create a folder called GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} and upon opening it will contain many customizable operating system features.

See the original article here: http://news.cnet.com/8301-13860_3-10423985-56.html?part=rss&subj=news&tag=2547-1_3-0-20

30Apr/09Off

PHP Export to Excel

Here is some code I found that will allow you from PHP code to export data directly into an excel file. I haven't personally tested this but the source I had for it was no longer available online so I'm reposting it here.

< ?php session_start();
$ID=$_SESSION["ReportData"];
?>
< ?php
$line = '';
foreach($ID as $line) {
foreach($line as $key => $value) {
$data .= $value . "\t";
}
$data .= "\n";
}

$data = str_replace("\r","",$data);
?>
< ?php
if ($data == "") {
$data = "\n(0) Records Found!\n";
}
?>
< ?php
header("Content-type: application/x-msdownload");
header("Content-Disposition: attachment; filename=extraction.xls");
header("Pragma: no-cache");
header("Expires: 0");
echo "$data";
?>

Tagged as: , , , Comments Off
28Apr/09Off

PHP Output Buffer

While working with the new Google Analytics Export API and a PHP example, I wanted to be able to output a csv version of the data to a file that could be downloaded.

I found this PHP function that allows output buffering. Still working the bugs out of my data export, but the output code works well.

http://my.opera.com/zomg/blog/2007/10/03/how-to-easily-redirect-php-output-to-a-file

Tagged as: , , Comments Off
22Apr/09Off

Google Analytics API

Google has opened up the Google Analytics API (export) for general use!

http://code.google.com/apis/analytics/docs/gdata/1.0/gdataProtocol.html

Alex C wrote a quick PHP script to pull pageviews from all available accounts. Read the setup here: http://www.alexc.me/using-the-google-analytics-api-getting-total-number-of-page-views/74/

23Jan/09Off

ChannelAdvisor Lays off 19%

ChannelAdvisor Lays off 19% of its Workforce

Sad to say, I was one of them. Apparently there were 32 Employees let go in the US offices.

http://www.auctionbytes.com/cab/abn/y09/m01/i23/s04
http://onlinesaleschannels.wordpress.com/2009/01/22/my-liquid-lunch-with-ex-ca-employees/

I look at this as a good thing though as I was the only member of the Seattle office left on staff after they vacated the office building in Oct 2008. (Yes, no more west coast office). I have had to work out of my home office since then. It will be nice to be able to get back into traveling to work and getting to talk to other people, sharing and learning new things.

If anyone knows a company looking for a Search Marketing guru feel free to contact me at steve @ ironvine.com!

My condolences to all the other employees that were let go this week I wish you all the best, and to my former co-workers it was a great 2 years. Take care!

13Feb/07Off

Yahoo Pipes

Yahoo Pipes is a cool tool that I have been look at over the last couple weeks.

It basically mashes up RSS feeds and combines them to allow you to work with the data however you want, from reading news to programming, flickr, and video.

Here is a link to an example:
http://pipes.yahoo.com/pipes/AHaR2Y242xGwcHpiZFUMqA/?text=ironvine&num=2&_run=1&=Run+Pipe

Big link, but you can create your own and manage it differently.

I think it has some great programming value and web design value for adding content and such to a site. Fresh content daily from multiple resources to give to your readers! SEO Heaven.

Take a look into it, there is clearly possibility and value you can use to optimize a site and stay on top of technology.

Technorati Tags: , , , ,

26Jan/07Off

Old Google Bulk Download Template

As a follow up to a previous post about the 3rd Party Conversion tool bug in Yahoo Panama, here is a .csv file if the old Google Bulk Download template header row. Old Google Bulk Download Sheet CSV (.txt)

You can convert the AdWords Editor template to this format then upload it to the conversion utility in Yahoo. It takes a little bit of work to match up the fields and fill in some of the blanks, but it is a huge time savings vs creating a full Yahoo upload sheet manually from Google data.

Technorati Tags: , , , , , , , ,

5Jan/07Off

GoDaddy Promo Codes – No Expire

GoDaddy promo code / coupon codes


Go Daddy $1.99 Domains

OYH1: Get 10% off any order with this coupon at GoDaddy. No maximum.

OYH2: Get 5$ off any order of 30$ or more at GoDaddy.

OYH3: Get 6.95$ .COM registration at GoDaddy.

GoDaddy promo codes - these codes do not expire!

If you have more codes please share them as well. Feel free to comment about GoDaddy.com Hosting Plans
or codes below.

Technorati Tags: , , , , , , , ,