<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Brewsterware &#187; Joe Brewer</title>
	<atom:link href="http://www.brewsterware.com/archives/author/admin/feed" rel="self" type="application/rss+xml" />
	<link>http://www.brewsterware.com</link>
	<description>Music, Magic and other shinanigans</description>
	<pubDate>Sun, 02 Nov 2008 21:09:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Joomla affiliate link cloaker</title>
		<link>http://www.brewsterware.com/archives/joomla-affiliate-link-cloaker.html</link>
		<comments>http://www.brewsterware.com/archives/joomla-affiliate-link-cloaker.html#comments</comments>
		<pubDate>Sun, 19 Oct 2008 22:58:18 +0000</pubDate>
		<dc:creator>Joe Brewer</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Making money]]></category>

		<category><![CDATA[PHP and MySQL]]></category>

		<guid isPermaLink="false">http://www.brewsterware.com/?p=129</guid>
		<description><![CDATA[So here it is.  Version 3 of the affiliate link cloaker for Joomla 1.5.x
This new version works in a completely different way from the last version which will stop the problems caused by the WYSIWYG editors.  However, there are other issues which I will explain about later.  For now though, here is [...]]]></description>
			<content:encoded><![CDATA[<p>So here it is.  Version 3 of the affiliate link cloaker for Joomla 1.5.x</p>
<p>This new version works in a completely different way from the last version which will stop the problems caused by the WYSIWYG editors.  However, there are other issues which I will explain about later.  For now though, here is how to use it:</p>
<p><span id="more-129"></span><br />
Download the plugin <a target="_blank" href="http://www.brewsterware.com/downloads/linkcloaker_v3.zip">here</a>.</p>
<p>Install and enable the plugin.</p>
<p>To cloak a link place the tags [cloak][/CLOAK] around the link.  For example [CLOAK]<a href="http://www.brewsterware.com">Brewsterware.com</a>[/cloak].  This will convert thte URL into unreadable characters when the website source code is shown.</p>
<p>To alter the text in the status bar when the user moves their mouse over the link user this format: [CLOAK statustext="status bar text here"]<a href="http://www.brewsterware.com">Brewsterware.com</a>[/CLOAK] - this uses javascript to place the text in the status bar.</p>
<p>The issue I have found with cloaking links like this is that most modern browsers have a feature that will stop javascript from writing to the status bar - this means that the domain will be displayed for all to see.</p>
<p>To get around this issue use a redirect script.  This has two benefits:</p>
<p>1. You will be able to track clicks to the url.<br />
2. It is possible to geo target - this is a huge oportunuity to squeeze more money from an affiliate link</p>
<p>Here is an example of a simple non geotargetting affiliate script using php:</p>
<p><?php</p>
<p>	$urls = array (<br />
			'dvd' => 'http://www.dvdforadollar.com?affiliate=code',<br />
			'hypnosis' => 'http://www.hypnosisdownloads.com?509'<br />
		);</p>
<p>	header('Location: ' . $urls[$_GET['go']]);</p>
<p>?></p>
<p>Copy the above code into a file called redirect.php and populate the $urls array with your own affiliate links.  Add an entry to your robots.txt file so that the search engines don't index the file, then you are ready to go.  To use it, using the above examples set the go parameter with the arrays keys:</p>
<p>redirect.php?go=dvd<br />
redirect.php?go=hypnosis</p>
<p>To using geo targetting, we need to enlist the help of a third company.  I would recommend <a target="_blank" href="http://www.brewsterware.com/maxmind.php">MaxMind</a> who offer a subscription service.  There are several free services out there for geo targetting, however they are not very accurate.  If you are going to spend some effort geo targetting your affiliate links, then it is worth spending a bit of money making sure that a potential customer will end up exactly where you want them to go.  You can download an example geo targetting redirect script <a target="_blank" href="http://www.brewsterware.com/downloads/redirect.zip">here</a>.  Here is the important part of the script:</p>
<p>	// Put your MaxMind key here<br />
	$licenceKey = '';</p>
<p>	$country = getCountryFromWeb( $licenceKey, getIP() );</p>
<p>	// affiliate links for great britain<br />
	$gb = array (<br />
			'ebay' => 'http://www.ebay.co.uk',<br />
			'amazon' => 'http://www.amazon.co.uk'<br />
		);</p>
<p>	// affiliate links for the united states<br />
	$us = array (<br />
			'ebay' => 'http://www.ebay.com',<br />
			'amazon' => 'http://www.amazon.com'<br />
		);</p>
<p>	// set the united states as the default country<br />
	$default = $us;</p>
<p>Each array needs to be named using the two character country code of the country that you want to target and every array must have the same keys.  A list of valid country codes can be found here <a target="_blank" href="http://www.maxmind.com/app/iso3166?rId=brewsterware">www.maxmind.com/app/iso3166</a>.  You can set up as many country arrays as there are countries, and you use it in exactly the same way as the previous script.  So redirect.php?go=amazon will redirect to the local amazon store.  All you will need to buy is a license from MaxMind - once you have this you will be able to put in the license key that you will receive at the top of the script.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d129').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark to:</em></strong></a>
<br />
<div class="d129" style="overflow:hidden">
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d129').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d129').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.brewsterware.com/archives/joomla-affiliate-link-cloaker.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Blogging hiatus</title>
		<link>http://www.brewsterware.com/archives/blogging-hiatus.html</link>
		<comments>http://www.brewsterware.com/archives/blogging-hiatus.html#comments</comments>
		<pubDate>Sun, 12 Oct 2008 22:08:23 +0000</pubDate>
		<dc:creator>Joe Brewer</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.brewsterware.com/?p=108</guid>
		<description><![CDATA[With apologies to my readers (all two of them!) for the lack of regular posts - there's no excuse really.... Alot has happened since I was last regularly blogging.
Here's a quick update.  4th of May I started dating a girl from Worthing.  She likes Sci-fi, Belgian beers and music - who could want more than [...]]]></description>
			<content:encoded><![CDATA[<p>With apologies to my readers (all two of them!) for the lack of regular posts - there's no excuse really.... Alot has happened since I was last regularly blogging.</p>
<p>Here's a quick update.  4th of May I started dating a girl from Worthing.  She likes Sci-fi, Belgian beers and music - who could want more than that!  A couple of months later we went away for a weekend to <a href="http://photos.brewsterware.com/main.php?g2_itemId=489" target="_blank">Wales</a> - weather was awful but we had a great time.</p>
<p>In the last couple of weeks she moved in with me.  I though this would be a piece of cake with a few cars journeys worth of stuff.  She only has a one bedroom flat after all.  I was wrong.  Several car journeys (with two cars), and one van load of appliances, and there is still odds and ends there.  We'll get there eventually.  Then there's getting all of the stuff in the flat at Pease Pottage.  We've made several trips to the dump, but things are starting to settle down now.  Our furniture goes surprisingly well together <img src='http://www.brewsterware.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I'm currently writing this post from the comfort of my front room using a laptop that I've recently taken delivery of.  It's pretty cool, apart from the fact that it's running vista, and the old (ancient) version of phpedit that I have does not run on it at all.  I'm current running the demo version of 1.2 which will run out in about 28 days forcing me to buy it.  I love phpedit and cannot live without it!</p>
<p>Also, due to demand, I've rewritten my affiliate link cloaking plugin for Joomla, and I'll be releasing it later on in the week.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d108').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark to:</em></strong></a>
<br />
<div class="d108" style="overflow:hidden">
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d108').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d108').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.brewsterware.com/archives/blogging-hiatus.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>www.direct.gov.uk/taxdisc - Saving money at Christmas</title>
		<link>http://www.brewsterware.com/archives/www-direct-gov-uk-taxdisc.html</link>
		<comments>http://www.brewsterware.com/archives/www-direct-gov-uk-taxdisc.html#comments</comments>
		<pubDate>Sun, 12 Oct 2008 19:25:53 +0000</pubDate>
		<dc:creator>Joe Brewer</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.brewsterware.com/?p=103</guid>
		<description><![CDATA[This year I'll be buying most of the christmas presents that I intend to give from ebay.  Why?  Well, there are so many bargins on there - it's not just second hand goods, but brand new goods at knock down prices.  With the current climate the way it is saving money is a must, and [...]]]></description>
			<content:encoded><![CDATA[<p>This year I'll be buying most of the christmas presents that I intend to give from ebay.  Why?  Well, there are so many bargins on there - it's not just second hand goods, but brand new goods at knock down prices.  With the current climate the way it is saving money is a must, and buying from ebay is an excellent way to save.
</p>
<p><a href='http://rover.ebay.com/rover/1/710-53481-19255-60/1?campid=5336121000&#038;toolid=710534811925560&#038;customid=&#038;mpvc='><br />
		<img border='0px' src='http://rover.ebay.com/ar/1/710-53481-19255-60/1?campid=5336121000&#038;toolid=710534811925560&#038;customid=&#038;mpt=[CACHEBUSTER]&#038;adtype=1&#038;size=336x280&#038;mpvc=' alt='Click Here'><br />
</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d103').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark to:</em></strong></a>
<br />
<div class="d103" style="overflow:hidden">
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d103').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d103').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.brewsterware.com/archives/www-direct-gov-uk-taxdisc.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>are the organfax forums dead</title>
		<link>http://www.brewsterware.com/archives/are-the-organfax-forums-dead.html</link>
		<comments>http://www.brewsterware.com/archives/are-the-organfax-forums-dead.html#comments</comments>
		<pubDate>Tue, 19 Aug 2008 21:22:51 +0000</pubDate>
		<dc:creator>Joe Brewer</dc:creator>
		
		<category><![CDATA[Music]]></category>

		<category><![CDATA[Organs]]></category>

		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.brewsterware.com/?p=102</guid>
		<description><![CDATA[I've tried registering several times with this forum, but to no avail.  They just wont have me.  Registration requires a moderator to review your application before you can post, and my application has been waiting for months with nothing even so much as a whisper.  Has my account been denied?  I've no idea, and emails [...]]]></description>
			<content:encoded><![CDATA[<p>I've tried registering several times with <a title="Organfax forums" href="http://www.organfax.co.uk/" target="_blank">this forum</a>, but to no avail.  They just wont have me.  Registration requires a moderator to review your application before you can post, and my application has been waiting for months with nothing even so much as a whisper.  Has my account been denied?  I've no idea, and emails to the webmaster (ian@organfax.com) asking about my account seem to have disappeared into the ether.</p>
<p>This website was once a fantastic thriving community of enthusiasts.  Originally developed by Margaret Falkner - a truly great figure on the UK home organ scene, and a huge inspiration to many people.  Sadly, she passed away several years ago.  Remembered by many - such a shame I cannot add to this <a href="http://forums.organfax.co.uk/viewtopic.php?t=240" target="_blank">post to her memory</a>.</p>
<p>Unfortunately the market of the home electronic organ is in a bad state.  Manufacturers insist on producing organs for the elderly, the incompetent, or people who just don't want to put in any time or effort to improve their playing.  Take the absolutely dreadful Yamaha AR100 and AR80.  For a start, their cabinets look low quality sticky back plastic covered chipboard - hardly what you would expect for the circa £8000 you would have had to have paid when they came on to the market.  A console that is just so full of automatic accompaniments that it is more difficult to switch them off and just play something simple.  Sound quality that is so horrible.  And to top it all off, a speaker system that is more powerful than a professional instrument such as the EL90.</p>
<p>Manufacturers should be targeting and encouraging younger people to buy these instruments, not people that wont be here in 20 years.  So sad.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d102').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark to:</em></strong></a>
<br />
<div class="d102" style="overflow:hidden">
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d102').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d102').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.brewsterware.com/archives/are-the-organfax-forums-dead.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Cheap dot com domains from GoDaddy</title>
		<link>http://www.brewsterware.com/archives/cheap-dot-com-domains-from-godaddy.html</link>
		<comments>http://www.brewsterware.com/archives/cheap-dot-com-domains-from-godaddy.html#comments</comments>
		<pubDate>Tue, 05 Aug 2008 18:08:17 +0000</pubDate>
		<dc:creator>Joe Brewer</dc:creator>
		
		<category><![CDATA[Domains]]></category>

		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.brewsterware.com/?p=101</guid>
		<description><![CDATA[www.GoDaddy.com have done it again - dot com domains for only $6.99.  That's a saving of 30% off of their normal price. Hurry though, this saving will only last until 31st August.  To make the most of the saving, register your new domains for 10 years.
To get the discounted price, use the code gdp0804c when [...]]]></description>
			<content:encoded><![CDATA[<p><a onmouseover="window.status='http://www.godaddy.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.tkqlhce.com/click-2741430-10378406" target="_blank">www.GoDaddy.com</a> have done it again - dot com domains for only $6.99.  That's a saving of 30% off of their normal price. Hurry though, this saving will only last until 31st August.  To make the most of the saving, register your new domains for 10 years.</p>
<p>To get the discounted price, use the code <span style="color: #000000;"><strong><span style="font-weight: bold;"><span style="font-size: 12px; font-family: arial,helvetica;">gdp0804c</span></span></strong></span> when you check out.<img src="http://www.ftjcfx.com/image-2741430-10378406" border="0" alt="" width="1" height="1" /></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d101').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark to:</em></strong></a>
<br />
<div class="d101" style="overflow:hidden">
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d101').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d101').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.brewsterware.com/archives/cheap-dot-com-domains-from-godaddy.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
