I added two easy ways to implement tracking with YSM. Perfect for the n00b in all of us.
Check the link in my sig.
LOL. Sorry about. Hus Nehpet: Making Money | Make Money With Me
The first method involves a smidge of PHP and about 5 minutes. So you’ll need to make sure your web host has PHP support. I run this method using Azoogle but you can modify it to fit any affiliate program.
First, log into your Yahoo Search Marketing account. Go to Administration tab and Tracking URLs.

Make sure it’s are enabled. Now whenever your ad is clicked on, a custom url will be created and sent to your webpage.
Now you don’t want to give Azoogle your precious keyword conversion data. We could encrypt the key but it’s not necessary since it’s been provided by the url. See OVKWID? This is what we need to grab. We’re going to pass OVKWID to Azoogle as a subid. In Azoogle, there is a subid report that you can view your conversions on.

Okay, now we’re going to use a little bit of PHP to create a custom url. You can modify this code to your liking. I’m using it here as a redirect. Add this code to the very top of your webpage. Make sure to save your page as .php.
<?php
$url = “http://www.x.azjmp.com/ZnXjz”;
if ($_GET[’OVKWID’]) {
$url = “http://www.x.azjmp.com/ZnXjz?sub=” . $_GET[’OVKWID’];
}
header(”location: $url”);
break;
?>
Now your subids will be recorded in Azoogle. When a conversion is made, just match it up to your Yahoo Campaign spreadsheet.
Check the link in my sig.
LOL. Sorry about. Hus Nehpet: Making Money | Make Money With Me
The first method involves a smidge of PHP and about 5 minutes. So you’ll need to make sure your web host has PHP support. I run this method using Azoogle but you can modify it to fit any affiliate program.
First, log into your Yahoo Search Marketing account. Go to Administration tab and Tracking URLs.

Make sure it’s are enabled. Now whenever your ad is clicked on, a custom url will be created and sent to your webpage.
Now you don’t want to give Azoogle your precious keyword conversion data. We could encrypt the key but it’s not necessary since it’s been provided by the url. See OVKWID? This is what we need to grab. We’re going to pass OVKWID to Azoogle as a subid. In Azoogle, there is a subid report that you can view your conversions on.

Okay, now we’re going to use a little bit of PHP to create a custom url. You can modify this code to your liking. I’m using it here as a redirect. Add this code to the very top of your webpage. Make sure to save your page as .php.
<?php
$url = “http://www.x.azjmp.com/ZnXjz”;
if ($_GET[’OVKWID’]) {
$url = “http://www.x.azjmp.com/ZnXjz?sub=” . $_GET[’OVKWID’];
}
header(”location: $url”);
break;
?>
Now your subids will be recorded in Azoogle. When a conversion is made, just match it up to your Yahoo Campaign spreadsheet.