<?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>Glenn Burks Network Marketing Blog &#187; SEO</title>
	<atom:link href="http://www.network-marketing-works.com/blog/category/seo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.network-marketing-works.com/blog</link>
	<description>With thousands of network marketing blogs on the internet today, why read mine? If you&#039;re looking for a unique perspective without the hype and spin so common...</description>
	<lastBuildDate>Fri, 05 Mar 2010 20:08:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Modifying The Wordpress Thesis Themes Custom Categories Further</title>
		<link>http://www.network-marketing-works.com/blog/modifying-the-wordpress-thesis-themes-custom-categories-further-1639/</link>
		<comments>http://www.network-marketing-works.com/blog/modifying-the-wordpress-thesis-themes-custom-categories-further-1639/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 21:10:20 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/blog/?p=1639</guid>
		<description><![CDATA[
			
				
			
		
Most Blogging software creates categories, yet most people want to change the text that appears at the top from the ugly &#8220;From The Category Archives&#8221; to something different.
The Wordpress Thesis Theme is no different and in my research I found there are a few different ways to accomplish this.
I started looking into accomplishing this after [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fmodifying-the-wordpress-thesis-themes-custom-categories-further-1639%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fmodifying-the-wordpress-thesis-themes-custom-categories-further-1639%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Most Blogging software creates categories, yet most people want to change the text that appears at the top from the ugly &#8220;From The Category Archives&#8221; to something different.</p>
<p>The <a href="http://www.glennburks.com/category/tags/wordpress" class="kblinker" title="More about wordpress &raquo;">Wordpress</a> Thesis Theme is no different and in my research I found there are a few different ways to accomplish this.</p>
<p>I started looking into accomplishing this after modifying one of my <a href="http://www.glennburks.com/category/tags/drupal" class="kblinker" title="More about drupal &raquo;">Drupal</a> sites in a similar manner.</p>
<p>I found, Rae Hoffman&#8217;s site Sugarrae.com in my research and she had already outlined what needed to be done. Yet, in the examples I found the SEO issue I&#8217;ve always seen with database driven sites.</p>
<p>Below is the custom code that Rae had come up with, and it does work great. Yet, like anyone who likes to tinker I had to make a few modifications for better SEO purposes.</p>
<pre class="brush:php">/* Custom Categories */
function custom_archive_info() {
if (is_category('apples')) {
?>
<div class="post_box top intro_block">
<div class="headline_area">
<h1>< ?php single_cat_title(); ?></h1>
</div>
<div class="format_text">

YOUR CUSTOM APPLES TEXT HERE
</div>
</div>

< ?php
}
elseif (is_category('oranges')) {
?>
<div class="post_box top intro_block">
<div class="headline_area">
<h1>< ?php single_cat_title(); ?></h1>
</div>
<div class="format_text">

YOUR CUSTOM ORANGES TEXT HERE
</div>
</div>

< ?php
}
else
thesis_default_archive_info();
}
remove_action('thesis_hook_archive_info', 'thesis_default_archive_info');
add_action('thesis_hook_archive_info', 'custom_archive_info');</pre>
<p>What I found was that once you went to page two of any of your categories, you ended up with the same body of text that appeared on the main category page.</p>
<p>By changing the code to this:</p>
</pre>
<pre class="brush:php">if (is_category('insert-your-category-here') &#038;&#038; !is_paged())</pre>
<p>It eliminated the text from being displayed on page two, three, etc&#8230;</p>
<p>&#8230; But then it reverted back to the original ugly &#8220;From The Category Archive:&#8221; By adding this to the code:</p>
<pre class="brush:php">elseif (is_category() &#038;&#038; is_paged()) {
?>
<div class="post_box top intro_block">
<div class="headline_area">
<div class="format_text">

< ?php _e('Even More Great Posts on:', 'thesis'); ?>
</div>
<h1>< ?php single_cat_title(); ?></h1>
<p class="description">


<hr />
</div>
</div>

< ?php
}</pre>
<p>I was able to easily change what was displayed on page 2, 3 etc... Now instead of displaying "From the category archive:" I set mine to "Even More Great Posts On:"&nbsp; While still not perfect it gets me a little closer to what I'd really like to see for the categories.</pre>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=1639&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/modifying-the-wordpress-thesis-themes-custom-categories-further-1639/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decrease Your Network Marketing Landing Page Load Time</title>
		<link>http://www.network-marketing-works.com/blog/decrease-your-network-marketing-landing-page-load-time-151/</link>
		<comments>http://www.network-marketing-works.com/blog/decrease-your-network-marketing-landing-page-load-time-151/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 00:38:44 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/nmwblog/?p=151</guid>
		<description><![CDATA[
			
				
			
		
As websites become more sophisticated, bloat becomes a major problem, yet there are many cures that we can implement to take care of this problem.
Graphics, css files, javascript all add up to make your landing pages load slower and slower. so what is the answer to finding these offending files and why would you want [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fdecrease-your-network-marketing-landing-page-load-time-151%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fdecrease-your-network-marketing-landing-page-load-time-151%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>As websites become more sophisticated, bloat becomes a major problem, yet there are many cures that we can implement to take care of this problem.</p>
<p>Graphics, css files, javascript all add up to make your landing pages load slower and slower. so what is the answer to finding these offending files and why would you want to track them down in the first place?</p>
<p>Back in March, I wrote a post about how <a href="http://www.network-marketing-works.com/blog/landing-page-load-times-will-soon-cost-you-84/">landing page load times</a> where going to begin take more money out of your pocket. What was the driving force behind these changes? Today I believe these changes that they implemented really had to do more with not only giving the visitor better load times resulting in better user experience.</p>
<p>This action would also reduce the overall energy consumption for everyone involved. It is amazing what can be accomplished and seeing the differences a few simple modifications can make.</p>
<p>The Yahoo Developers Group really has helped in this respect with their <a rel="nofollow" href="http://developer.yahoo.com/performance/rules.html" target="_blank">Best Practices For Speeding Up Your Web Site.</a> Now to really make this effective you must have the <a rel="nofollow" href="http://www.mozilla.com/en-US/firefox/">Firefox Web browser</a> in order to get started.</p>
<p>With the Firefox web browser we have access to a wide range of plugins, covering just about everything imaginable to make your web browsing better.</p>
<p>What we are concerned with are the plugins that will help us to reduce the load times for our <a href="http://www.network-marketing-works.com/whatisit.htm" class="kblinker" title="More about network marketing &raquo;">network marketing</a> landing pages.</p>
<p>The plugin we want is called <a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addon/5369" target="_blank">Yslow</a>, what it does is analyzes your web pages and tells you why they&#8217;re slow based on Yahoo&#8217;s rules for high performance web sites. Now this is exactly what we want.</p>
<p>Yahoo! has 13 basic <strong>&#8220;rules&#8221;</strong> of <strong>&#8220;front end performance&#8221;</strong> and there is even a book <strong>&#8220;High Performance Web Sites&#8221;</strong> over at <a rel="nofollow" href="http://oreilly.com/catalog/9780596529307/" target="_blank">Oreilly.com</a> which discusses each of the 13 rules below.</p>
<ol>
<li>Make Fewer HTTP Requests</li>
<li>Use a Content Delivery Network</li>
<li>Add an Expires Header</li>
<li>Gzip Components</li>
<li>Put CSS at the Top</li>
<li>Move Scripts to the Bottom</li>
<li>Avoid CSS Expressions</li>
<li>Make JavaScript and CSS External</li>
<li>Reduce DNS Lookups</li>
<li>Minify JavaScript</li>
<li>Avoid Redirects</li>
<li>Remove Duplicate Scripts</li>
<li>Configure ETags</li>
</ol>
<p>It should be noted that the majority of these 13 steps maybe beyound the skills of most network marketers. But running Yslow will tell you what is wrong and what you need to do in order to correct it.</p>
<p>After applying many of these rules here, the score for <a href="http://www.network-marketing-works.com" target="_blank">Network-Marketing-Works.com </a>is now a &#8220;A&#8221; or 90. The Blog on the other hand ranks in there at 87 for a &#8220;B&#8221; rating, the drop comes from the Calendar plugin and it&#8217;s javascript not being gzipped.</p>
<p>Yet I really don&#8217;t think your going to have a calendar on your landing page!</p>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=151&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/decrease-your-network-marketing-landing-page-load-time-151/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who Do You Link Your Network Marketing Site To?</title>
		<link>http://www.network-marketing-works.com/blog/who-do-you-link-your-network-marketing-site-to-144/</link>
		<comments>http://www.network-marketing-works.com/blog/who-do-you-link-your-network-marketing-site-to-144/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 01:56:50 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/nmwblog/?p=144</guid>
		<description><![CDATA[
			
				
			
		
There are many factors that go into Search Engine Optimization (SEO) but where should you get the most relevant information from?
The one answer I&#8217;ve always used is follow what the search engines tell you to do. You can&#8217;t go wrong when you follow their advice. One of the things they caution about is linking to [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fwho-do-you-link-your-network-marketing-site-to-144%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fwho-do-you-link-your-network-marketing-site-to-144%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>There are many factors that go into Search Engine Optimization (SEO) but where should you get the most relevant information from?</p>
<p>The one answer I&#8217;ve always used is follow what the search engines tell you to do. You can&#8217;t go wrong when you follow their advice. One of the things they caution about is linking to link farms.</p>
<p>Over the past few days we&#8217;ve been getting requests for a link from a site jeffpaulreview . com when you look at the site where they would place your link you can realize that it truly is a link farm.</p>
<p>They indicated they&#8217;ve put a link to us in the internet marketing category, well that kind of makes sense in away since we are in <a href="http://www.network-marketing-works.com/whatisit.htm" class="kblinker" title="More about network marketing &raquo;">network marketing</a> and do have a strong web presence.</p>
<p>Yet within that page they also include links to so many things that are not even related, for example</p>
<ul>
<li>Baby Shower Gifts</li>
<li>Software Development</li>
<li>Dubia Real Estate</li>
<li>PBX Phone System</li>
<li>Real Estate Investment</li>
<li>Cat Furniture, Cat Trees, Cat Condos, Cat Gyms</li>
<li>Celtic Engagement Rings</li>
</ul>
<p>Now what do any of those have to do with Internet Marketing? You&#8217;re right absolutely nothing yet these links are mixed in with dozens of other links that are relevant to the subject.</p>
<p>This is exactly what the search engines tell you not to do, yet many new web masters will fall into the trap just because it&#8217;s a link to their site. They will wonder for years why the can never be found.</p>
<p>When you really think about it what we are looking for is focus, just like we should be with our respective network marketing businesses. The tighter the focus the better off we&#8217;ll all be.</p>
<p>Over the past couple of years there has been a shift to try to game the system by taking shortcuts. If you know how to do your research and most don&#8217;t you&#8217;ll find out that what many guru&#8217;s are telling you to do will not work.</p>
<p>I was reading a page just the other day about how a guy got his hub page to #1 on google for a specific term. Well that is all well in good if your only competing against a couple hundred thousand pages and you do a specific search for it.</p>
<p>Over the years there has only been a few sources of information that I&#8217;ve come to trust, with the majority of the information not being earth shattering. Still every once in awhile along comes a golden nugget that solves a problem you may not have even known you had yet alone how to look for it and solve it.</p>
<p>So if your a new blogger, have your own web site really take a look at the sites your linking to from your network marketing site.</p>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=144&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/who-do-you-link-your-network-marketing-site-to-144/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Sabotage Your Network Marketing Web Site!</title>
		<link>http://www.network-marketing-works.com/blog/how-to-sabotage-your-network-marketing-web-site-95/</link>
		<comments>http://www.network-marketing-works.com/blog/how-to-sabotage-your-network-marketing-web-site-95/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 17:31:58 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/nmwblog/2008/03/26/how-to-sabotage-your-network-marketing-web-site/</guid>
		<description><![CDATA[
			
				
			
		
Now why would you want to do that you ask? Yet it happens everyday by unsuspecting network marketers. Most if not all offer links off to other companies and or services we think are appropriate, that are related to our web sites theme.
And those whose services we are linking to are really thanking you not [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fhow-to-sabotage-your-network-marketing-web-site-95%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fhow-to-sabotage-your-network-marketing-web-site-95%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Now why would you want to do that you ask? Yet it happens everyday by unsuspecting network marketers. Most if not all offer links off to other <a href="http://www.network-marketing-works.com/company-reviews/" class="kblinker" title="More about companies &raquo;">companies</a> and or services we think are appropriate, that are related to our web sites theme.</p>
<p>And those whose services we are linking to are really thanking you not only for the traffic but also the naivety that you display in your website marketing.</p>
<p>So why is this important? Well for starters your already bringing the <a href="http://www.network-marketing-works.com/recommended-company.htm" class="kblinker" title="More about company &raquo;">company</a> new business, but did you also know that your helping them to out rank you in the search engines.</p>
<p>This essentially cuts you out of the potential profit you could have made and they do this all on your hard work and creativity.</p>
<p>Why is it that most if not all affiliate type programs rank so well? It&#8217;s because of the way they setup the program, so that each link you provide to them ranks them higher while pushing you further down in the rankings for your search term.</p>
<p>So how can you stop this bleeding from your sites? If your going to link to any affiliate or any other program do it from an internal page and use the &#8220;nofollow&#8221; tag in your links.</p>
<p>You can do a search and find a wealth of information on this attribute in linking on sites like wikipedia, google, yahoo etc&#8230;</p>
<p>Sending traffic to a site for a sale should be your goal in marketing, but helping them cut you out of the picture should not be!</p>
<p>So get busy and stop sabotaging your <a href="http://www.network-marketing-works.com/whatisit.htm" class="kblinker" title="More about network marketing &raquo;">network marketing</a> web sites! After all it&#8217;s your business and only you can make the changes!</p>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=95&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/how-to-sabotage-your-network-marketing-web-site-95/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top Websites in Our Industry</title>
		<link>http://www.network-marketing-works.com/blog/top-websites-in-our-industry-77/</link>
		<comments>http://www.network-marketing-works.com/blog/top-websites-in-our-industry-77/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 20:42:18 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/nmwblog/2008/03/01/top-websites-in-our-industry/</guid>
		<description><![CDATA[
			
				
			
		
If you take a look at the top web sites in any search most of them, you will find are very customized and original both in content and look.
One of the top web sites in our industry is a free web site so this clearly blows that theory right out of the water that you [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Ftop-websites-in-our-industry-77%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Ftop-websites-in-our-industry-77%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>If you take a look at the top web sites in any search most of them, you will find are very customized and original both in content and look.</p>
<p>One of the top web sites in our industry is a free web site so this clearly blows that theory right out of the water that you need a professional service.</p>
<p>Now the question is why is this site in the top ten? It’s because search engines really don’t care if it’s free or costs ten’s of thousands of dollars. What they look for is original and relevant content.</p>
<p>Today we have so many out there just throwing content with no real though, anything to build pages etc&#8230; That&#8217;s what the guru’s are telling you to do, How do you know it’s true.”</p>
<p>They become so focused on this because every guru out there tells you this is what you have to do. Of course, their selling you the <a href="http://www.network-marketing-works.com/network_marketing_tools.htm" class="kblinker" title="More about tool &raquo;">tools</a> you’re going to need to be successful and oh by the way it’s going to take 4 to 5 years.</p>
<p>How many of us would like to have a customer for 4 to 5 years? I’m sure that answer is all of us.</p>
<p>Why is it that, there are so many in <a href="http://www.network-marketing-works.com/whatisit.htm" class="kblinker" title="More about network marketing &raquo;">network marketing</a> that have risen to large six figure incomes within network marketing without even having a web site?</p>
<p>They have all learned what this business is all about, connecting and relating to people. The internet is an extension of that, one small piece of the puzzle not the answer to our dreams.</p>
<p><a rel="nofollow" href="http://www.leadersclub.com/26761/">Leadersclub</a> has always taught a balanced approach. When you can take your <a href="http://www.network-marketing-works.com/networkmarketinglead.htm">leads</a> “those that qualified” and get 50% or higher to a follow up call and are closing them, then and only then does it make sense to spend a fortune on marketing.</p>
<p>In the latest <a rel="nofollow" href="http://www.leadersclub.com/26761/html/newsletter.asp">Marketing Power newsletter</a> “Will Google’s New Rules Put an End to the Cookie Cutter Ad Systems?” Well the same applies to web sites in general as well!</p>
<p>I’ve often been asked the question who do I trust when it comes to information about the internet! The answer is myself, and that should by yourself as well. If you have any doubts about anything, you really need to think it through before you act on any advice you’re given.</p>
<p>And always keep this in mind, anytime you try to manipulate the system your playing with someone&#8217;s baby.</p>
<p>Yes that’s right someone’s baby. If they even think your trying to manipulate their system, they will find a way to not only stop it but stop you forever when it comes to a search.</p>
<p>The rage a few years ago and it’s still out there today was the three way linking. Trying to beat the system again.</p>
<p>Excessive article writing, with poorly written content all designed to manipulate the system. I watched one of the top trainers in our business do this several years ago and it did not make one bit of difference. And yes he was following the advice of the internet marketing guru’s.</p>
<p>Everyone want’s more sales, but no one is willing to pay price. We all want to beat the system but in the end it’s the system that will beat us.</p>
<p>Build your business with balance, each part has a place and knowing when and how to put them together is so important.</p>
<p>If your not working leads and learning to deal with the rejection and the no’s you’ll never become successful! You’ll get the same effect from the leads you generate as well, don’t believe the hype and myths out there base everything on what you know to be true!</p>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=77&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/top-websites-in-our-industry-77/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blocking Websites From Harvesting Your data!</title>
		<link>http://www.network-marketing-works.com/blog/blocking-websites-from-harvesting-your-data-71/</link>
		<comments>http://www.network-marketing-works.com/blog/blocking-websites-from-harvesting-your-data-71/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 06:46:42 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/nmwblog/2008/02/23/blocking-websites-from-harvesting-your-data/</guid>
		<description><![CDATA[
			
				
			
		
If your in network marketing or just about any company out there you had better be on guard.
Do you look at your log files from your web site? If not you should start. You probably will not like what you find.
What you’ll find over time is company tools like the one from sitesell that harvests [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fblocking-websites-from-harvesting-your-data-71%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fblocking-websites-from-harvesting-your-data-71%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>If your in <a href="http://www.network-marketing-works.com/whatisit.htm" class="kblinker" title="More about network marketing &raquo;">network marketing</a> or just about any <a href="http://www.network-marketing-works.com/recommended-company.htm" class="kblinker" title="More about company &raquo;">company</a> out there you had better be on guard.</p>
<p>Do you look at your log files from your web site? If not you should start. You probably will not like what you find.</p>
<p>What you’ll find over time is company <a href="http://www.network-marketing-works.com/network_marketing_tools.htm" class="kblinker" title="More about tool &raquo;">tools</a> like the one from sitesell that harvests and analyzes your web site.</p>
<p>While you may not need this in the beginning you will need it as you achieve a ranking to where your site is analyzed multiple times a day.</p>
<p>Your probably asking why be concerned about it? Well for one it’s really a theft of your bandwidth that you are paying for!</p>
<p>So how do you prevent this theft it’s quite simple if your web host will allow you to place a  .htaccess file in your root directory.</p>
<p>This is the example to block sitesell’s brainstorm software: “Note &#8211; nothing against Ken but I cannot have 10 to 15 people a day analyzing dozens of pages on my site’s”</p>
<p>RewriteEngine on<br />
# Options +FollowSymlinks<br />
RewriteCond %{HTTP_REFERER} sitesell\.com [NC,OR]<br />
RewriteCond %{HTTP_REFERER} brainstorm2.sitesell\.com<br />
RewriteRule .* &#8211; [F]</p>
<p>To learn more about .htaccess files here are a few good.</p>
<p><a rel="nofollow" href="http://httpd.apache.org/docs/1.3/howto/htaccess.html">http://httpd.apache.org/docs/1.3/howto/htaccess.html</a></p>
<p><a rel="nofollow" href="http://www.javascriptkit.com/howto/htaccess.shtml">http://www.javascriptkit.com/howto/htaccess.shtml</a></p>
<p>After you’ve applied the .htaccess files the visitors you are blocking will recieve a forbidden message when they try to access your pages.</p>
<p>Another popular use is to prevent the hot-linking to your graphics, I’ve found my graphics hot linked in places like ebay.</p>
<p>I don’t know about you but hey the bandwidth I’m paying for is for my visitors not someone else’s. It’s almost like pulling up out front and siphoning the gas out of your car.</p>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=71&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/blocking-websites-from-harvesting-your-data-71/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abuse at WikiPedia</title>
		<link>http://www.network-marketing-works.com/blog/abuse-at-wikipedia-122/</link>
		<comments>http://www.network-marketing-works.com/blog/abuse-at-wikipedia-122/#comments</comments>
		<pubDate>Sun, 17 Feb 2008 17:49:00 +0000</pubDate>
		<dc:creator>Glenn Burks</dc:creator>
				<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.network-marketing-works.com/nmwblog/2008/02/17/abuse-at-wikipedia/</guid>
		<description><![CDATA[
			
				
			
		
It’s clearly evident that Wikipedia has a lot of trust with the search engines when it comes to the ranking of the site and pages within all the major search engines.
Yet, Wikipedia is chock full of disinformation! They know it, and hopefully you do as well. Anytime you can rewrite history in your personal view [...]]]></description>
			<content:encoded><![CDATA[<p></p><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fabuse-at-wikipedia-122%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.network-marketing-works.com%2Fblog%2Fabuse-at-wikipedia-122%2F&amp;source=nwkmktworks&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>It’s clearly evident that Wikipedia has a lot of trust with the search engines when it comes to the ranking of the site and pages within all the major search engines.</p>
<p>Yet, Wikipedia is chock full of disinformation! They know it, and hopefully you do as well. Anytime you can rewrite history in your personal view it will be tainted.</p>
<p>Today we have website owners using this popular web site to increase their rankings as well as having them seen as credible sources in this industry.  “Note Wikipedia does place nofollow tags on their out going links, but do all of the search engines follow this?”</p>
<p>Here is a link to a site that details just how to go about doing just this.</p>
<p><a rel="nofollow" href="http://www.socialseo.com/5-effective-seo-uses-of-wikipedia.html">5 Effective SEO Uses Of Wikipedia</a></p>
<p>What is really frustrating as a network marketer is, the information on Multi-level marketing / <a href="http://www.network-marketing-works.com/whatisit.htm" class="kblinker" title="More about network marketing &raquo;">Network marketing</a> is written in a negative light with information that has been repeated tirelessly again and again by the same few people.</p>
<p>The one question that comes to my mind is just how long Google and Wikipedia will all this to continue.</p>
<p>Is it time for network marketers, unite and complain to both <a href="http://www.network-marketing-works.com/company-reviews/" class="kblinker" title="More about companies &raquo;">companies</a> to have the site’s external links removed from their pages.</p>
<p>With a few million networkers, a day complaining to the search engines about irrelevant information being found in their index when it comes to Wikipedia they just might remove it.</p>
<img src="http://www.network-marketing-works.com/blog/?ak_action=api_record_view&id=122&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.network-marketing-works.com/blog/abuse-at-wikipedia-122/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
