25th May 2006
I have entered myAffiliateLinks into a giveaway that is to be launched in the next couple of days.
This is going to be a fun experience for me I think. Finally getting it out there, having more people trying it out.
I will post details on where to go when the giveaway opens its gates for real.
In the meantime, if you have an original product and wish to grow your list and monetize on the back-end, join as a JV partner and enter it into the giveaway.
Remember, if you’re just out to get the gifts, they are not yet live. The link is only for people interested in entering as JV partners for the giveaway.
Click here to join as a JV partner.
Posted in Coding, Cool Products | No Comments »
21st May 2006
I’ve just finished a new product that will be released soon, CovertSqueezePage with OTO. Strange name, huh? Well, it pretty much describes what the product does
If you put it on your squeeze- and thank-you pages, it makes sure the user only have to see your squeeze-page once. If you also use it for your OTO-pages, they’re really only visible once. Pretty slick.
We have yet to decide if we are to release the script as-is, or sell access to the script on one of our servers.
I’ll keep you posted.
If you want a test-ride, contact me.
Posted in Coding, Cool Products | No Comments »
27th April 2006
If you’re getting way too high CTR on your adsense ads, it might be someone trying to get you banned from adsense. In order to prevent this, you need to dis-allow people from clicking your ads more than once in a set timeframe.
I’m in the process of writing a script that will do just this, prevent multiple clicks within a set timeframe.
Stay tuned for more information.
Posted in Coding, Adsense & Adwords | No Comments »
24th January 2006
I was supposed to put the finishing touches to my content-portal, but I kept putting it off. Instead, I spiced up the snippet-script a bit.
You can now put it in the root and have it randomly pick a directory, and then randomly pick a snippet-file from that random directory. Lots of “random” here
Still, don’t forget to use SSIs Virtual Include, and check the file to pick which way you want to choose you snippet.
Here’s the zipped php-file.
Oh, and for those of you unfamiliar with The Article System, go check it out!
Enjoy
Posted in Coding, Cool Products | No Comments »
23rd January 2006
If you’re using the Article System, this piece of code might come in handy for you. In the first manual i downloaded for it, it said they would show a way to include the article-snippets on the index-page, but that never happened, so I managed to hack something up myself. Notice: this isn’t pretty, but it seems to do the trick
It should reside in the same directory as your snip_*.html-files, and a smart thing would be to rename your index-files to .shtml and put <[REMOVETHIS]!--#include virtual "randomsnippet.php" --> where you want the snippet to appear. Please put a nicely formatted paragraph-wrapper or something around that statement or it will look like shite!
—-< randomsnippet.php >—-
function getRandomFile($prefix)
{
$dir = opendir(’.');
while (($myfile = readdir($dir)) !==false)
{
if ($myfile != ‘.’ && $myfile != ‘..’ && is_file($myfile) && $myfile != ‘resource.frk’)
{
if(ereg(”^$prefix”, $myfile))
$files[] = $myfile;
}
}
closedir($dir);
srand ((float) microtime() * 10000000);
$file = array_rand($files);
return $files[$file];
}
$display = getRandomFile(”snip_”);
include($display);
?>
—-< randomsnippet.php >—-
That’s it. Enjoy. I’m not charging you for it
Posted in Coding | 1 Comment »
22nd January 2006
Found and bought a little info-product about adsense the other day. I know, I know, another one of those…. This one has a different angle though. I think there’s something to it. Basically it’s about combining adwords (using high-traffic low-cost keywords) and adsense (for lower-traffic higher paying keywords) and affiliate products to get revenue. Then comes the interesting part. When revenue and traffic starts dropping, you stop your adwords-campaign and …. Well, this is where you find out for yourself
In order for you to do that, I’m going to give you a little demonstration of myAffiliateLinks …
The first link, simple re-direct, no cloak
The second link, cloaked re-direct
The third link, exit-page, no cloak
The Fourth link, exit-pake, cloaked re-direct
I think that about shows you what this script does
Anyways, I’m off to bed, I’ll post here and on a couple of forums when the pre-launch offer is ready
Posted in Coding, Reviews, Cool Products | No Comments »