Archive for the 'Affiliate' Category

Text-Link-Ads - Dead End Advertising?

text-link-adsThe major advertising site, Text-Link-Ads.com, has certainly been penalized in Google. With a Google PageRank of 7, how could they not be ranked number one for a simple search of “Text-Link-Ads” (excluding advertisements). Many have argued that there are tons of sites that are not penalize for paid links — and they are right — until their site is caught by Google.

Now, if your site has been penalized, you can submit a reconsideration request and the penalty will probably be lifted as long as you include important details in your submission (i.e., date of ad placement, where, what site, etc.).

A few final factors to consider

If Google doesn’t penalize sites for paid links, why…

  • …is Text-Link-Ads penalized?
  • …and what purpose does Google have for allowing webmasters to report paid links to them?

Now if you still like Text-Link-Ads

You can sign-up for a free $100 in text-link advertising (they have some details on this).

Clickbank Redirect Script (PHP)

As always trying to use search engine marketing and optimization (SEM&O) in the best possible way, I try to combine them so they both workout perfectly.

Without delaying, here is the script that will create redirects for ClickBank (if you notice errors or want improvement, you can drop a comment):

<?php

// ClickBank Redirect/Cloak Script (PHP)

// example, relative URL: cb.php?s=STORE-ID

// made at http://ugux.com/blog/

$nickname  =  ‘multiz’; //your ID/nickname is at clickbank

$store     =  $_REQUEST[’s’];

$extra     =  $_REQUEST[’x'];

$tid       =  $_REQUEST[’tid’];

if($tid)

{

$extra .= ‘&tid=’.$tid;

}

if($store)

{

header(’Location: http://’.$nickname.’.’.store.’.hop.clickbank.net/?’.$extra);

}

else

{

//if something is entered wrong, they’re sent to your not found (404) page

// or whatever page you choose.

header(’Location: 404.shtml’);

}

?>

For those of you who do not like reading useless instructions, a link would look like this:

<a href=”/cb.php?s=store” rel=”nofollow” title=”Add an SEO friendly persuasion to the reader/buyer”>Store</a>

How to use the script

1. Save the script as cb.php or something else and upload it

2. Change the line: $nickname  =  ‘multiz’; to $nickname  =  ‘YourClickbankNickname’;

3. Link to merchant or store using their Clickbank ID (usually found as the subdomain after your Nickname; http://yourNickname.storeID.hop.clickbank.net)

4. Link like this cb.php?s=STORE-ID (although obvious, make sure you change STORE-ID; you have no idea how many people will mess this up)

Advanced parameters

1. You can add tracking IDs by linking like this: cb.php?s=STORE-ID&tid=TRACKING-ID

2. Add any extra parameters: cb.php?s=STORE-ID&x=MORE-Parameters

For more parameters, you will need to URL-encode any extra “=” or “&”.

Other tips (SEO & SEM)

1. Change robots.txt by adding Disallow: /cb.php to a new line

2. Add title attributes to links (can increase conversions and provide a little better SEO) <a href=”/cb.php?s=store” title=”A store that adds insane discounts daily”>Store</a>

3. Keep your pagerank by adding rel=”nofollow” to links <a href=”/cb.php?s=store” rel=”nofollow” title=”A store that adds insane discounts daily”>Store</a>

FYI: This should be able to prevent sneaky Adware that tries to place their ClickBank ID in your ClickBank links.

Another PHP Clickbank script

Another Clickbank script should be added soon that will automatically fetch merchants/products based upon added keywords.