<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Money-Code</title><link>http://www.money-code.com</link><description>Coding For Online Success</description><language>en</language><lastBuildDate>Sat, 31 Oct 2009 11:38:45 PDT</lastBuildDate><generator>http://wordpress.org/?v=2.8.5</generator><sy:updatePeriod xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">hourly</sy:updatePeriod><sy:updateFrequency xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">1</sy:updateFrequency><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Money-code" type="application/rss+xml" /><feedburner:emailServiceId>Money-code</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>Simple modification to FD Feedburner Plugin</title><link>http://feedproxy.google.com/~r/Money-code/~3/zzZuRtpTG_0/</link><category>Programming</category><category>facebook</category><category>feed</category><category>feedburner</category><category>php</category><category>plugins</category><category>wordpress</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Sat, 31 Oct 2009 11:38:45 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=596</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fsimple-modification-to-fd-feedburner-plugin%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fsimple-modification-to-fd-feedburner-plugin%2F" height="61" width="51" /></a></div><p>Today for one of my sites, I needed to populate a Facebook page with a feed, but I didn&#8217;t want the entire post as the &#8216;note&#8217;. I found a great plugin called <a href="http://www.keyvan.net/code/feed-facebook-leave-facebook/" target="_blank">Feed Facebook, Leave Facebook</a> that leaves a partial feed with a link to &#8216;leave Facebook&#8217; to your site. This is EXACTLY what I needed, but I was having problem with my <a href="http://flagrantdisregard.com/feedburner/" target="_blank">FD Feedburner Plugin</a> which auto-magically converts my RSS feeds to feedburner feeds. In this particular case, I needed to exclude a single feed from this. Unfortunately, this is not a configuration option.</p>
<p>So I&#8217;m posting this mainly for myself in case there is a plugin update and I need to know how I did this the first time, but I can see that few might find this useful.</p>
<p>Basically in the feedburner_redirect() function, we need to add a conditional:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$feed_url</span> != <span class="kw2">null</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Redirect the feed</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/header"><span class="kw3">header</span></a><span class="br0">&#40;</span><span class="st0">&quot;Location: &quot;</span>.<span class="re0">$feed_url</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/die"><span class="kw3">die</span></a>;<br />
<span class="br0">&#125;</span></div>
<p>Needs to be changed to this:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$feed_url</span> != <span class="kw2">null</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="co1">// Redirect the feed</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span><span class="br0">&#40;</span>!<a href="http://www.php.net/eregi"><span class="kw3">eregi</span></a><span class="br0">&#40;</span><span class="st0">&#8216;facebook&#8217;</span>,<span class="re0">$_SERVER</span><span class="br0">&#91;</span><span class="st0">&#8216;REQUEST_URI&#8217;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/header"><span class="kw3">header</span></a><span class="br0">&#40;</span><span class="st0">&quot;Location: &quot;</span>.<span class="re0">$feed_url</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/die"><span class="kw3">die</span></a>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
<span class="br0">&#125;</span></div>
<p>The feed url that Facebook will be using looks similar to this : http://www.yourdomain.com/feed?feedfacebook, if we detect this in the REQUEST_URI, we do nothing with the redirect. Now Facebook will be happy with our new feed, while any other requests to our site&#8217;s feed will be directed to Feedburner.</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/08/including-your-wordpress-blogs-to-a-external-website/' rel='bookmark' title='Permanent Link: Including your WordPress blogs to a external website'>Including your WordPress blogs to a external website</a></li><li><a href='http://www.money-code.com/2009/06/migrating-money-code-from-drupal-to-wordpress/' rel='bookmark' title='Permanent Link: Migrating Money-Code from Drupal to WordPress'>Migrating Money-Code from Drupal to WordPress</a></li><li><a href='http://www.money-code.com/2007/09/simple-script-for-connecting-to-commission-junctions-product-web-service-and-populating-a-local-database/' rel='bookmark' title='Permanent Link: Simple script for connecting to Commission Junction&#8217;s Product Web Service and populating a local database'>Simple script for connecting to Commission Junction&#8217;s Product Web Service and populating a local database</a></li></ol></p>]]></content:encoded><description>Today for one of my sites, I needed to populate a Facebook page with a feed, but I didn&amp;#8217;t want the entire post as the &amp;#8216;note&amp;#8217;. I found a great plugin called Feed Facebook, Leave Facebook that leaves a partial feed with a link to &amp;#8216;leave Facebook&amp;#8217; to your site. This is EXACTLY what I [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/including-your-wordpress-blogs-to-a-external-website/' rel='bookmark' title='Permanent Link: Including your WordPress blogs to a external website'&gt;Including your WordPress blogs to a external website&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/06/migrating-money-code-from-drupal-to-wordpress/' rel='bookmark' title='Permanent Link: Migrating Money-Code from Drupal to WordPress'&gt;Migrating Money-Code from Drupal to WordPress&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/09/simple-script-for-connecting-to-commission-junctions-product-web-service-and-populating-a-local-database/' rel='bookmark' title='Permanent Link: Simple script for connecting to Commission Junction&amp;#8217;s Product Web Service and populating a local database'&gt;Simple script for connecting to Commission Junction&amp;#8217;s Product Web Service and populating a local database&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/simple-modification-to-fd-feedburner-plugin/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/simple-modification-to-fd-feedburner-plugin/</feedburner:origLink></item><item><title>So you messed up, now what?</title><link>http://feedproxy.google.com/~r/Money-code/~3/PHJYZSj0YWk/</link><category>EPN</category><category>Network Quality Team</category><category>rover</category><category>violation</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Mon, 26 Oct 2009 07:12:18 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=594</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fso-you-messed-up-now-what%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fso-you-messed-up-now-what%2F" height="61" width="51" /></a></div><p><img class="alignleft size-full wp-image-301" title="ebay-partner-network" src="http://www.money-code.com/wp-content/uploads/2009/06/ebay-partner-network.jpg" alt="ebay-partner-network" width="150" height="150" />I pretty much try to avoid the official <a href="http://forums.ebay.com/db2/forum/Ebay-Partner-Network/1000000047&amp;start=15" target="_blank">EPN forum</a> these days. The amount of negative, paranoid and panicky posts there can sometimes freak you out. But, those posts are real and should be looked at on occasion to understand how series EPN is about violations.</p>
<p>I&#8217;m still trying to diversify my affiliate marketing pie and get EPN more in the balance by promoting heavily with Amazon and CJ products over the last few months. In fact, I just recently did some new EPN development for the first time last week. During this development phase I clicked on a rover link to test that the proper CampID was being sent and I was landing at the appropriate listing. The next day, I purchased something on eBay and realized that I just purchased an item after dropping my rover cookie on my machine. Normally, I do eBay purchases on another box that has none of my affiliate cookies (or clear my cookies). Not doing any EPN development for a while, I forgot about the rover. Total rookie mistake on my part.</p>
<p>I&#8217;m sure a lot of people do this, intentionally or not intentionally, but I didn&#8217;t want to be one of those users at the EPN forum complaining that I can&#8217;t log in, or that I&#8217;ve been booted from the program without any reasons, etc. I decided to take a proactive approach and contact EPN and let them know what I&#8217;ve done, and request that transaction be removed from my earnings.</p>
<p>After submitting my email (via their Contact/Help form in the &#8216;Can I test my own links?&#8217; section) I received the classic &#8216;canned&#8217; message stating that they&#8217;ve forwarded my email to the Network Quality team at EPN. I didn&#8217;t get a response for about a week, but then finally received a great email from the Quality Team, thanking me for being proactive and notifying them of the accidental click. The letter stated that this would not be a problem (this time) and request that I be sure to clear cookies before making any future purchases at eBay. No problem!</p>
<p>Nothing probably would have happened if I didn&#8217;t send them a email. This was the first and only time I&#8217;ve purchased someting on my rover cookie, but you never know. I&#8217;d hate to lose my EPN account over simple purchase at eBay.</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2007/11/dynamically-create-ebay-widgets-from-existing-rover-code/' rel='bookmark' title='Permanent Link: Dynamically create eBay widgets from existing rover code'>Dynamically create eBay widgets from existing rover code</a></li><li><a href='http://www.money-code.com/2009/08/is-epn-stressing-you-out/' rel='bookmark' title='Permanent Link: Is EPN stressing you out?'>Is EPN stressing you out?</a></li><li><a href='http://www.money-code.com/2007/11/tracking-converting-keywords-from-your-ppc-campaigns/' rel='bookmark' title='Permanent Link: Tracking converting keywords from your PPC campaigns'>Tracking converting keywords from your PPC campaigns</a></li></ol></p>]]></content:encoded><description>I pretty much try to avoid the official EPN forum these days. The amount of negative, paranoid and panicky posts there can sometimes freak you out. But, those posts are real and should be looked at on occasion to understand how series EPN is about violations.
I&amp;#8217;m still trying to diversify my affiliate marketing pie and [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/11/dynamically-create-ebay-widgets-from-existing-rover-code/' rel='bookmark' title='Permanent Link: Dynamically create eBay widgets from existing rover code'&gt;Dynamically create eBay widgets from existing rover code&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/is-epn-stressing-you-out/' rel='bookmark' title='Permanent Link: Is EPN stressing you out?'&gt;Is EPN stressing you out?&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/11/tracking-converting-keywords-from-your-ppc-campaigns/' rel='bookmark' title='Permanent Link: Tracking converting keywords from your PPC campaigns'&gt;Tracking converting keywords from your PPC campaigns&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/so-you-messed-up-now-what/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/so-you-messed-up-now-what/</feedburner:origLink></item><item><title>Update WordPress!</title><link>http://feedproxy.google.com/~r/Money-code/~3/q9TkgQ4uxJk/</link><category>Affiliate Marketing</category><category>php</category><category>security</category><category>update</category><category>wordpress</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Wed, 21 Oct 2009 08:37:14 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=592</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fupdate-wordpress%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fupdate-wordpress%2F" height="61" width="51" /></a></div><p><img class="alignleft size-full wp-image-351" title="icon_big" src="http://www.money-code.com/wp-content/uploads/2009/06/icon_big.jpg" alt="icon_big" width="150" height="151" />Okay, looks like WordPress released a &#8216;hardened&#8217; release for 2.8 which will jack your release version to 2.8.5. It&#8217;s very important to stay upgraded to ensure that your sites will run properly, but more importantly to maintain security. You don&#8217;t want your money-making sites to go down, or to have your account suspended due to your site being compromised. As they say, &#8220;A ounce of prevention is worth a pound of cure&#8221;.</p>
<p>Details of the release can be found here: <a href="http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/" target="_blank">http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/</a></p>
<p>The headline changes in this release are:</p>
<ul>
<li>A fix for the Trackback Denial-of-Service attack that is currently being seen.</li>
<li>Removal of areas within the code where php code in variables was evaluated.</li>
<li>Switched the file upload functionality to be whitelisted for all users including Admins.</li>
<li>Retiring of the two importers of Tag data from old plugins.</li>
</ul>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/07/thinking-about-security-for-affiliate-marketing/' rel='bookmark' title='Permanent Link: Thinking about security for Affiliate Marketing'>Thinking about security for Affiliate Marketing</a></li><li><a href='http://www.money-code.com/2009/08/twitter-troubles/' rel='bookmark' title='Permanent Link: Twitter troubles'>Twitter troubles</a></li><li><a href='http://www.money-code.com/2009/06/good-adjustments-made-to-my-new-wordpress-blog/' rel='bookmark' title='Permanent Link: Good adjustments made to my new WordPress blog'>Good adjustments made to my new WordPress blog</a></li></ol></p>]]></content:encoded><description>Okay, looks like WordPress released a &amp;#8216;hardened&amp;#8217; release for 2.8 which will jack your release version to 2.8.5. It&amp;#8217;s very important to stay upgraded to ensure that your sites will run properly, but more importantly to maintain security. You don&amp;#8217;t want your money-making sites to go down, or to have your account suspended due to [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/07/thinking-about-security-for-affiliate-marketing/' rel='bookmark' title='Permanent Link: Thinking about security for Affiliate Marketing'&gt;Thinking about security for Affiliate Marketing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/twitter-troubles/' rel='bookmark' title='Permanent Link: Twitter troubles'&gt;Twitter troubles&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/06/good-adjustments-made-to-my-new-wordpress-blog/' rel='bookmark' title='Permanent Link: Good adjustments made to my new WordPress blog'&gt;Good adjustments made to my new WordPress blog&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/update-wordpress/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/update-wordpress/</feedburner:origLink></item><item><title>Are you distracted by earning stats?</title><link>http://feedproxy.google.com/~r/Money-code/~3/7RR6U5CS230/</link><category>Affiliate Marketing</category><category>earnings</category><category>EPN</category><category>ideas</category><category>stats</category><category>thoughts</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Tue, 20 Oct 2009 15:24:19 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=589</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fare-you-distracted-by-earning-stats%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fare-you-distracted-by-earning-stats%2F" height="61" width="51" /></a></div><p>I&#8217;m not sure where I&#8217;m going with this post. Maybe it&#8217;s a personal observation and something I need to work on. I guess I should start out&#8230;</p>
<p>&#8220;Hi, my name is Hank&#8230; and I&#8217;m addicted to stats&#8221;</p>
<p>I would be embarrassed if I counted how many times I log into CJ or EPN&#8217;s control panel to see my numbers. I&#8217;m particularly most annoyed with my habit to login to EPN, since that updates (earnings) once a day. I think I find myself checking to see if earnings had posted, but even after they post, I still login often.. I guess to see what my click counts are doing. It&#8217;s quite silly. With Amazon, I only check once a day (in the morning) since earnings/clicks only post once. CJ, I check continually (same time as EPN), but at least earnings trickle throughout the day.</p>
<p>What I&#8217;m not liking is the time I waste doing this. Add this to my email and IM/Twitter  conversations, and various mailing lists alerts, I know I spend a lot of time where I could probably save a lot by doing it once at set time. This is where the addiction is identified. The thought of doing it once a day, seems &#8216;weird&#8217; to me. It&#8217;s like I need to do it all day long?</p>
<p>Am I alone here? Or are there other internet marketers wasting time on earning stats? What&#8217;s the cure? Is there a patch of some sort?</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/05/clicks-and-sales-down-time-to-evaluate-and-adjust-and-react/' rel='bookmark' title='Permanent Link: Clicks and sales down, time to evaluate and adjust and react.'>Clicks and sales down, time to evaluate and adjust and react.</a></li><li><a href='http://www.money-code.com/2007/10/cj-quick-stat-email-script/' rel='bookmark' title='Permanent Link: CJ Quick Stat Email Script'>CJ Quick Stat Email Script</a></li></ol></p>]]></content:encoded><description>I&amp;#8217;m not sure where I&amp;#8217;m going with this post. Maybe it&amp;#8217;s a personal observation and something I need to work on. I guess I should start out&amp;#8230;
&amp;#8220;Hi, my name is Hank&amp;#8230; and I&amp;#8217;m addicted to stats&amp;#8221;
I would be embarrassed if I counted how many times I log into CJ or EPN&amp;#8217;s control panel to see [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/05/clicks-and-sales-down-time-to-evaluate-and-adjust-and-react/' rel='bookmark' title='Permanent Link: Clicks and sales down, time to evaluate and adjust and react.'&gt;Clicks and sales down, time to evaluate and adjust and react.&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/10/cj-quick-stat-email-script/' rel='bookmark' title='Permanent Link: CJ Quick Stat Email Script'&gt;CJ Quick Stat Email Script&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/are-you-distracted-by-earning-stats/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">4</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/are-you-distracted-by-earning-stats/</feedburner:origLink></item><item><title>GoDaddy’s Discount Domain Club</title><link>http://feedproxy.google.com/~r/Money-code/~3/T3nnEl1O8OI/</link><category>Affiliate Marketing</category><category>deals</category><category>domains</category><category>godaddy</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Mon, 19 Oct 2009 09:20:26 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=586</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fgodaddys-discount-domain-club%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fgodaddys-discount-domain-club%2F" height="61" width="51" /></a></div><p><a href="http://www.tkqlhce.com/rc122cy63y5LOSPNONVLNMQTNSPR"><img class="alignleft size-full wp-image-587" title="GoDaddy.com Discount Domain Club" src="http://www.money-code.com/wp-content/uploads/2009/10/discountdomainclub.jpg" alt="GoDaddy.com Discount Domain Club" width="221" height="82" /></a>Today I wanted to bring up <a href="http://www.tkqlhce.com/rc122cy63y5LOSPNONVLNMQTNSPR" target="_blank">GoDaddy&#8217;s Discount Domain Club</a>. If you own a lot of domains at GoDaddy, you need to join this club!</p>
<p>Over the months, I&#8217;ve heard people mention this, and I have one friend that has told me in the past that I needed to be a part of this. Basically, you pay a yearly fee to be a part of the club, but the club offers some sweet discounts that add up! In my case alone, I&#8217;ll be saving several hundreds per year.</p>
<p>Prior to my joining, I&#8217;ve been purchasing domains at regular price (sometimes on sale, etc) and then setting them to auto-renew. Pretty simple. You can get a discount by manually renewing your domains, but I feel that is trouble waiting to happen (for me anyways).</p>
<p>By joining the Discount Domain Club, your renewals (automatic) are discounted. You purchases on new domains are always the lowest price at GoDaddy, that alone is great deal, but the renewals is what is going to save me some serious yearly dough.</p>
<p><a href="http://www.tkqlhce.com/rc122cy63y5LOSPNONVLNMQTNSPR" target="_blank">Joining the club</a> is not free though, it cost&#8217;s <strong>$89.99/year</strong>, so you need to do the math and figure out if it&#8217;s worth it for you based on the numbers of domains you have in your account. If you have lots of domains, this is a no brainer. I think 20 domains is the break even point.</p>
<p>So what types of savings are we talking about?</p>
<p><strong>.com is $7.29/year (31% off)<br />
.net is $5.99/year (53% off)<br />
.org is $7.29/year (51% off)</strong></p>
<p>You also get free Premium CashParking and get to keep 80% of the revenue generated. You get fre membership to GoDaddy Auctions. You get discounted Domain Buy Service (this is for negotiating domains that are already taken).</p>
<p>It takes the headache out of the mix. No longer waiting for &#8216;weekend specials&#8217; or looking for coupon codes to get a deal on domains, just auto-magic, which saves me time&#8230; and I like saving time and money.</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/05/picking-and-purchasing-domain-names/' rel='bookmark' title='Permanent Link: Picking and purchasing domain names'>Picking and purchasing domain names</a></li><li><a href='http://www.money-code.com/2009/05/popshop-redirect-all-links-to-your-domain/' rel='bookmark' title='Permanent Link: PopShop redirect all links to your domain'>PopShop redirect all links to your domain</a></li><li><a href='http://www.money-code.com/2007/12/setting-realistic-internet-marketing-goals/' rel='bookmark' title='Permanent Link: Setting realistic internet marketing goals.'>Setting realistic internet marketing goals.</a></li></ol></p>]]></content:encoded><description>Today I wanted to bring up GoDaddy&amp;#8217;s Discount Domain Club. If you own a lot of domains at GoDaddy, you need to join this club!
Over the months, I&amp;#8217;ve heard people mention this, and I have one friend that has told me in the past that I needed to be a part of this. Basically, you [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/05/picking-and-purchasing-domain-names/' rel='bookmark' title='Permanent Link: Picking and purchasing domain names'&gt;Picking and purchasing domain names&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/05/popshop-redirect-all-links-to-your-domain/' rel='bookmark' title='Permanent Link: PopShop redirect all links to your domain'&gt;PopShop redirect all links to your domain&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/12/setting-realistic-internet-marketing-goals/' rel='bookmark' title='Permanent Link: Setting realistic internet marketing goals.'&gt;Setting realistic internet marketing goals.&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/godaddys-discount-domain-club/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/godaddys-discount-domain-club/</feedburner:origLink></item><item><title>EPN Tracking Image</title><link>http://feedproxy.google.com/~r/Money-code/~3/6HvDe-0HS1E/</link><category>EPN</category><category>Programming</category><category>amazon</category><category>php</category><category>qcp</category><category>quality click pricing</category><category>tracking</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Sun, 11 Oct 2009 09:19:07 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=583</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fepn-tracking-image%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fepn-tracking-image%2F" height="61" width="51" /></a></div><p><img class="alignleft size-full wp-image-301" title="ebay-partner-network" src="http://www.money-code.com/wp-content/uploads/2009/06/ebay-partner-network.jpg" alt="ebay-partner-network" width="150" height="150" />A good friend of mine, just starting out in EPN, asked me if I add a tracking pixel as suggested by the link tool. Hmm? I haven&#8217;t ccreated any links using the tool in over a year, so I didn&#8217;t see mention of that. I do remember that one of the EPN webinars that someone mentioned that they wanted to see some more impression tracking for more publish transparency, but I didn&#8217;t hear more on the subject.</p>
<p>I quickly went to the tool and generated some links and saw the mention&#8230;</p>
<blockquote><p>Tip: We recommend serving at least one impression pixel per Campaign on every page that has eBay links. For more info, click the help link to the left and contact us.</p></blockquote>
<p>As some of you know I roll my own EPN sites (No BANS) so I needed to quickly add this tracking image on my sites. All of my sites have a &#8217;store&#8217; section, so within that template I added the following PHP code at the bottom:</p>
<div class="dean_ch" style="white-space: wrap;"><a href="http://www.php.net/echo"><span class="kw3">echo</span></a> <span class="st0">&#8216;&lt;img style=&quot;text-decoration:none;border:0;padding:0;margin:0;&quot; src=&quot;http://rover.ebay.com/roverimp/1/711-53200-19255-0/1?ff3=1&amp;amp;pub=123413241432&amp;amp;toolid=10001&amp;amp;campid=&#8217;</span>.EPNID.<span class="st0">&#8216;&amp;amp;customid=&amp;amp;mpt=[CACHEBUSTER]&quot; alt=&quot;&quot; /&gt;&#8217;</span>;</div>
<p>The EPNID variable is a PHP constant that contains my campid for every site. I&#8217;m not seeing increased impressions in my campaigns. I had &#8217;some&#8217; impressions before, but those were from various pages that had Editor Kits, but now I&#8217;m seeing proper page impressions for my RSS and API pages.</p>
<p>I wanted to post this in case others like me, didn&#8217;t see the &#8217;suggestion&#8217;.</p>
<p>Side note, EPN&#8217;s QCP is still better than my daily commissions under the old system. I&#8217;ll be officially ramping up my EPN development again. I&#8217;ve been working on Amazon store fronts during the last month and half, and seeing some &#8216;okay&#8217; earnings from there. Still nowhere near my EPN earnings, but I&#8217;ve been learning alot about what works.. and what doesn&#8217;t. I&#8217;m hoping that these Amazon sites will really pay off during the holiday shopping spree.</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2008/04/use-live-http-headers-to-verify-your-epn-links-are-working/' rel='bookmark' title='Permanent Link: Use Live HTTP Headers to verify your EPN links are working'>Use Live HTTP Headers to verify your EPN links are working</a></li><li><a href='http://www.money-code.com/2007/11/tracking-converting-keywords-from-your-ppc-campaigns/' rel='bookmark' title='Permanent Link: Tracking converting keywords from your PPC campaigns'>Tracking converting keywords from your PPC campaigns</a></li><li><a href='http://www.money-code.com/2008/04/epn-editorkit-transition/' rel='bookmark' title='Permanent Link: EPN EditorKit Transition'>EPN EditorKit Transition</a></li></ol></p>]]></content:encoded><description>A good friend of mine, just starting out in EPN, asked me if I add a tracking pixel as suggested by the link tool. Hmm? I haven&amp;#8217;t ccreated any links using the tool in over a year, so I didn&amp;#8217;t see mention of that. I do remember that one of the EPN webinars that someone [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2008/04/use-live-http-headers-to-verify-your-epn-links-are-working/' rel='bookmark' title='Permanent Link: Use Live HTTP Headers to verify your EPN links are working'&gt;Use Live HTTP Headers to verify your EPN links are working&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/11/tracking-converting-keywords-from-your-ppc-campaigns/' rel='bookmark' title='Permanent Link: Tracking converting keywords from your PPC campaigns'&gt;Tracking converting keywords from your PPC campaigns&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2008/04/epn-editorkit-transition/' rel='bookmark' title='Permanent Link: EPN EditorKit Transition'&gt;EPN EditorKit Transition&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/epn-tracking-image/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">3</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/epn-tracking-image/</feedburner:origLink></item><item><title>Bookmarking Demon 5 is out!</title><link>http://feedproxy.google.com/~r/Money-code/~3/ApnA1moQR8U/</link><category>Affiliate Marketing</category><category>SEO</category><category>backlinks</category><category>bookmarking demon</category><category>phpdug</category><category>plig</category><category>scuttle</category><category>serps</category><category>tools</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Tue, 06 Oct 2009 09:16:54 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=580</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fbookmarking-demon-5-is-out%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F10%2Fbookmarking-demon-5-is-out%2F" height="61" width="51" /></a></div><p><a href="http://www.money-code.com/target/bmd.php"><img class="alignleft size-medium wp-image-581" title="Bookmarking Demon 5" src="http://www.money-code.com/wp-content/uploads/2009/10/bmd5-243x300.jpg" alt="Bookmarking Demon 5" width="243" height="300" /></a>Just got the email today that <a href="http://www.money-code.com/target/bmd.php" target="_blank">Bookmarking Demon 5</a> is official out and available. This is absolutely great news since BMD4 was having all sorts of trouble as of late. I&#8217;ll post a follow up post on my thoughts of the new features, and how the migration of accounts went (basically, I&#8217;ll put together a full review of Bookmarking Demon 5). I&#8217;m particular excited about the scheduler feature where you can drip submit to bookmarking sites, and the inclusion of phpDug sites.</p>
<p>If you&#8217;re unfamiliar with <a href="http://www.money-code.com/target/bmd.php" target="_blank">Bookmarking Demon</a>, it&#8217;s a great piece of software where you create social bookmarking accounts and submit sites to them. You can create many accounts, and also submit &#8216;filler&#8217; RSS feeds to make your bookmarking submissions seem more natural. By creating a level of bookmark backlinks you can help increase your rank in the SERPs and eventually gain more traffic. Granted this quality of traffic seems pretty poor in general, but the SERP position is the greatest benefit of the tool&#8230; and that&#8217;s the traffic you want in the long run.</p>
<p>A word of warning, if you do not make this look natural and are clearly self-promoting your &#8216;money sites&#8217;, then you could be de-indexed from Google or have specific social bookmarking accounts banned. The trick is to promote pages relating to your site, not your sites directly.</p>
<p>The bottom line, it&#8217;s a great tool for generating backlinks and search traffic to your sites. It&#8217;s awesome tool for the fact that it saves you a ton of time by doing things for you vs. manually doing it by hand. You should really <a href="http://www.money-code.com/target/bmd.php" target="_blank">check out the promotional video</a>.. since is shows some of the features.</p>
<p>- Browser mode. You get to see what is happening right in front of you.<br />
- Multi-threading for both account creation and bookmarking.<br />
- New open source bookmarking script PHPDug added.<br />
- Added a Scheduler.<br />
- Email verification system added.<br />
- A better project management system.<br />
- Visual aid (coming soon)</p>
<p>If you already have a licensed version of BMD4, this is a free download.</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/07/blog-comment-demon-review/' rel='bookmark' title='Permanent Link: Blog Comment Demon Review'>Blog Comment Demon Review</a></li><li><a href='http://www.money-code.com/2008/10/social-marker/' rel='bookmark' title='Permanent Link: Social Marker'>Social Marker</a></li><li><a href='http://www.money-code.com/2009/05/creating-a-small-backlink-network/' rel='bookmark' title='Permanent Link: Creating a small backlink network'>Creating a small backlink network</a></li></ol></p>]]></content:encoded><description>Just got the email today that Bookmarking Demon 5 is official out and available. This is absolutely great news since BMD4 was having all sorts of trouble as of late. I&amp;#8217;ll post a follow up post on my thoughts of the new features, and how the migration of accounts went (basically, I&amp;#8217;ll put together a [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/07/blog-comment-demon-review/' rel='bookmark' title='Permanent Link: Blog Comment Demon Review'&gt;Blog Comment Demon Review&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2008/10/social-marker/' rel='bookmark' title='Permanent Link: Social Marker'&gt;Social Marker&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/05/creating-a-small-backlink-network/' rel='bookmark' title='Permanent Link: Creating a small backlink network'&gt;Creating a small backlink network&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/10/bookmarking-demon-5-is-out/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">1</slash:comments><feedburner:origLink>http://www.money-code.com/2009/10/bookmarking-demon-5-is-out/</feedburner:origLink></item><item><title>Quality Click Pricing (QCP) starts tomorrow (10/1/2009)</title><link>http://feedproxy.google.com/~r/Money-code/~3/h_6qlQIc_NQ/</link><category>EPN</category><category>ebay</category><category>qcp</category><category>quality click pricing</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Wed, 30 Sep 2009 13:19:24 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=576</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F09%2Fquality-click-pricing-qcp-starts-tomorrow-1012009%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F09%2Fquality-click-pricing-qcp-starts-tomorrow-1012009%2F" height="61" width="51" /></a></div><p><img class="alignleft size-full wp-image-301" title="ebay-partner-network" src="http://www.money-code.com/wp-content/uploads/2009/06/ebay-partner-network.jpg" alt="ebay-partner-network" width="150" height="150" /></p>
<p>If you&#8217;ve been following along with the new changes at EPN (and people, you should be following along since the changes have been significant), you should know about the their new commission structure. They&#8217;re moving to a Cost Per Click pricing model, but still based on performance. So the higher EPC you get, the higher commissions you&#8217;ll make per click.</p>
<p>EPN publishers that have signed up since September 1st have already been using this new model. Publishers that have been around prior will be migrating to the new model starting tomorrow (Oct 1).</p>
<p>If you&#8217;re unsure of how this affects you, you need to run a Preview Report. As for me, the initial signs look quite promising, but it all depends on the quality of traffic and users you&#8217;re sending to eBay. The better quality, the better EPC. It goes beyond just what they buy. They factor on frequency, target, and history of the user to determine the quality of buyers out there.</p>
<p>Good luck everyone!</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/09/thinking-out-load-about-epn-quality-click-pricing-qcp/' rel='bookmark' title='Permanent Link: Thinking out loud about EPN Quality Click Pricing (QCP)'>Thinking out loud about EPN Quality Click Pricing (QCP)</a></li><li><a href='http://www.money-code.com/2009/08/epn-quality-click-pricing-my-thoughts/' rel='bookmark' title='Permanent Link: EPN &#8211; Quality Click Pricing (My Thoughts)'>EPN &#8211; Quality Click Pricing (My Thoughts)</a></li><li><a href='http://www.money-code.com/2009/08/ebay-partner-network-quality-click-pricing-webinar-notes/' rel='bookmark' title='Permanent Link: eBay Partner Network &#8211; Quality Click Pricing Webinar Notes'>eBay Partner Network &#8211; Quality Click Pricing Webinar Notes</a></li></ol></p>]]></content:encoded><description>If you&amp;#8217;ve been following along with the new changes at EPN (and people, you should be following along since the changes have been significant), you should know about the their new commission structure. They&amp;#8217;re moving to a Cost Per Click pricing model, but still based on performance. So the higher EPC you get, the higher [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/09/thinking-out-load-about-epn-quality-click-pricing-qcp/' rel='bookmark' title='Permanent Link: Thinking out loud about EPN Quality Click Pricing (QCP)'&gt;Thinking out loud about EPN Quality Click Pricing (QCP)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/epn-quality-click-pricing-my-thoughts/' rel='bookmark' title='Permanent Link: EPN &amp;#8211; Quality Click Pricing (My Thoughts)'&gt;EPN &amp;#8211; Quality Click Pricing (My Thoughts)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/ebay-partner-network-quality-click-pricing-webinar-notes/' rel='bookmark' title='Permanent Link: eBay Partner Network &amp;#8211; Quality Click Pricing Webinar Notes'&gt;eBay Partner Network &amp;#8211; Quality Click Pricing Webinar Notes&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/09/quality-click-pricing-qcp-starts-tomorrow-1012009/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.money-code.com/2009/09/quality-click-pricing-qcp-starts-tomorrow-1012009/</feedburner:origLink></item><item><title>If I had to start again today….</title><link>http://feedproxy.google.com/~r/Money-code/~3/awBS8Fy9xLs/</link><category>Affiliate Marketing</category><category>experience</category><category>learning</category><category>PPC</category><category>sites</category><category>tools</category><category>Twitter</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Fri, 25 Sep 2009 08:37:53 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=572</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F09%2Fif-i-had-to-start-again-today%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F09%2Fif-i-had-to-start-again-today%2F" height="61" width="51" /></a></div><p>I read &#8220;<a href="http://deneilmerritt.com/if-you-had-to-start-over-with-0-budget/" target="_blank">If You Had To Start Over With $0 Budget</a>&#8221; at <a href="http://twitter.com/deneilmerritt" target="_blank">Deneil Merritt</a>&#8217;s <a href="http://deneilmerritt.com/" target="_blank">blog</a> (great blog by the way), and it got me thinking about how I would start again. I don&#8217;t think I would start with a $0 budget, and if you&#8217;re interested in affiliate or internet marketing, you should try with a hearty effort, or don&#8217;t try at all and save yourself the misery of making $0 on your $0 budget. I think I do have some different opinions now for starting in internet or affiliate marketing.</p>
<p><strong>Start with what you know..?</strong></p>
<p>Seems like the common suggestion is to pick  a niche that you&#8217;re familiar with. It definitely makes sense, and that is definitely the direction I started a few years ago. If I was to start over now, I would through that logic out the window. I think you should start with what can earn can earn decent commissions. It&#8217;s easy to be comforted with areas of interest and feel there is a level of knowledge or expertise related there, but reality says.. it doesn&#8217;t matter. It can be helpful, it can make things easier, but not worth the lost commissions.</p>
<p>I would start with products, services and/or niches that earn and learn about them. Spend a few hours understanding categories, trends and values and grow from there. The energy and time devoted here will reward you more in the end.</p>
<p><strong>One site or many sites?</strong></p>
<p>I see this question often, and there really isn&#8217;t a &#8216;right&#8217; answer here. Is it better to have a few or one great site vs. many mediocre sites? Initially, I started with one &#8216;community&#8217; site, then started branching out from there, tweaking, waiting, tweaking, waiting, etc. If I was to do it again, I would start with my current regiment of a minimum of 2 sites per month. Either creating new &#8216;test&#8217; sites in new niches, or using the 10 degree separation with sites that are earning. All other down time is spent in blog posts, or tweaking and improving existing sites. I really believe creating new sites is the key to success to finding what you&#8217;re good at, what sites produce earnings and enhancing new traffic strategies.</p>
<p><strong>What types of sites?</strong></p>
<p>I&#8217;ve always broken down my earning sites into three basic categories. Community Sites, Store Fronts and Blogs. Each are good for different things, but it&#8217;s somewhat important to generate all three types, especially when starting out.</p>
<p>Community Sites are sites that are based on a common interest to a group of individuals. Once the site starts and grows, it will basically grow from the content provided by the community itself. Forums is a good example of a community site. These sites are great, once they go, it&#8217;s basically set-it-and-forget-it since the content is always evolving and growing without your involvement. You&#8217;ll still need to admin the site, etc. These sites are great for AdSense, product placement, etc. But the hard thing is developing a site and getting users and achieving that momentum needed for it to grow itself. Lots of time, lots of effort with very little return in the beginning.</p>
<p>Store Fronts are basically product stores utilizing product feeds. EPN sites and CJ sites using categorization is a example of store fronts. To me, these are by far the most successful. You&#8217;ll be targeting <a href="http://www.money-code.com/2008/01/readers-vs-buyers/" target="_self">buyers vs. readers </a>and conversion is much much higher. I like to promote these sites with PPC to even target better traffic than organic search traffic.</p>
<p>Blogs are blogs. You can blog about products, news, etc. I&#8217;ve always been &#8216;down&#8217; on blogs, thinking the work is to high vs. the return and they&#8217;re hard to maintain over the long haul. I&#8217;ve changed my opinion on this.</p>
<p>So, if I was to start today, I would focus on getting a network of store fronts initially, maybe start a community site, but a site that I have good confidence that I can gain interested users. I would then work on a few product oriented blogs or review blogs and associate all these types of sites with Twitter. Once I saw some earnings, I would begin light PPC campaigns on the store fronts. Then work on building more sites and diversifying across affiliate networks.</p>
<p><strong>Use Twitter?</strong></p>
<p>Wow, Twitter. This is one of the biggest things that have changed my position in affiliate marketing over the last 6 months. I would DEFINITELY get Twitter accounts for my sites if I was to start today, and I would definitely <a href="http://www.money-code.com/target/birdfeeder.php" target="_self">buy Bird Feeder</a> to grow those Twitter accounts. I cannot believe how useful Twitter is for getting consistent traffic to my product blogs or store fronts. Using <a href="http://alexking.org/projects/wordpress" target="_blank">Twitter Tools</a> in my WordPress blogs to auto-Tweet posts is a must, and using the <a href="http://tweetmeme.com/" target="_blank">TweetMeme</a> plugin for others to re-tweet posts is another fantastic way to get traffic back to your site.</p>
<p>Initially when creating new sites, I would do the normal, submission to search engines, do a few backlinks, post to a few directories, then wait. If I think it&#8217;s a hot site, I&#8217;ll fire up a PPC campaign, but overall the initial launch is slow going. Now with Twitter, I can get immediate traffic to the site, and traffic that seems to convert. Not super great like PPC traffic, but WAY better than low organic traffic or Stumble traffic.</p>
<p>Use Tools?</p>
<p>This is something I was a little behind on. For some reason, I could never justify the expense for buying tools. I&#8217;m also a web developer by day, so I always felt I could write some of these things. Now, I&#8217;m starting to value my time more. The time it would take me to write a plugin costs more than purchasing the plugin itself. The time I would be spending writing a plugin or platform, I could have spent on writing new sites, reviews, researched new niches, etc.</p>
<p>I&#8217;m a total believer of software tools now. The amount of time these tools save and the amount of work these tools accomplish throughout the day is incredible. If I was to start over again, and after getting some earnings coming in first (I like to roll my earnings back into the pot for tools, domains, etc initially). I would buy the following tools for sure:</p>
<p><a href="www.money-code.com/target/reviewazon.php" target="_blank">ReviewAZON</a> product review plugin for Amazon products<br />
<a href="http://www.money-code.com/target/wpreviews.php" target="_blank">WPReviewSite</a> Review plugin for ranking across your blog<br />
<a href="www.money-code.com/target/birdfeeder.php" target="_blank">BirdFeeder</a> awesome tool for getting targeted Twitter followers<br />
<a href="http://www.money-code.com/target/seoelite.php" target="_blank">SEO Elite</a> excellent suite of tools for determining where you rank, find backlinks, research competition, etc.<br />
<a href="http://www.money-code.com/target/bcd.php" target="_blank">Blog Comment Demon</a> excellent tool for finding WordPress blogs related to keyword search. Great way to find quality sites for potential comment backlinks</p>
<p>In conclusion, I think the most important thing is consistency when it comes to production. Make sites, keep making sites, keep improving sites, keep moving forward. The earnings will trickle and drizzle in, but it&#8217;s important to create the foundation of sites where you can always research with analytics and determine what sites work for you. The other item to pay attention to is diversification, remember to diversify across different niches, affiliate networks and sites. Things change ALL the time so you want to make sure your eggs are not all in one basket. Lastly, remember to be flexible and learn to adapt to situation. Don&#8217;t let your network crumble because of a &#8216;change&#8217; to policy or TOS, learn to take the punches and adapt with the new trend, and be &#8216;okay&#8217; with letting something go if you need to.</p>
<p>Well, I hope this was useful to someone. I really wish I could have a time machine, I would definitely do some things differently, but at the same time, the path I took gave me the experience I needed for where I&#8217;m at today.</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/09/thinking-out-load-about-epn-quality-click-pricing-qcp/' rel='bookmark' title='Permanent Link: Thinking out loud about EPN Quality Click Pricing (QCP)'>Thinking out loud about EPN Quality Click Pricing (QCP)</a></li><li><a href='http://www.money-code.com/2009/09/twitter-alliances/' rel='bookmark' title='Permanent Link: Twitter Alliances'>Twitter Alliances</a></li><li><a href='http://www.money-code.com/2009/08/take-advantage-of-automating-your-daily-tasks-with-tools/' rel='bookmark' title='Permanent Link: Take advantage of automating your daily tasks with tools'>Take advantage of automating your daily tasks with tools</a></li></ol></p>]]></content:encoded><description>I read &amp;#8220;If You Had To Start Over With $0 Budget&amp;#8221; at Deneil Merritt&amp;#8217;s blog (great blog by the way), and it got me thinking about how I would start again. I don&amp;#8217;t think I would start with a $0 budget, and if you&amp;#8217;re interested in affiliate or internet marketing, you should try with a [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/09/thinking-out-load-about-epn-quality-click-pricing-qcp/' rel='bookmark' title='Permanent Link: Thinking out loud about EPN Quality Click Pricing (QCP)'&gt;Thinking out loud about EPN Quality Click Pricing (QCP)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/09/twitter-alliances/' rel='bookmark' title='Permanent Link: Twitter Alliances'&gt;Twitter Alliances&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/take-advantage-of-automating-your-daily-tasks-with-tools/' rel='bookmark' title='Permanent Link: Take advantage of automating your daily tasks with tools'&gt;Take advantage of automating your daily tasks with tools&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/09/if-i-had-to-start-again-today/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">5</slash:comments><feedburner:origLink>http://www.money-code.com/2009/09/if-i-had-to-start-again-today/</feedburner:origLink></item><item><title>Finding BrowseNodes for Amazon API search (AWS)</title><link>http://feedproxy.google.com/~r/Money-code/~3/5PSOdl9Y1EI/</link><category>Programming</category><category>amazon</category><category>api</category><category>aws</category><category>php</category><category>reviewazon</category><category>web service</category><category>wpreviewsite</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">admin</dc:creator><pubDate>Wed, 23 Sep 2009 08:56:44 PDT</pubDate><guid isPermaLink="false">http://www.money-code.com/?p=569</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F09%2Ffinding-browsenodes-for-amazon-api-search-aws%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.money-code.com%2F2009%2F09%2Ffinding-browsenodes-for-amazon-api-search-aws%2F" height="61" width="51" /></a></div><p><img class="alignleft" title="Amazon Web Services" src="http://developer.amazonwebservices.com/connect/images/amazon/logo_aws.gif" alt="" width="164" height="60" />So, I&#8217;ve been hitting the Amazon sites real hard over the last month. With a combination of <a href="http://www.money-code.com/target/reviewazon.php" target="_blank">ReviewAZON</a>, <a href="http://www.money-code.com/target/wpreviews.php" target="_blank">WPReviewSite</a> and my own amazon store script, I&#8217;ve been picking niches and working on traffic. Today, I was looking at one of my good performing EPN store fronts, and I wanted to include Amazon products in there as well. The problem I was having was getting it targeted to the sub category. I knew the SearchIndex, but couldn&#8217;t figure out how to get the proper BrowseNode of the sub category. The solution is to do a BrowseNodeLookup call.</p>
<p>To do this, you first need to determine the main BrowseNode, basically the number related to the main category where your product is located in. To get this number, you may be able to see it in the URL, or use this matrix to get the proper BrowseNode based off of country:</p>
<p><a href="http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/index.html?BrowseNodeIDs.html" target="_blank">http://docs.amazonwebservices.com/AWSECommerceService/latest/DG/index.html?BrowseNodeIDs.html</a></p>
<p>Next, you need to query Amazon&#8217;s AWS and send this BrowseNode. You will receive a XML file containing all children related to this parent including name and BrowseNode.</p>
<p>Here is a basic function I wrote that will do a signed request for BrowseNodeLookup operation:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="kw2">function</span> find_browse_node_aws_signed_request<span class="br0">&#40;</span><span class="re0">$region</span>, <span class="re0">$params</span>, <span class="re0">$public_key</span>, <span class="re0">$private_key</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="re0">$method</span> &nbsp; &nbsp; = <span class="st0">&quot;GET&quot;</span>;<br />
&nbsp; &nbsp; <span class="re0">$host</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = <span class="st0">&quot;ecs.amazonaws.&quot;</span>.<span class="re0">$region</span>;<br />
&nbsp; &nbsp; <span class="re0">$uri</span> &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; = <span class="st0">&quot;/onca/xml&quot;</span>;<br />
&nbsp; &nbsp; <span class="re0">$params</span><span class="br0">&#91;</span><span class="st0">&quot;Service&quot;</span><span class="br0">&#93;</span> &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = <span class="st0">&quot;AWSECommerceService&quot;</span>;<br />
&nbsp; &nbsp; <span class="re0">$params</span><span class="br0">&#91;</span><span class="st0">&quot;AWSAccessKeyId&quot;</span><span class="br0">&#93;</span> &nbsp; = <span class="re0">$public_key</span>;<br />
&nbsp; &nbsp; <span class="re0">$params</span><span class="br0">&#91;</span><span class="st0">&quot;Timestamp&quot;</span><span class="br0">&#93;</span> &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; = <a href="http://www.php.net/gmdate"><span class="kw3">gmdate</span></a><span class="br0">&#40;</span><span class="st0">&quot;Y-m-d<span class="es0">\T</span>H:i:s<span class="es0">\Z</span>&quot;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="re0">$params</span><span class="br0">&#91;</span><span class="st0">&quot;Version&quot;</span><span class="br0">&#93;</span> &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = <span class="st0">&quot;2009-03-31&quot;</span>;<br />
&nbsp; &nbsp; <a href="http://www.php.net/ksort"><span class="kw3">ksort</span></a><span class="br0">&#40;</span><span class="re0">$params</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="re0">$canonicalized_query</span> = <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="kw1">foreach</span> <span class="br0">&#40;</span><span class="re0">$params</span> <span class="kw1">as</span> <span class="re0">$param</span>=&gt;<span class="re0">$value</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$param</span> &nbsp;= <a href="http://www.php.net/str_replace"><span class="kw3">str_replace</span></a><span class="br0">&#40;</span><span class="st0">&quot;%7E&quot;</span>, <span class="st0">&quot;~&quot;</span>, <a href="http://www.php.net/rawurlencode"><span class="kw3">rawurlencode</span></a><span class="br0">&#40;</span><span class="re0">$param</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$value</span> &nbsp;= <a href="http://www.php.net/str_replace"><span class="kw3">str_replace</span></a><span class="br0">&#40;</span><span class="st0">&quot;%7E&quot;</span>, <span class="st0">&quot;~&quot;</span>, <a href="http://www.php.net/rawurlencode"><span class="kw3">rawurlencode</span></a><span class="br0">&#40;</span><span class="re0">$value</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">if</span><span class="br0">&#40;</span><span class="re0">$param</span> == <span class="st0">&#8216;ItemPage&#8217;</span> &amp;amp;&amp;amp; <span class="re0">$value</span> == <span class="st0">&#8216;x&#8217;</span><span class="br0">&#41;</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$canonicalized_query</span><span class="br0">&#91;</span><span class="br0">&#93;</span> = <span class="re0">$param</span>.<span class="st0">&quot;=&quot;</span>.<span class="re0">$i</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><span class="kw1">else</span><span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$canonicalized_query</span><span class="br0">&#91;</span><span class="br0">&#93;</span> = <span class="re0">$param</span>.<span class="st0">&quot;=&quot;</span>.<span class="re0">$value</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; <span class="re0">$canonicalized_query</span> = <a href="http://www.php.net/implode"><span class="kw3">implode</span></a><span class="br0">&#40;</span><span class="st0">&quot;&amp;amp;&quot;</span>, <span class="re0">$canonicalized_query</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="re0">$string_to_sign</span> = <span class="re0">$method</span>.<span class="st0">&quot;<span class="es0">\n</span>&quot;</span>.<span class="re0">$host</span>.<span class="st0">&quot;<span class="es0">\n</span>&quot;</span>.<span class="re0">$uri</span>.<span class="st0">&quot;<span class="es0">\n</span>&quot;</span>.<span class="re0">$canonicalized_query</span>;<br />
&nbsp; &nbsp; <span class="re0">$signature</span> = <a href="http://www.php.net/base64_encode"><span class="kw3">base64_encode</span></a><span class="br0">&#40;</span>hash_hmac<span class="br0">&#40;</span><span class="st0">&#8217;sha256&#8242;</span>, <span class="re0">$string_to_sign</span>, <span class="re0">$private_key</span>, <span class="kw2">true</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="re0">$signature</span> = <a href="http://www.php.net/str_replace"><span class="kw3">str_replace</span></a><span class="br0">&#40;</span><span class="st0">&quot;%7E&quot;</span>, <span class="st0">&quot;~&quot;</span>, <a href="http://www.php.net/rawurlencode"><span class="kw3">rawurlencode</span></a><span class="br0">&#40;</span><span class="re0">$signature</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="re0">$request</span> = <span class="st0">&quot;http://&quot;</span>.<span class="re0">$host</span>.<span class="re0">$uri</span>.<span class="st0">&quot;?&quot;</span>.<span class="re0">$canonicalized_query</span>.<span class="st0">&quot;&amp;amp;Signature=&quot;</span>.<span class="re0">$signature</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$ch</span>&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = curl_init<span class="br0">&#40;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; curl_setopt<span class="br0">&#40;</span><span class="re0">$ch</span>, CURLOPT_RETURNTRANSFER, <span class="nu0">1</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; curl_setopt<span class="br0">&#40;</span><span class="re0">$ch</span>, CURLOPT_URL, <span class="re0">$request</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$response</span>&nbsp; &nbsp; &nbsp; &nbsp;= curl_exec<span class="br0">&#40;</span><span class="re0">$ch</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; curl_close<span class="br0">&#40;</span><span class="re0">$ch</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">return</span> <span class="re0">$response</span>;<br />
<span class="br0">&#125;</span></div>
<p>To call the function you would do something like this:</p>
<div class="dean_ch" style="white-space: wrap;"><span class="re0">$resp</span> &nbsp; = find_browse_node_aws_signed_request<span class="br0">&#40;</span><span class="re0">$country</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/array"><span class="kw3">array</span></a><span class="br0">&#40;</span><span class="st0">&quot;Operation&quot;</span>=&gt;<span class="st0">&quot;BrowseNodeLookup&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;Service&quot;</span>=&gt;<span class="st0">&quot;AWSECommerceService&quot;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="st0">&quot;BrowseNodeId&quot;</span>=&gt;<span class="st0">&quot;111111111&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#41;</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$pubKey</span>,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="re0">$privKey</span><span class="br0">&#41;</span>;</div>
<p>$pubKey is your Associate Key ID (not your tracking ID) and the $privKey is your Secret AWS Key ID. You can do a var_dump($resp) to see the values of the returned array of values. After retrieving the BrowseNodeID, you can search within that category by passing &#8216;BrowseNode&#8217; to your ItemSearch API call. Hope this helps!</p>


<p>Related posts:<ol><li><a href='http://www.money-code.com/2009/08/amazon-product-api-signaturedoesnotmatch-error-response/' rel='bookmark' title='Permanent Link: Amazon Product API: SignatureDoesNotMatch error response'>Amazon Product API: SignatureDoesNotMatch error response</a></li><li><a href='http://www.money-code.com/2009/08/understanding-the-amazon-product-advertising-api/' rel='bookmark' title='Permanent Link: Understanding the Amazon Product Advertising API'>Understanding the Amazon Product Advertising API</a></li><li><a href='http://www.money-code.com/2007/09/using-ebays-api-to-search-auctions-and-return-results/' rel='bookmark' title='Permanent Link: Using eBay&#8217;s API to search auctions and return results'>Using eBay&#8217;s API to search auctions and return results</a></li></ol></p>]]></content:encoded><description>So, I&amp;#8217;ve been hitting the Amazon sites real hard over the last month. With a combination of ReviewAZON, WPReviewSite and my own amazon store script, I&amp;#8217;ve been picking niches and working on traffic. Today, I was looking at one of my good performing EPN store fronts, and I wanted to include Amazon products in there [...]


Related posts:&lt;ol&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/amazon-product-api-signaturedoesnotmatch-error-response/' rel='bookmark' title='Permanent Link: Amazon Product API: SignatureDoesNotMatch error response'&gt;Amazon Product API: SignatureDoesNotMatch error response&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2009/08/understanding-the-amazon-product-advertising-api/' rel='bookmark' title='Permanent Link: Understanding the Amazon Product Advertising API'&gt;Understanding the Amazon Product Advertising API&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href='http://www.money-code.com/2007/09/using-ebays-api-to-search-auctions-and-return-results/' rel='bookmark' title='Permanent Link: Using eBay&amp;#8217;s API to search auctions and return results'&gt;Using eBay&amp;#8217;s API to search auctions and return results&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.money-code.com/2009/09/finding-browsenodes-for-amazon-api-search-aws/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.money-code.com/2009/09/finding-browsenodes-for-amazon-api-search-aws/</feedburner:origLink></item></channel></rss>
