<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>How To Rule The World</title>
	
	<link>http://www.robdogg.com/wordpress</link>
	<description>by Robdogg</description>
	<pubDate>Fri, 17 Oct 2008 06:54:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/HowToRuleTheWorld" type="application/rss+xml" /><item>
		<title>My 3 htaccess mod rewrite rewriterule rewritecondition Tricks And Tips</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/423421797/</link>
		<comments>http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 06:17:41 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/?p=123</guid>
		<description><![CDATA[What a nightmare! I have spent the past couple of days trying to figure out how to get rid of all my link problems on this site and others. The main problem is that other external sites and even my own internal linking is not universal and many times ends up with many different variations [...]]]></description>
			<content:encoded><![CDATA[<p>What a nightmare! I have spent the past couple of days trying to figure out how to get rid of all my link problems on this site and others. The main problem is that other external sites and even my own internal linking is not universal and many times ends up with many different variations for the same page. Google does not like this and neither do web visitors.</p>
<p>Image you write an article and the sub directory is http://www.mydomain.com/category/article/</p>
<p>Well, you and other website might try linking to it in the following ways</p>
<p>http://mydomain.com/category/article/<br />
http://www.mydomain.com/category/article/index.html<br />
http://www.mydomain.com/category/article<br />
http://mydomain.com/category/article</p>
<p>I recently discovered, due to googles webmaster tools, that all these different variations are actually very unique paths and many times can cause your visitors to end up on 404 error pages. I figured this out because I decided to check up on the reports in webmaster tools and I saw a little section that showed me all the pages that were resolving on 404 error pages.</p>
<p>After a quick glance of the 404 pages I realized, all these articles and pages did exist and that external websites were just linking to my pages incorrectly. I did some research and found out how to not only universalize my url system but a way to also fix other webmasters mistakes without having to knock on doors and asking them all to fix their links.</p>
<p>The answer is all in the htaccess file which uses methods like mod_rewrite and the rewriterule and rewritecondition statements. This is by far no tutoral on htaccess or mod_rewrite but just my finds of near little tricks of code that helped me universalize my urls internally and externally so visitors are never sent to 404 error pages</p>
<p>First up make sure you have the following turned on otherwise these neat little tricks will not work</p>
<p>Options +FollowSymLinks<br />
RewriteEngine On</p>
<h2><strong>Fixing Links with a missing www </strong></h2>
<p>Now lets say for example you want to ensure that www is always used in your url string, whether or not you or other webmasters remember to use it while linking to an article or page. Add the following lines to ensure your www naming convention always remains the same.</p>
<p>RewriteCond %{THE_REQUEST} ^mydomain\.com$ [NC]<br />
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [R=301,L]</p>
<p>Now I have noticed some other people use this same code but with HTTP_HOST instead of THE_REQUEST. Like I said I am no expert on this subject. but I have learned that if you use the HTTP_HOST version the url will only fix itself when linking to the home page and not sub pages. If you want your subpages to fix themselves as well then use the THE_REQUEST version</p>
<p>now if anyone types in</p>
<p>yourdomain.com<br />
yourdomain.com/article1</p>
<p>they domain will always end up at</p>
<p>www.yourdomain.com<br />
www.yourdomain.com/article1</p>
<h2><strong>Remove Trailing File Names</strong></h2>
<p>Lets say for example you use a CMS such as wordpress or drupal and you use the permalink option. If you write an article and permalinks makes the destination url www.mydomain.com/article1/ and you want to prevent accidental linling of trialing file names such as</p>
<p>www.mydomain.com/article1/index.html<br />
www.mydomain.com/article1/index.php</p>
<p>Then try adding this code</p>
<p>RewriteCond %{THE_REQUEST} \/index.php\ HTTP [NC]<br />
RewriteRule (.*)index.php$ /$1 [R=301,L]<br />
RewriteCond %{THE_REQUEST} \/index.html\ HTTP [NC]<br />
RewriteRule (.*)index.html$ /$1 [R=301,L]</p>
<p>This will remove the trailing file name on the url and redirect the visitor back to the original naming convention</p>
<h2><strong>Ensure Trialing Slashes on your url<br />
</strong></h2>
<p>How about if someone linked to that same article again, but this time forgot the last / sending their traffic to</p>
<p>www.mydomain.com/article1</p>
<p>instead of</p>
<p>www.mydomain.com/article1/</p>
<p>Try adding this code to put the forward slash back onto the end of the url string</p>
<p>RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_URI} !(.*)/$<br />
RewriteRule ^(.*)$ http://www.mydomain.com/$1/ [R=301,L]</p>
<p>A special note about this code is that its going to make sure the directory /article doesnt really exist and if it does it will not put the trailing slash on the end of the url. Also, if someone does try to access a directory that does exist it will give them a forbidden access page. This will protect all the sub files in any directories that do exist and are accidentally linked to.</p>
<h2><strong>Well Lets give all these are try now</strong></h2>
<p>This articles url is</p>
<p><a href="http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/"><span id="sample-permalink">http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/</span></a></p>
<p>Lets mess with it a bit</p>
<p>Lets forget the www<br />
<a href="http://robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/"><span id="sample-permalink">http://robdogg.com/wordpress/2008/10/16/<span id="editable-post-name" title="Click to edit this part of the permalink">my-3-htaccess-…ricks-and-tips</span><span id="editable-post-name-full">my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips</span>/</span></a></p>
<p>How about droping the trailing slash and forgetting the www<br />
<span id="sample-permalink"><a href="http://robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips">http://robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips</a><span id="editable-post-name-full"><a href="http://robdogg.com/wordpress/2008/10/16/my-3-htaccess-…ricks-and-tipsmy-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips"></a><br />
</span></span></p>
<p>How about forgetting the www and adding index.html to the end of the url<br />
<a href="http://robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/index.html"><span id="sample-permalink">http://robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/index.html</span></a></p>
<p>all these variations should all end up on my new universal naming convention</p>
<p><a href="http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/"><span id="sample-permalink">http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/</span></a></p>
<p>Well I hope if any of you are having any of my issues that this helps resolve some of them</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=KMZCM"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=KMZCM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=hWnKM"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=hWnKM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=FdfCm"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=FdfCm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=MjLzm"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=MjLzm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=WObzM"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=WObzM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=GJ09m"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=GJ09m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=pSPVM"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=pSPVM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Ogjcm"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Ogjcm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=9yYgM"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=9yYgM" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/423421797" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/10/16/my-3-htaccess-mod-rewrite-rewriterule-rewritecondition-tricks-and-tips/</feedburner:origLink></item>
		<item>
		<title>Expectations And Assumptions When It Comes To Friends, Relationships And Marriages</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/366795923/</link>
		<comments>http://www.robdogg.com/wordpress/2008/08/16/expectations-and-assumptions-when-it-comes-to-friends-relationships-and-marriages/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 21:45:31 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[Relationships]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/?p=115</guid>
		<description><![CDATA[I am by far no relationship expert, so if you’re looking to solve your relationship or marriage issue, this may not be the answers you are looking for. This is simply my ideas and thoughts about this subject of relationship matter. I am like anyone else living day to day with friends and relationships and [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">I am by far no relationship expert, so if you’re looking to solve your relationship or marriage issue, this may not be the answers you are looking for. This is simply my ideas and thoughts about this subject of relationship matter. I am like anyone else living day to day with friends and relationships and I wanted to share a though I had when it comes to expectations and assumptions within a relationship</p>
<p class="MsoNormal">I was out with a friend of mine the other day and we were having a conversation about relationships and marriages. We have both been married and have realized that marriages are highly over rated. It seems that marriages these days are just societal pressures of conformity. Why does a piece of paper that says you’re recognized as married under the state of whatever mean so much? To save on auto insurance and get a little discount on taxes? If two people enjoy each other’s company as friends and as sexual partners then why get married and ruin a good thing? If you do get married why does everything change all of a sudden? I came up with the idea that there are certain expectations and assumptions that go along with friendship, relationships and marriage.</p>
<p class="MsoNormal"><strong>Expectations</strong></p>
<p class="MsoNormal">Expectations are things we expect to happen and when they don’t we get upset or angry. To me expectations are more like agreements because I cannot expect something to happen without first planning what I expect to happen with the other person. If I do not plan what I want to happen then it becomes an assumption on my part. If I expect to meet my girlfriend at 8pm for dinner, it’s because we both agreed to meet somewhere and eat, but if my girlfriend never shows up, I will probably become upset, worried and angry, especially if there is no warning.</p>
<p><strong>Assumptions</strong></p>
<p><strong></strong>Assumptions are things I hope will happen without me having to ask for it or plan for it. Assumptions are not like agreements because they are not verbally acknowledged by the other person you are making assumptions about. Assuming leads to disappointment, confusion, and frustration because people cannot read each other’s minds and assuming something out of someone will always end bad. I think this is where many relationships, friendships and especially marriages go wrong. If I am married and I assume she will do all the cleaning then it will only lead to disappointment when I come home and the house is a mess. This is when the argument comes and usually sounds something like..</p>
<blockquote>
<p class="MsoNormal"><strong>MAN:</strong> “why is the house such a mess”?<br />
<strong>WOMAN:</strong> “Because I was out with my friends today and just got back home”<br />
<strong>MAN:</strong> “Well I expected the house to be clean when I came home, its game night! And with whom and why were you out with your friends all day?”</p></blockquote>
<p class="MsoNormal">Then the fight starts, people yell and things are said that probably shouldn’t have been said. But the issue was that the man confused an expectation with an assumption. Now had he said before he went to work…</p>
<blockquote>
<p class="MsoNormal"><strong>MAN:</strong> “Hun… Its game night and I’ll be home around 6pm, can you make sure the house is clean so we don’t look like slobs?”<br />
<strong>WOMAN: </strong>“Sure hun… I’ll do it before I go out with the girls”</p></blockquote>
<p class="MsoNormal">Now the man has an agreement and can correctly expect the house to be clean when he gets home and avoid a nasty argument. I am sure in many situations this scenario can still go wrong, but that is probably due to many months or years of expectations and assumptions. If we all started making more agreements instead of assumptions and expectations then many of us will probably have much better friendships, relationships and marriages.</p>
<p class="MsoNormal"><strong>Marriages</strong></p>
<p class="MsoNormal">Marriages are tricky because many unspoken expectations and assumptions are presented from both the man and the woman. There is a long laundry list of them which I probably do not need to mention, but the fact that you probably expect and assume things from your partner at this very moment, which has never been mutually agreed upon, probably does exist. I make mistakes in relationships all the time and I am learning something new each and every day, but as for the other day, this is my lesson learned.</p>
<p class="MsoNormal">If you have no expectation and assumptions then you cannot become disappointed, upset or angry. Only when you want something out of someone is the only time you can get hurt. I think it is vitally important to make agreements, such as loyalty, duties and roles within a relationship or marriage. Never assume someone is just going to do something, just because or due to societal expectations of your relationship.</p>
<p class="MsoNormal"><strong>Social Pressure</strong></p>
<p class="MsoNormal">Social relationship pressures come from everywhere such as friends, family, and religion. The problem is trying to live up to their expectations and assumptions. Why do we do that to ourselves? It is a mystery in itself, but in this day and age a valuable lesson is being learned and that is to be yourself and allow others to be themselves. When you are in a marriage or relationship, take it for what’s it is worth and don’t assume or expect anything out of your partner, make agreements and understand one another. <span> </span>Don’t ruin a friendship with a relationship and don’t ruin a relationship with a marriage.</p>
<p class="MsoNormal">I am not saying to never get married, but I am saying <strong><span style="text-decoration: underline;">not</span></strong> to marry someone for what they might become one day or for how they might change now that they are locked into a marriage. This will only lead to disappointment, confusion, and anger.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=KabYhK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=KabYhK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=liaN5K"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=liaN5K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=1SBGek"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=1SBGek" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=gAiDxk"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=gAiDxk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=ahk8xK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=ahk8xK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=cn0Vak"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=cn0Vak" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=OcHs4K"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=OcHs4K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=K8qPAk"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=K8qPAk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=jVtYhK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=jVtYhK" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/366795923" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/08/16/expectations-and-assumptions-when-it-comes-to-friends-relationships-and-marriages/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/08/16/expectations-and-assumptions-when-it-comes-to-friends-relationships-and-marriages/</feedburner:origLink></item>
		<item>
		<title>Back To Blogging And Revamping With A New Direction</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/356091201/</link>
		<comments>http://www.robdogg.com/wordpress/2008/08/05/back-to-blogging-and-revamping-with-a-new-direction/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 07:10:45 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[Random Thoughts]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/?p=112</guid>
		<description><![CDATA[Well its been a while but after my hosting nightmare and quitting smoking I think I am about ready to get things hoppin once again. I have had a long time to think about things and what direction I want to go in. I have recieved a lot of populartity from my digital point posts [...]]]></description>
			<content:encoded><![CDATA[<p>Well its been a while but after my hosting nightmare and quitting smoking I think I am about ready to get things hoppin once again. I have had a long time to think about things and what direction I want to go in. I have recieved a lot of populartity from my digital point posts and my adwords how to videos that were posted on this site. I have decided I want to seperate my teaching of adwords on another website. So I will do just that&#8230; I have created a brand new site directly completely at adwords campaign management and PPC internet marketing. I will continue with this blog but keep the focus on things I learn everyday that I want to share, plus random thoughts and ideas. I find myself learning something new just about every single day. There is always something new to learn, explore and discover. This is why I call it How To Rule The World, because for me, thats is what I am doing. Hopefully the things I learn can help you and others.</p>
<p>Originally this blog was created to test my ability at social media, internet networking and SEO (search engine optimization) The popularity I recieved from my how to videos has led me to leave the marketing firm I was with and start freelancing. So I am now a freelance internet marketing manager handling adwords campaigns for affiliates, businesses, arbitragers and others. I learned a lot, especially about social media, and I am sure I still have lots to learn, but I no longer need to focus on it anymore since it is not a work requirement.</p>
<p>Lets look forward to a great second half of the year&#8230;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=8J0fPK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=8J0fPK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=rtYMFK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=rtYMFK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=EFvLSk"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=EFvLSk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=rTEJuk"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=rTEJuk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=HC6QyK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=HC6QyK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=CKAY0k"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=CKAY0k" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=107O9K"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=107O9K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=BOU1xk"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=BOU1xk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=BXMBYK"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=BXMBYK" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/356091201" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/08/05/back-to-blogging-and-revamping-with-a-new-direction/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/08/05/back-to-blogging-and-revamping-with-a-new-direction/</feedburner:origLink></item>
		<item>
		<title>I Quit Smoking Not Blogging</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/257381649/</link>
		<comments>http://www.robdogg.com/wordpress/2008/03/24/i-quit-smoking-not-blogging/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 02:28:22 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[Random Thoughts]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/03/24/i-quit-smoking-not-blogging/</guid>
		<description><![CDATA[
I know everyone has been looking forward to some new tutorials on Google AdWords, but I recently quit smoking, and unfortunately I developed what is called “The Quitters Flu”. I didn’t know this would happen when I decided to commit to quitting for good. All I can say is that I feel sick, and I [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" align="center"><img src="http://www.robdogg.com/wordpress/wp-content/uploads/2008/03/smokerscartoongif.png" alt="stop smoking" /></p>
<p class="MsoNormal">I know everyone has been looking forward to some new tutorials on Google AdWords, but I recently quit smoking, and unfortunately I developed what is called “The Quitters Flu”. I didn’t know this would happen when I decided to commit to quitting for good. All I can say is that I feel sick, and I have never felt so sick in my life. I would probably never have felt this way if I just kept smoking, but I know smoking is bad and is something that should be done.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I have been smoking almost half my life. I stated when I was 14 and now I am 27. I figure, smoking for almost 50% of your entire life as to do something to you permanently. At the very least you become dependant on it. Before I decided to quit smoking I could have never pictured myself a day without a smoke.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I had a discussion the other day with a buddy of mine, and he explained to me that I work so hard at mastering my life, hence my blog motto, How To Rule The World. He said, you are mastering everything around you, but you are not mastering yourself. Why do it, just to throw it all away due to an illness or the inevitable effects of smoking.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><strong>So therefore, I QUIT and the hard way too, <u>Cold Turkey</u>.</strong></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I was good for the first 24 hours, then around 48 hours in I began to feel sick with flu like symptoms. I thought I was coming down with something, but honestly, I have not had the flu since I was probably 8 years old. I have a rock solid immune system. I can be in a room full of people with the flu and walk out of there never getting sick. So I knew something was wrong. I started researching the effects of quitting and came across a few articles that mentioned the quitter’s flu. By my 72<sup>nd</sup> hour of not smoking all I could do is lay in bed. It reminded me of that scene in the Johnny Cash film Walk The Line, where Johnny Cash was locked in his room until he is sober. I was curled up in a ball, I broke out into a cold sweat and couldn’t sleep a wink. I felt like ripping my skin off and my bones and muscles were so sore all I could do is lay there and wish it would all stop.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Well, I am feeling better, but now I have developed this insane cough. All I do is cough all the time. I just wish something would come out. I cough so hard I want to puke, but normally I don’t. I cough at random moments, in the middle of talking, eating, driving, and even while I am sleeping. Last night alone I must have woken myself up at least once every hour to cough about 100 times into my pillow. I just coughed after finishing that last sentence…</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Lastly I seem to be loosing my voice now… I can’t speak and half the time I feel like I’m yelling just to say a word. Then while I am trying to say something so hard, I end up squealing like I’m hitting puberty. It’s all really annoying, if you ask me. I hope I get over this fast.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Anyway, since all I do is cough all day long and can’t speak, I basically can’t make a video until this all ends. So for now, I will provide some other insights and thoughts via the good old text written article method.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">For those of you who are interested, here are my QUIT SMOKING stats</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><a href="http://www.quitmeter.com/Year=2008&amp;Month=2&amp;Day=15&amp;Time=5%3A00%3A00am&amp;Zone=8&amp;Cigarettes=15&amp;Periodicity=1&amp;Price=5.00&amp;Currency=%24&amp;Perpack=20&amp;Template=ELAPSED+since+quitting.+CIGARETTES+cigarettes+not+smoked.+%24SAVED+saved.&amp;backgroundcolor=%23FFFFFF&amp;textcolor=%23000000&amp;fontsize=12&amp;fontname=n022003l.pfb&amp;wrapcolumn=0&amp;antialias=16&amp;alignment=left&amp;Transparent=1/graph.png" target="_blank">Time Since Last Cigarette | Amount Saved Since Quitting</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=OImQL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=OImQL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=nrs1L"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=nrs1L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=cPgMl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=cPgMl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=4mThl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=4mThl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=dhMvL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=dhMvL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Qrtrl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Qrtrl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=2usYL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=2usYL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=pMjtl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=pMjtl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=G8cWL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=G8cWL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/257381649" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/03/24/i-quit-smoking-not-blogging/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/03/24/i-quit-smoking-not-blogging/</feedburner:origLink></item>
		<item>
		<title>Adwords Video Tutorial - Google Campaign Structuring And Keyword Clustering</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/252687347/</link>
		<comments>http://www.robdogg.com/wordpress/2008/03/16/adwords-video-tutorial-google-campaign-structuring-and-keyword-clustering/#comments</comments>
		<pubDate>Mon, 17 Mar 2008 00:28:37 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[internet marketing]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/03/16/adwords-video-tutorial-google-campaign-structuring-and-keyword-clustering/</guid>
		<description><![CDATA[
<object	type="application/x-shockwave-flash"
			data="http://www.robdogg.com/wordpress/swf/kclustering.swf"
			width="550"
			height="450">
	<param name="movie" value="http://www.robdogg.com/wordpress/swf/kclustering.swf" />
</object>
&#160;
In this video I go over how to cluster your adgroup keywords for maximum efficiency.  I have recently reviewed several Google Adwords accounts from online forum members that are having problems, and I noticed that many people are grouping their keywords improperly. Many are just bunching up large grouping of [...]]]></description>
			<content:encoded><![CDATA[<p align="center">
<object	type="application/x-shockwave-flash"
			data="http://www.robdogg.com/wordpress/swf/kclustering.swf"
			width="550"
			height="450">
	<param name="movie" value="http://www.robdogg.com/wordpress/swf/kclustering.swf" />
</object>
<p align="center">&nbsp;</p>
<p>In this video I go over how to cluster your adgroup keywords for maximum efficiency.  I have recently reviewed several Google Adwords accounts from online forum members that are having problems, and I noticed that many people are grouping their keywords improperly. Many are just bunching up large grouping of keywords into one large adgroup and thinking everything is going to be OK. This method is highly inefficient and will result in much higher average CPC prices.</p>
<p>I decided to pick out a random industry and show the process of keyword research, which is finding keywords related to a specific industry. I then show an extraction method on how to get those keywords off the internet and into your Google Adwords account. I go into detail on how to use excel to extract properly clustered keyword groupings and then how to upload those keywords into your Adwords account using Google Adwords Editor.</p>
<p>Please leave your comments, questions and suggestions.</p>
<p>Thanks everybody!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=PS9ZL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=PS9ZL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=nemmL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=nemmL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=JXRWl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=JXRWl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=g1NVl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=g1NVl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=dqGBL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=dqGBL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=K8F7l"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=K8F7l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=vuzhL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=vuzhL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=xOrql"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=xOrql" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=oxiWL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=oxiWL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/252687347" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/03/16/adwords-video-tutorial-google-campaign-structuring-and-keyword-clustering/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/03/16/adwords-video-tutorial-google-campaign-structuring-and-keyword-clustering/</feedburner:origLink></item>
		<item>
		<title>Video Tutorial Basic Guide To Google Adwords Editor</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/248629910/</link>
		<comments>http://www.robdogg.com/wordpress/2008/03/09/video-tutorial-basic-guide-to-google-adwords-editor/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 02:56:37 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[internet marketing]]></category>

		<category><![CDATA[adwords editor]]></category>

		<category><![CDATA[campaign management]]></category>

		<category><![CDATA[google adwords]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/03/09/video-tutorial-basic-guide-to-google-adwords-editor/</guid>
		<description><![CDATA[
<object	type="application/x-shockwave-flash"
			data="http://www.robdogg.com/wordpress/swf/adwordseditorbasics.swf"
			width="550"
			height="450">
	<param name="movie" value="http://www.robdogg.com/wordpress/swf/adwordseditorbasics.swf" />
</object>
Many people have been managing their Google Adwords campaign portfolios the old hard way. Using the web interface to manage a Google campaign is very slow and time consuming. I decided to do a little Adwords editor beginners guide for you so that you can see how easy it is to [...]]]></description>
			<content:encoded><![CDATA[<p align="center">
<object	type="application/x-shockwave-flash"
			data="http://www.robdogg.com/wordpress/swf/adwordseditorbasics.swf"
			width="550"
			height="450">
	<param name="movie" value="http://www.robdogg.com/wordpress/swf/adwordseditorbasics.swf" />
</object>
<p class="MsoNormal"><span style="line-height: 115%">Many people have been managing their Google Adwords campaign portfolios the old hard way. Using the web interface to manage a Google campaign is very slow and time consuming. I decided to do a little Adwords editor beginners guide for you so that you can see how easy it is to setup and manage your campaigns with this software.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">The video tutorial is a little over 15 minutes long, but if you have no knowledge of Google Adwords editor then this tutorial will explain a lot. This is only a guide to the basics and I will go into more advanced stuff in the near future. If you have any questions on anything that is done in this video please let me know. Post a comment or drop me an email at <a href="mailto:tutorials@robdogg.com">tutorials@robdogg.com</a><o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%"><o:p> </o:p></span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=g9cwL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=g9cwL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=WlgFL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=WlgFL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=a4uOl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=a4uOl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=xuG2l"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=xuG2l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=CJCBL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=CJCBL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=PsEcl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=PsEcl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=f5VGL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=f5VGL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Xzn6l"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Xzn6l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=WG0UL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=WG0UL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/248629910" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/03/09/video-tutorial-basic-guide-to-google-adwords-editor/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/03/09/video-tutorial-basic-guide-to-google-adwords-editor/</feedburner:origLink></item>
		<item>
		<title>Google Adwords Training Video - Account Overview and Campaign Settings</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/248173986/</link>
		<comments>http://www.robdogg.com/wordpress/2008/03/08/google-adwords-training-video-account-overview-and-campaign-settings/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 04:00:16 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[internet marketing]]></category>

		<category><![CDATA[adwords help]]></category>

		<category><![CDATA[adwords training video]]></category>

		<category><![CDATA[google adwords]]></category>

		<category><![CDATA[google adwords help]]></category>

		<category><![CDATA[online marketing]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/03/08/google-adwords-training-video-account-overview-and-campaign-settings/</guid>
		<description><![CDATA[
<object	type="application/x-shockwave-flash"
			data="http://www.robdogg.com/wordpress/swf/insidegoogle1.swf"
			width="550"
			height="450">
	<param name="movie" value="http://www.robdogg.com/wordpress/swf/insidegoogle1.swf" />
</object>
I have received a lot of questions about how Google Adwords works, so I put together this video on the basics of an account and campaign settings. The video is a little long, running about 23 minutes, but the information is well worth watching. I will post some more videos in [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" align="center">
<object	type="application/x-shockwave-flash"
			data="http://www.robdogg.com/wordpress/swf/insidegoogle1.swf"
			width="550"
			height="450">
	<param name="movie" value="http://www.robdogg.com/wordpress/swf/insidegoogle1.swf" />
</object>
<p class="MsoNormal"><span style="line-height: 115%">I have received a lot of questions about how Google Adwords works, so I put together this video on the basics of an account and campaign settings. The video is a little long, running about 23 minutes, but the information is well worth watching. I will post some more videos in the near future with more in depth details and explanations, but this video covers some of the basics. I mostly cover the campaign settings and the overview screens in a Google account so you can get the idea of where everything is at. <o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">Here is are some main points of interest<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-left: 0.5in"><span style="line-height: 115%">Account Summary Page<br />
Campaign Overview Page<br />
Campaign Settings<br />
Campaign Budgeting<br />
Ad Scheduling<br />
Ad Rotation Settings<br />
Search Network Settings<br />
Content Network Settings<br />
Language Settings<br />
Geo Targeting<br />
<!--[if !supportLineBreakNewLine]--><br />
<!--[endif]--><o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">Now that I am getting the hang of this Camtasia studio software, I will start including many more videos and how to videos for the Google Adwords system. Next up I will go into detail and explain the Google Adwords Editor program and explain where everything is at.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">I hope you find this information useful and helpful. If you have any questions please send them on over to me, or post a comment. I will also try to incorporate your questions in my upcoming training videos.<o:p></o:p></span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Yk2iL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Yk2iL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=NdhrL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=NdhrL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=p8STl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=p8STl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=xtiQl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=xtiQl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=k3EHL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=k3EHL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Lo42l"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Lo42l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=GFQXL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=GFQXL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=GUrnl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=GUrnl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=YqctL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=YqctL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/248173986" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/03/08/google-adwords-training-video-account-overview-and-campaign-settings/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/03/08/google-adwords-training-video-account-overview-and-campaign-settings/</feedburner:origLink></item>
		<item>
		<title>Internet Marketing What To Think About Before Building A Keyword Portfolio</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/245242878/</link>
		<comments>http://www.robdogg.com/wordpress/2008/03/03/internet-marketing-what-to-think-about-before-building-a-keyword-portfolio/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 03:14:06 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[internet marketing]]></category>

		<category><![CDATA[campaign management]]></category>

		<category><![CDATA[google adwords]]></category>

		<category><![CDATA[keyword development]]></category>

		<category><![CDATA[keyword portfolio]]></category>

		<category><![CDATA[keyword relevancy]]></category>

		<category><![CDATA[online marketing]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/03/03/internet-marketing-what-to-think-about-before-building-a-keyword-portfolio/</guid>
		<description><![CDATA[Google Adwords displays your ads based on the keywords you place inside your campaigns, and Adgroups, therefore making keyword selection very important. It is so important that it can determine the success or failure of your online marketing effort. It becomes challenging because we have to try and think outside the box when deciding on [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="line-height: 115%">Google Adwords displays your ads based on the keywords you place inside your campaigns, and Adgroups, therefore making <strong><span style="color: red">keyword selection very important</span></strong>. It is so important that it can determine the success or failure of your online marketing effort. It becomes challenging because we have to try and think outside the box when deciding on keywords, and try to pick keywords that people on the internet will be searching for when they want to buy something. Relevancy is also highly important when deciding on your keywords. We do not want to randomly pick keywords just for the sake of exposure. The power of internet marketing comes with the fact that we can <strong><span style="color: red">pick highly targeted keywords,</span></strong> and make a relation between keyword, product and sales cycle.</span></p>
<p class="MsoNormal" align="center"><img src="http://www.robdogg.com/wordpress/wp-content/uploads/2008/03/61056391_31343afdc6.jpg" alt="money" /></p>
<p class="MsoNormal"><span style="line-height: 115%">Most internet <strong><span style="color: red">searching is primarily done for research and education</span></strong>, in this process of the buying phase the conversion ratio is extremely low, therefore we want to ensure a good balance of exposure in the research phase, and with the sales purchasing phase.<o:p></o:p></span></p>
<p class="MsoNormal" style="margin-left: 0.5in"><span style="line-height: 115%">Example, assume we were looking for a new bike tire. You go to Google and search for “<strong>bike tire</strong>”. You visit some sites but then you realize that is too broad of a search, so you search for “<strong>BMX tire</strong>”. After looking at some sites you find that you want a “<strong>Michelin Mambo BMX</strong>” Tire, so you search for that, find the tire you wanted at a good price and make the purchase. <o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">That entire string of searches was used in the <strong><span style="color: red">research and purchasing phase</span></strong> for a new bike tire. You want exposure at all levels, since level 1 and level 2 of the research phase is mostly branding, market exposure and familiarity. Once the internet user has gone through this phase of research, they will make the commitment to make a purchase on a highly defined and targeted keyword. If you allowed yourself the right amount of exposure, you may very well have familiarized yourself with the user so much, that when the purchase is made, it’s done from your site on the final keyword search phase.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">Take into account this will make some keywords look like they are highly profitable, with a high click through ratio and conversion ratio, making you want to eliminate those broader terms and just focus on those long tails. <strong><span style="color: red">An even balance of all keywords</span></strong> and a commutative cost per acquisition will help keep this in line.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">When choosing your portfolio of keywords also remember to try and think as those that are searching for something on the internet. What is the relationship between keyword and product? If you sold antivirus software, would you use the keyword <strong>virus</strong> in your keyword portfolio? What about using the keyword, <strong>computer protection</strong>, or <strong>internet security</strong>? Is there a relationship between keyword and product? How about including the keyword <strong>computer</strong> or <strong>internet</strong>? Remember Google rewards for relevancy.<o:p></o:p></span></p>
<p class="MsoNormal"><strong><span style="line-height: 115%; color: red">Thinking outside the box</span></strong><span style="line-height: 115%"> can be very challenging because we know and understand our product in depth and many times we become simple minded or single sided. We know what it does, and what it doesn’t do. The problem is that we don’t really know how others will perceive your product and how they will associate it with what they are attempting to search for.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%">In the next articles, I will explain <strong><span style="color: red">how to develop your keyword portfolios</span></strong>, how to do keyword research, how to estimate bids, and how to predict the volume of searches done per month for your keywords.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="line-height: 115%"><o:p> </o:p></span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=PqROL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=PqROL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=zI4AL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=zI4AL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=WuS1l"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=WuS1l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=xJIBl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=xJIBl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=EiwUL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=EiwUL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=DrSVl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=DrSVl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=IBcXL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=IBcXL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=LP7pl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=LP7pl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=xACnL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=xACnL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/245242878" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/03/03/internet-marketing-what-to-think-about-before-building-a-keyword-portfolio/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/03/03/internet-marketing-what-to-think-about-before-building-a-keyword-portfolio/</feedburner:origLink></item>
		<item>
		<title>Internet Marketing Google Adgroup Settings And Attributes</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/242470819/</link>
		<comments>http://www.robdogg.com/wordpress/2008/02/27/internet-marketing-google-adgroup-settings-and-attributes/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 03:13:38 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[internet marketing]]></category>

		<category><![CDATA[adgroups]]></category>

		<category><![CDATA[google adwords]]></category>

		<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/02/27/internet-marketing-google-adgroup-settings-and-attributes/</guid>
		<description><![CDATA[Adgroup setup is really simple since there are no special parameters or tricks. What I will explain here are just industry best practices. If we look within AdWords editor for the adgroup setting you will notice that there are only 4 options, Name, Status, Max CPC bid, Max Content CPC bid.
 

 
 
Adgroup Name [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Adgroup setup is really simple since there are no special parameters or tricks. What I will explain here are just <font color="#ff0000"><strong>industry best practices.</strong></font> If we look within AdWords editor for the adgroup setting you will notice that there are only 4 options, Name, Status, Max CPC bid, Max Content CPC bid.</p>
<p class="MsoNormal" align="center"><o:p> </o:p><img src="http://www.robdogg.com/wordpress/wp-content/uploads/2008/02/adgroup-pic.PNG" alt="adgroup pic" /><o:p><br />
</o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><strong><o:p> </o:p></strong></p>
<p class="MsoNormal"><strong>Adgroup Name</strong> – I like to name my adgroups based on structuring from the previous article. <strong><a href="http://www.robdogg.com/wordpress/2008/02/26/internet-marketing-google-adgroups-logical-setup-strategies/" title="Internet Marketing Google Adgroups Logical Setup Strategies">Internet Marketing Google Adgroups Logical Setup Strategies</a></strong>. Then I like to add the match type to the end of the name so I know what is contained. Example: “<strong>Ipod Touch – Exact</strong>” and “<strong>Ipod Touch – Broad</strong>”.</p>
<p class="MsoNormal"><strong>Status</strong> – The adgroup status can only has 3 options, Active, Deleted and Paused. Since this is self explanatory I won’t go any further</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><strong>Max CPC Bid</strong> – This field is where you set you default CPC bid. I always set it to $0.10. This is because I <font color="#ff0000"><strong>do all bidding at the keyword level.</strong></font> Since I most likely will have anywhere from 2 keywords – 1,000 keywords within an adgroup, the one pricing fits all does not work. I set it to $0.10 just in case I forget to bid on one of the keywords within the adgroup, if this happens it will default to a very low and safe bid.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><strong>Maximum CPC Content Bid – </strong>I am not sure why this option was even created, but it was placed there to separate content bids from search bids. <strong><font color="#ff0000">Best practices tells us that we should separate content completely from search</font></strong> and place it within it’s own campaign, so in my scenario’s I will never have to separate search and content bids. Also when content is separated within it own campaign, the Maximum CPC Bid can be used, thus eliminating the need for Maximum CPC Content Bids.</p>
<p class="MsoNormal"><o:p></o:p><strong>When you are all done, you should have something that looks like this</strong></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p style="text-align: center"><img src="http://www.robdogg.com/wordpress/wp-content/uploads/2008/02/adgroup-2-pic.PNG" alt="adgroup 2 pic" /></p>
<p align="center">&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=H055L"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=H055L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=dDGnL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=dDGnL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=42hdl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=42hdl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=RuVLl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=RuVLl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=BOtGL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=BOtGL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=isnSl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=isnSl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=DAsqL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=DAsqL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=4bCsl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=4bCsl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Y25FL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Y25FL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/242470819" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/02/27/internet-marketing-google-adgroup-settings-and-attributes/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/02/27/internet-marketing-google-adgroup-settings-and-attributes/</feedburner:origLink></item>
		<item>
		<title>Internet Marketing Google Adgroups Logical Setup Strategies</title>
		<link>http://feeds.feedburner.com/~r/HowToRuleTheWorld/~3/241843598/</link>
		<comments>http://www.robdogg.com/wordpress/2008/02/26/internet-marketing-google-adgroups-logical-setup-strategies/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 02:44:06 +0000</pubDate>
		<dc:creator>Robdogg</dc:creator>
		
		<category><![CDATA[PPC Marketing]]></category>

		<category><![CDATA[internet marketing]]></category>

		<category><![CDATA[adgroup strategy]]></category>

		<category><![CDATA[adgroups]]></category>

		<category><![CDATA[adwords]]></category>

		<category><![CDATA[campaign strategy]]></category>

		<category><![CDATA[google adwords]]></category>

		<guid isPermaLink="false">http://www.robdogg.com/wordpress/2008/02/26/internet-marketing-google-adgroups-logical-setup-strategies/</guid>
		<description><![CDATA[The idea behind adgroups is to group keywords around the idea of a specific marketing message. When you consider your adgrouping structure, don’t base it on the keywords, base it on the marketing message instead. Google only allows for 100 adgroups per campaign, and since we are limited on the amount of adgroups we can [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">The idea behind adgroups is to group keywords around the idea of a <strong><span style="color: red">specific marketing message.</span></strong> When you consider your adgrouping structure, don’t base it on the keywords, base it on the marketing message instead. Google only allows for 100 adgroups per campaign, and since we are limited on the amount of adgroups we can not have the option of 1 keyword per adgroup. At many times, my campaigns will contain anywhere from 1k – 10k keywords so you can see that model will not work. Successful management of these keywords requires a logically, pre-thought grouping strategy. Listed here are some of the most common methods of adgrouping that will allow you to have greater control over your marketing.</p>
<p class="MsoNormal">&nbsp;</p>
<p style="text-align: center"><img src="http://www.robdogg.com/wordpress/wp-content/uploads/2008/02/adgroup-logics.jpg" alt="adgroup logics" /></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Product Grouping</strong> – This type of Ad grouping is based around the product keywords. In this method you plan on <strong><span style="color: red">creating ads that specifically target one product.</span></strong> This will allow you to create highly targeted creative that could include specific product pricing and promotional messaging.</p>
<p class="MsoNormal" style="margin-left: 0.5in"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Service Grouping</strong> – This type of Ad grouping is based around the <strong><span style="color: red">specific services your company or products offer</span></strong>. Promotional messaging would include how the grouping of keywords solve or fix a specific problem.</p>
<p class="MsoNormal" style="margin-left: 0.5in"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>One To One Grouping</strong> – Some high volume keywords may require complete separation due to volume of impressions and clicks. When this happens you want to make sure that keyword performs at its best. <strong><span style="color: red">Singling it out to its own adgroup is called one to one.</span></strong> Now you can make sure no other keywords affect it’s performance, and you can really target its messaging and controlled multivariate testing to increase performance.</p>
<p class="MsoNormal" style="margin-left: 0.5in"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Call To Action Grouping</strong> – this type of ad grouping is specifically targeting to keywords that contain a call to action. <strong><span style="color: red">Buy, Sell, Purchase, Download, and etc are call to actions.</span></strong> You’re telling your visitor to do something, and many times they are searching for the call to action, meaning they are ready to do what you want them to.</p>
<p class="MsoNormal" style="margin-left: 0.5in"><o:p> </o:p></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Promotional Grouping</strong> – this type of ad grouping is targeted to some sort of discounted promotional messaging. <strong><span style="color: red">Cheap, discounted, wholesale, liquidation and etc are all promotional messages.</span></strong> The visitor wants something for less or a greatly discounted price.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">This covers the most commons ways to setup your adgroups. Adgrouping is not rocket science, but it helps to be prepared, and set things up logically in advance. It will help create more <strong><span style="color: red">highly targeted promotional messaging</span></strong>, and allow for greater control for optimization.</p>
<p class="MsoNormal"><o:p></o:p>I will pick a product that draws my attention on shopping.com and give you some examples of keyword adgrouping</p>
<p class="MsoNormal"><o:p></o:p>And the product is…</p>
<p class="MsoNormal"><o:p></o:p>The <strong>Apple Ipod Touch<o:p></o:p></strong></p>
<p class="MsoNormal"><o:p></o:p>Now let’s write out a few examples to get a clearer perspective.</p>
<p class="MsoNormal" style="margin-left: 0.5in"><o:p> </o:p><br />
<strong>Product Grouping<o:p></o:p></strong></p>
<p class="MsoNormal" style="margin-left: 0.5in"><o:p></o:p>apple touch<br />
apple ipod touch<o:p></o:p><br />
ipod touch<o:p></o:p><br />
apple 8 gig touch<o:p></o:p><br />
apple ipod 8 gig touch<o:p></o:p><br />
ipod 8 gig touch</p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Service Grouping<o:p></o:p></strong></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong><o:p></o:p></strong>apple touch mp3<o:p></o:p><br />
apple ipod touch mp3<o:p></o:p><br />
ipod touch mp3<o:p></o:p><br />
apple 8 gig touch mp3<o:p></o:p><br />
apple ipod 8 gig touch mp3<o:p></o:p><br />
ipod 8 gig touch mp3<o:p></o:p><br />
apple touch mp3 player<o:p></o:p><br />
apple ipod touch mp3 player<o:p></o:p><br />
ipod touch mp3 player<o:p></o:p><br />
apple 8 gig touch mp3 player<o:p></o:p><br />
apple ipod 8 gig touch mp3 player<o:p></o:p><br />
ipod 8 gig touch mp3 player<o:p></o:p><br />
apple touch music player<o:p></o:p><br />
apple ipod touch music player<o:p></o:p><br />
ipod touch music player<o:p></o:p><br />
apple 8 gig touch music player<o:p></o:p><br />
apple ipod 8 gig touch music player<o:p></o:p><br />
ipod 8 gig touch music player</p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Call To Action Grouping<o:p></o:p></strong></p>
<p class="MsoNormal" style="margin-left: 0.5in">buy apple touch<o:p></o:p><br />
buy apple ipod touch<o:p></o:p><br />
buy ipod touch<o:p></o:p><br />
buy apple 8 gig touch<o:p></o:p><br />
buy apple ipod 8 gig touch<o:p></o:p><br />
buy ipod 8 gig touch<o:p></o:p><br />
purchase apple touch<o:p></o:p><br />
purchase apple ipod touch<o:p></o:p><br />
purchase ipod touch<o:p></o:p><br />
purchase apple 8 gig touch<o:p></o:p><br />
purchase apple ipod 8 gig touch<o:p></o:p><br />
purchase ipod 8 gig touch<o:p></o:p><br />
sell apple touch<o:p></o:p><br />
sell apple ipod touch<o:p></o:p><br />
sell ipod touch<o:p></o:p><br />
sell apple 8 gig touch<o:p></o:p><br />
sell apple ipod 8 gig touch<o:p></o:p><br />
sell ipod 8 gig touch<br />
<o:p> </o:p></p>
<p class="MsoNormal" style="margin-left: 0.5in"><strong>Promotional Grouping<o:p></o:p></strong></p>
<p class="MsoNormal" style="margin-left: 0.5in">sale apple touch<o:p></o:p><br />
discount apple touch<o:p></o:p><br />
cheap apple touch<o:p></o:p><br />
sale apple ipod touch<o:p></o:p><br />
discount apple ipod touch<o:p></o:p><br />
cheap apple ipod touch<o:p></o:p><br />
sale ipod touch<o:p></o:p><br />
discount ipod touch<o:p></o:p><br />
cheap ipod touch<o:p></o:p><br />
sale apple 8 gig touch<o:p></o:p><br />
discount apple 8 gig touch<o:p></o:p><br />
cheap apple 8 gig touch<o:p></o:p><br />
sale apple ipod 8 gig touch<o:p></o:p><br />
discount apple ipod 8 gig touch<o:p></o:p><br />
cheap apple ipod 8 gig touch<o:p></o:p><br />
sale ipod 8 gig touch<o:p></o:p><br />
discount ipod 8 gig touch<o:p></o:p><br />
cheap ipod 8 gig touch</p>
<p class="MsoNormal"><o:p> </o:p><br />
As you might be able to see, since the keywords are in line with each other writing a highly targeted promotional message will be a lot easier, and Google will most likely give you a better quality score due to <strong><span style="color: red">higher keyword and text ad relevance. <o:p></o:p></span></strong></p>
<p class="MsoNormal"><strong><span style="color: red"><o:p></o:p></span></strong>In my next article I will cover all the attributes of an adgroup, what they mean and how to use them like a pro.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=1iRHL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=1iRHL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=eupuL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=eupuL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=7pkKl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=7pkKl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=EXYql"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=EXYql" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=DvitL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=DvitL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=1LUrl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=1LUrl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=71dhL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=71dhL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=Ax9dl"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=Ax9dl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/HowToRuleTheWorld?a=P4lkL"><img src="http://feeds.feedburner.com/~f/HowToRuleTheWorld?i=P4lkL" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/HowToRuleTheWorld/~4/241843598" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.robdogg.com/wordpress/2008/02/26/internet-marketing-google-adgroups-logical-setup-strategies/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.robdogg.com/wordpress/2008/02/26/internet-marketing-google-adgroups-logical-setup-strategies/</feedburner:origLink></item>
	</channel>
</rss>
