Feb 29

OK here’s another example of the Affiliate Mashup Store in action, and as you can see it sports a totally different theme from the previous example.

 

SAMSUNGTVREVIEW.COM

This theme is adapted from Free-CSS-Templates.com and the cool thing about it is that I didn’t need to change ANY of the underlying store code to get it to work. I only had to edit two files: the stylesheet and a layout file.

What this means is that, if you don’t like the themes that come with the mashup store, you should be easily able to make or adapt your own - without worrying about delving into the programming portions of the code.

If you haven’t yet signed up for an early-bird alert for when the Affiliate Mashup Store becomes available, click here to do so - and be in with the chance of an inner-circle pre-launch discount.

Feb 28

Well I’ve been working on it for some time now, and it should be ready for launch in a week or two, so here’s a preview of my Affiliate Mashup Store:

 

You’ll notice the homepage defaults to a video page, which is one of the options available (you can set any page to be the homepage) and is more appropriate than a list of products in this instance.

If you like what you see and you want to get in on the launch early, head over to AffiliateMashupStore.com to register and download a free ‘lite’ version to play with while you wait.

Feb 22

Incentives don’t just involve paying people to click links. One of the coolest things you can do to improve conversions is to offer a free bonus to people who purchase a product through your affiliate link. It’s easy to give away stuff if you’re selling your own product, but a little trickier if you’re promoting someone else’s.

If you want to offer an incentive of any kind to people who do this (say, a free ebook if they join a survey site) then you’ll need to identify exactly who has completed a transaction in order to reward them.

You can track individual clicks and purchases using a Sub-ID. This is a code attached to the end of an affiliate link and for it to work it needs to be unique for each visitor. Once your visitors make a purchase using their own SID it will show up in your affiliate network’s account stats and you can then take the appropriate action.

You can use a Sub-ID with both Commission Junction and Clickbank quite easily. The following screenshots show how:

It’s fairly trivial to set up a unique SID. You can use a simple script to generate a random number each time someone clicks the link. This isn’t very useful however since you need to be able to relate the SID code to a particular customer if you want to reward them. There’s no point in it being anonymous.

The solution is to give the customer an opportunity to identify themselves to you, e.g. get them to create their own SID and at the same time have them tell you who they are.

Setting something like this up is also pretty easy, but it gets a little more complicated when you consider the checks and balances required for it to actually work properly. For instance, you’ll need to make sure that two different customers can’t create the same SID, so you’ll have to save a record of previous customers to check against.

So lets get into the mechanics of how to create such a system.

We need the user to give us at least two pieces of information: Their own unique SID (we’ll tell them to create a ‘username’) and their email address (as a way for you to contact them and deliver their incentive).

We can create a simple html form in php for this:

<?php
echo ”
<form method=\”post\” action=\”$PHP_SELF\”>
<label>Username</label><br/><input name=\”name\”/><br/>
<label>Email</label><br/><input name=\”email\”/><br/>
<input type=\”submit\” name=\”addname\” value=\”Submit\”/>
</form>”;
?>

We could save our users’ data to a database but there’s no real need to get complicated so we’ll save it to a text file instead. We’ll have each user’s data on one line separated by commas:

bob,bob@email.com
jeff,jeff@email.com

Side Note: You don’t want anyone viewing your data file and discovering the email addresses of all your clients! Keep it private by adding the following lines to your .htaccess file (assuming your data file is called ’something.inc’):

<Files ~ “\.inc$”>
Order allow,deny
Deny from all
</Files>

Now we can check the form submission data against the data in the file from previous submissions to prevent duplicates. So first we read the file and split it into lines and fields and store the values in an array:

<?php
$lines = explode(”\n”,$theFileData);

foreach ($lines as $i => $value) {
$line[$i] = explode(’,', $lines[$i]);
$names[$i] = $line[$i][0];
$emailaddr[$i] = $line[$i][1];
}
?>

Now we grab the data the user submitted to our form and loop through the saved file data to see if it clashes:

<?php
$username = $_POST[’name’];
$useremail = $_POST[’email’];

foreach ($names as $n => $value) {
if ($username == $names[$n]){
die(”Username already used! Be more creative and <a href=$PHP_SELF>choose another</a>.”);
}
}
?>

If the username is unique then we can proceed. First we’ll add it to our saved file:

<?php
// Construct another line of data to add to our file to check against future submissions
$stringData = “\n$username,$useremail”;
// Open the file in ‘append’ mode to add the data
$fh = fopen($fileName, ‘a’) or die(”Can’t open file”);
fwrite($fh, $stringData);
fclose($fh);
?>

Now we can add the username as a parameter to the end of your affiliate url. The following example works with Clickbank where your standard affiliate link (referred to here as ‘$desturl’) is in the format: ‘http://yourname.merchant.hop.clickbank.net/’

<?php
$newdest = $desturl . “?tid=” . $username;
?>

The affiliate link then becomes ‘http://yourname.merchant.hop.clickbank.net/?tid=username’

All we have to do now is display the modified url to the user (echo $newdest;) and get the script to tell us we’ve just had a submission. We could create a fancy admin panel where we can login and view submissions, but shit why not just email ourselves with the details?

<?php
$subject = “$username, $useremail just registered”;
$body = “User $username registered using the Sid-Sender form.\r\nTheir email address is: $useremail\r\nLink generated was: $newdest”;
$headers = “From: $useremail\r\n” .
“X-Mailer: php”;
if (mail($youremail, $subject, $body, $headers)) {
echo(”<p>Message successfully sent!</p>”);
} else {
echo(”<p>Message delivery failed…</p>”);
}
?>

And that’s pretty much it. I haven’t found a satisfactory automatic method of checking to see if your users have actually purchased after following their unique links, so once you’ve received their email you’ll have to check your commission stats yourself in a couple of hours and take action once they’ve been reported. If your users aren’t in a hurry you could do it in batches a couple of times a day.

If you like the idea of this type of tool but don’t want to bother with coding it up, I have just the thing for you:

SID-SENDER!

I’ve created my own tool for tracking users based on the script exerpts in this post. The tool works with both Clickbank and Commission Junction links, gives the option of using a Captcha to prevent bots using the form, and lets you limit the number of signups.

This script ain’t free though - It’ll cost you a whopping five bucks. If you think it’s worth it, click here to get your copy.

Feb 20

I thought I’d give a little update on my forthcoming Affiliate Mashup Store.

So far I’ve got the admin panel up and running with tools to create and edit Category links within the mashup site, set up Default Catalogues and Country-specific catalogues, and create and edit Custom Pages (with a simple form for html input).

I’ve also updated the layout with a wider right-hand Content Box area, with the ability to add search boxes and external RSS feeds for extra dynamic content. Oh, and the site will generate its own RSS feeds for any page with products on it, including search results.

I’ve made it really easy to add and edit new themes too, because I’m not much of a graphic designer so I wanted to make it as simple as possible for people to customise their own layouts. All you have to do is copy an existing theme’s folder, rename it and edit the style sheet and layout file (and any graphics you want to change). The new theme will automatically be added to the admin panel for selection.

I’m also working on some extras like Youtube and eBay integration, just to add even more value and diverse content to your mashup stores.

I’m still evaluating a price-point for the whole package, but it’s likely to be at least $200. This will include lifetime updates and an unlimited site licence so you can create as many mashup stores as you want.

Loads of people have already signed up to the waiting list in the last couple of weeks, which is great. They’ll be among the first to know when the mashup store product is released for sale and I’ve decided that a proportion of people on the list will also be offered the chance to buy at a significant discount. So if you haven’t signed up yet, click here to do so and grab a bargain before the rush starts.

I’ll probably be selling the mashup store package through PayDotCom which means there’ll be an opportunity for people to become affiliates of the Affiliate Mashup Store program. If you have a blog or list and you think you can drive significant traffic let me know and we can work out an appropriate commission rate.

I’ll be posting some screenshots and maybe video in the next few days. A tentative release date is some time around the middle of March, depending on how the beta testing goes, so stay tuned!

Feb 18

Yes, I know, I appreciate the irony of an internet marketer who hates ads but it’s true.

I can’t stand them. I’ve had Adblock Plus installed on Firefox for years now and I’d forgotten how offensive ads could be.

I turned adblock off last week because being able to see ads is, after all, useful from a business perspective. I found myself whitelisting sites here and there because I needed to interact with their ads or see how they operated and I though, what the hell, I’ll just turn it off completely.

Big mistake.

Static ads I can just about cope with, except that they take up so much screen real estate I have to scroll around just to find the actual content.

Animated ads though? Jesus Christ. I fail to understand how anyone can be expected to read an article with big red and yellow jangly flashing boxes and banners jumping around in their peripheral vision. And how the fuck am I supposed to watch a video when right next to it is another bloody video playing on continuous loop?

I heard today that 6% of users contribute 40% of banner clicks. Mostly men aged 25-45 with an income of under $40K. And clicks were unrelated to specific products or offline advertising campaigns. The inference is these people are basically bored and wasting time by essentially spanking the monkey.

Figures.

Feb 11

OK here’s an easy way to make bags of cash by giving away a free product: Create some kind of website-based solution, like an autoblog or mashup script, and give it away (or offer to install it) free on the condition that your customer signs up for webhosting with the company of your choice.

This way your customer gets a useful product for the low cost of a monthly hosting fee (typically as low as $4.95 a month) and you get a hefty commission from your affiliated webhost.

Two things to be aware of:

1) You’ll need to be able to track individual purchases of your webhosting offer. You can do this either by giving each customer a unique code to use for their SID or by creating a form getting them to enter their own unique SID which you then automatically incorporate into your affiliate link.

2) You’ll need to consider refunds. Some people might sign up for their webhosting to get your free product and then cancel their subscription. You can either write this off as the cost of doing business, or require them to wait a month or two before delivering on your promise. This is unlikely to work very well for a free product, but might be tolerable if you’re offering a rebate on a product you’re actually selling.

I’m considering using this technique for my Affiliate Mashup Store product. If I sell it for, say, $200 I can offer a rebate of up to 50% if my customers sign up with Hostgator, since they pay a massive $100 commission for new contracts. Since it’s a product which requires webhosting, and the monthly cost of Hostgator packages is very low, it should encourage people to sign up. They save money, I earn the same per sale, and Hostgator gets a new customer. Everybody wins!

Feb 7

Yes, that’s right. I’m releasing a ‘lite’ version of my own affiliate mashup store script for anyone to download and use.

AffiliateMashupStore.com!

Loads of people have asked me if I could make them a custom mashup store. While my skills aren’t quite up to the level of producing from a design spec, I’m quite confident I can build a pre-packaged affiliate store website application.

So I’m offering a free sample script for download. If you use it and like it, perhaps you’ll be interested in purchasing the full version when it becomes available.

Why do I need an Affiliate Mashup Store?

Because you can promote thousands of products at the flick of a switch. While your competitors are busy writing sales pages for dozens of individual affiliate products, you’re churning out dozens of massive websites with thousands of affiliate products all automatically optimised with their own keywords.

To get a better idea of what a mashup store is and how to promote it, click here and read ‘How to Rock Out with an Affiliate Mashup’.

To find out more about the giveaway, to download the script, and to try out a demo site, CLICK HERE. And let me know how you get on.

P.S. Get your free eBay Youtube Adsense Mashup as well. Plus keep informed of new posts by subscribing (use the box on the top right of this page).

Feb 6

I’ve been looking to increase traffic to my pink site - It’s already ranking nicely for a few terms, but static sites tend to drop down slowly without regular new content.

So I’ve created the Pink Stuff Blog. My aim is to find a bizarre or otherwise interesting pink item from my catalogue every day and write a short post about it.

The problem is that, not being a pink fan myself, my posts aren’t exactly enthusiastic. Still, hopefully they’ll provide some humour, and at least improve my search engine rankings. I’ve already had a few visitors and three subscribers after a couple of days.

Feb 3

Following on from what I wrote yesterday about Facebook ads, I came across a couple of videos about making money from Facebook Applications.

The idea here is to create an app where either your users’ participation is rewarded by a free offer (and your users sign up with a CPA offer) or your app requires ‘points’ to take advantage of extra features (and your users complete CPA offers for points).

It occurs to me that this kind of application would be ideal if combined with current hot trends on the net.

Simply create a generic Facebook app (a voting app, for example) and add a new survey to it whenever you see an appropriate ‘hot trend’ on Google. You’ll be tapping into your audience’s current fascination with the latest celebrity topic instantly. And the very nature of Facebook means your app has a strong chance of going viral. All for free.

Feb 2

The thing about Facebook ads is that they’re a magnificent idea, but the reality leaves something to be desired.

The advantages are obvious. You can target people by demographics. Unlike, say, Google Adwords, you can target people by sex, age, marital status and so on. But the best factor is their Interests.

Think about this: I managed to advertise my Pink Stuff website to women who have announced to the world that they like pink! This is marvellous. You could not ask for a better audience.

The problem is that I spent around £8 in advertising and made £1.25 from one sale. And I’ve just wasted another £10 advertising pink digital cameras to women who like pink or photos - not a single sale.

I’ve also had an ad disapproved (after waiting half a day in moderation) because it used a redirect (so what?) and because it promoted spam (an email submit?) and requested personal details (in order to take a customer order!). The ad was for an ebook about improving your golf swing - I was advertising to men who like golf. It would have been excellent targeting, but Facebook’s anality won’t let me do it! Maybe a squeeze page instead?

So to my abrupt conclusion:

Facebook ads are a great idea, but they don’t work for me.

Footer