<?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>Cory Sessions Blog</title>
	<atom:link href="http://www.corysessions.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.corysessions.com</link>
	<description>Developer &#124; SEO &#124; Professional Slacker</description>
	<lastBuildDate>Mon, 14 Jun 2010 14:32:12 +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>Drupal Installation: 500 Internal Server Errors</title>
		<link>http://www.corysessions.com/dev/drupal/drupal-installation-500-internal-server-errors/</link>
		<comments>http://www.corysessions.com/dev/drupal/drupal-installation-500-internal-server-errors/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 17:51:21 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=120</guid>
		<description><![CDATA[During the installation of Drupal, it&#8217;s quite common to hit &#8220;500 Internal Server Error&#8221;s.

Looking at your sites error logs generally will reveal a couple errors:
.htaccess: order not allowed here
and/or
.htaccess: DirectoryIndex not allowed here
What you&#8217;re hitting here are collisions between your apache configuration and the directives that are in the Drupal .htaccess file.  The default site [...]]]></description>
			<content:encoded><![CDATA[<p>During the installation of Drupal, it&#8217;s quite common to hit &#8220;500 Internal Server Error&#8221;s.</p>
<p><img class="alignnone size-full wp-image-121" title="Drupal - Error 500 Internal Server Error" src="http://www.corysessions.com/wp-content/uploads/2010/04/drupal-500-server-error.jpg" alt="" width="673" height="225" /></p>
<p>Looking at your sites error logs generally will reveal a couple errors:</p>
<p>.htaccess: order not allowed here</p>
<p>and/or</p>
<p>.htaccess: DirectoryIndex not allowed here</p>
<p>What you&#8217;re hitting here are collisions between your apache configuration and the directives that are in the Drupal .htaccess file.  The default site folder options for Apache are fairly restrictive.  These are the settings in the main httpd.conf, and are the default options for every site running on your server.</p>
<p style="text-align: left;"><img class="alignnone size-full wp-image-122" title="Apache Default AllowOverride and Options Config Settings." src="http://www.corysessions.com/wp-content/uploads/2010/04/apache-default-folder-config-options.jpg" alt="" width="540" height="179" /></p>
<p>I wouldn&#8217;t recommend changing this setting at the global level.  It is best to make the changes in the VirtualHost configuration for the site, so only that site is affected.</p>
<p>The simplest method would be these settings:</p>
<p>&lt;Directory &#8220;/path/to/your/webroot&#8221;&gt;<br />
AllowOverride All<br />
Options FollowSymLinks<br />
&lt;/Directory&gt;</p>
<p><strong>AllowOverride</strong></p>
<p>AllowOverride tells Apache which settings a .htaccess file is allowed to change.</p>
<p><em>Druapl AllowOverride Settings:</em></p>
<p>All &#8211; This basically says, let the .htaccess file change anything.  And it&#8217;s the easiest way to get up and going.</p>
<p>Limit &#8211; Allows Drupal to change the Order Allow/Deny settings.</p>
<p>Indexes &#8211; Allows Drupal to change the &#8220;Options&#8221; to -Indexes</p>
<p><strong>Options</strong></p>
<p>Options sets the initial Apache options, which can then be modified by any AllowOverride settings.  Ideally you can set this to what Druapl wants to begin with, then remove the other lines that are making the changes from the .htaccess file.</p>
<p><em>Drupal Options Settings:</em></p>
<p>These are the settings Drupal is actually trying to get too.</p>
<p>Options -Indexes</p>
<p>Options +FollowSymLinks</p>
<p><strong>Other Related Errors</strong></p>
<p>FileInfo allows the changes for ErrorDocument. Not having this option causes the error:  .htaccess: ErrorDocument not allowed here.</p>
<p>DirectoryIndex allows Drupal to set DirectoryIndex, the default file handler.  Not having this option causes the error: .htaccess: DirectoryIndex not allowed here.</p>
<p>Not quite sure what config setting is causing this error, but it happens when the .htaccess tries to change PHP settings, which causes the error:  .htaccess: php_value not allowed here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/dev/drupal/drupal-installation-500-internal-server-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posting to Your Blog from Google Docs</title>
		<link>http://www.corysessions.com/wordpress/posting-to-your-blog-from-google-docs/</link>
		<comments>http://www.corysessions.com/wordpress/posting-to-your-blog-from-google-docs/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 01:17:04 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/uncategorized/90/</guid>
		<description><![CDATA[So, it turns out you can use Google Docs to write and post to your blog.  And it&#8217;s pretty dang easy!  Now, I did run into some limitations (as I mention below) but this is a great way to publish Google Docs information to your blog.
To test it, this post was done completely from Google [...]]]></description>
			<content:encoded><![CDATA[<p>So, it turns out you can use Google Docs to write and post to your blog.  And it&#8217;s pretty dang easy!  Now, I did run into some limitations (as I mention below) but this is a great way to publish Google Docs information to your blog.</p>
<p>To test it, this post was done completely from Google Docs.</p>
<p><strong>How to Set It Up</strong></p>
<p>Just fire up a Google Doc and type some stuff up.</p>
<p>When you&#8217;re ready to publish, go to the &#8220;Share&#8221; button in the upper right area of the screen and select &#8220;Publish as web page&#8230;&#8221;.</p>
<p>The screen that pops up lets you share your document with other Google Docs users (the upper half) and also lets you publish to a blog (the lower half).</p>
<p><em>The settings:</em></p>
<p>If you&#8217;re using Wordpress, the API for Blogger.com and Movable Type API both work fine.  Although Google says the Movable Type API will work better, so use that.</p>
<p>Then just enter the login information for your blog and the path to your xmlrpc.php file.  That is usually just  http://www.myblog.com/xmlrpc.php</p>
<p>Google will remember the settings, so the next document you create can easily be published to your blog too.  No clue how well this would work if you were trying to manage multiple blogs with Google Docs.</p>
<p><strong>Things That Worked Well:</strong></p>
<p>Updating: Once you have published your post, if you want to push out the latest changes from the Doc to your blog, you have to go back and click &#8220;Republish Post&#8221; on the &#8220;Publish this Document&#8221; screen.  The process worked smooth.</p>
<p>Formatting:  Different formatting like <strong>bold</strong>, <em>italics</em>, <span style="text-decoration: underline;">underline</span>, <span style="color: #6aa84f;">colors</span>, <a id="ua9l" title="links" href="http://www.corysessions.com/">links</a>, tables and images all work.  (How images work is explained more below.)</p>
<p><strong>Glitches and Weird Stuff: </strong></p>
<p>So I ran into a couple things while playing with this:</p>
<p>Images: The Google Docs image you see at the top of this post was inserted into the my Google Doc.  Publishing the post just created a link to that image on Google Docs.  So the image isn&#8217;t actually hosted on my blog.  So what happens after you delete your doc?  I tested it, the image link was still good.  Wonder if it will always work&#8230;</p>
<p>Categorizing Posts: An interesting note about categories.  I guess Google Docs can automatically add your post to a category too.  It does that by using &#8220;Tags&#8221; (folders?).  I couldn&#8217;t find where to tag the document and using the same folder as a category name didn&#8217;t do anything.  So my post ended up as &#8220;Uncategorized&#8221;.  Boo.</p>
<p>Titles: My post didn&#8217;t get a title.  Which would seem to be a major drawback.</p>
<p>Updating:  I wish you could make it auto update your blog when you saved the document.</p>
<p>Extra Formating Code:  I checked the code that Google Docs added to this post.  No where near as bad as what Word would do, but it had a <code> </code></p>
<p>around each line.  The post initially displayed just fine on my blog.  But after going in to add a title and a category, the process of saving the post messed up that formatting.   Wordpress is notorious for not liking divs.  So I had to go in and clean them all out to make everything display correctly again.</p>
<p><strong>Conclusion:</strong></p>
<p>So, kinda a cool feature.  If you&#8217;re way into Google Docs it might be a nice way to do occasional posts or a quick way to push a document to a blog.   But there are just to many things that don&#8217;t quite work right and pretty much kill the idea of managing your blog from Google Docs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/wordpress/posting-to-your-blog-from-google-docs/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>jQuery Error: $ is not a function</title>
		<link>http://www.corysessions.com/dev/jquery/jquery-error-is-not-a-function/</link>
		<comments>http://www.corysessions.com/dev/jquery/jquery-error-is-not-a-function/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:58:56 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=85</guid>
		<description><![CDATA[This is a fun little jQuery error you&#8217;ll hit sometimes when you are trying to integrate jQuery into an already established system like Wordpress or Drupal, that is already using a Javascript library like prototype.  The problem is that you are hitting conflicts between the two libraries.  And most likely they are fighting over the [...]]]></description>
			<content:encoded><![CDATA[<p>This is a fun little jQuery error you&#8217;ll hit sometimes when you are trying to integrate jQuery into an already established system like Wordpress or Drupal, that is already using a Javascript library like prototype.  The problem is that you are hitting conflicts between the two libraries.  And most likely they are fighting over the $ .</p>
<p>Luckily, jQuery is prepared to handle this!  Good&#8217;ol jQuery.</p>
<p>jQuery has a &#8220;noConflict&#8221; mode, that will let all the jQuery content to run without using the $.  You just state that you are running in noConflict mode in your first line, then instead of using $(function(){&#8230;}, you replace the $ with jQuery, so it looks like this: jQuery(function(){&#8230;.</p>
<p>Here&#8217;s a full example.</p>
<p>&lt;script&gt;</p>
<p>jQuery.noConflict(); // Tell jQuery you are going with noConflict mode.</p>
<p>jQuery(function(){ // Replace the $ with jQuery<br />
jQuery(&#8216;div&#8217;).doStuff();<br />
});</p>
<p>&lt;/script&gt;</p>
<p>This will allow the other library to use the $ without conflict.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/dev/jquery/jquery-error-is-not-a-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Wordpress White Screen of Death!</title>
		<link>http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/</link>
		<comments>http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 21:18:24 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=81</guid>
		<description><![CDATA[So there you are, happily updating your blog theme and BAM!
The Wordpress whitescreen of death!
The Wordpress white screen indicates that there is a problem with your current theme.  Unfortunately at this point, you can&#8217;t go change the theme to unbreak it, since the theme selector is just going to spit out PHP errors.  See the [...]]]></description>
			<content:encoded><![CDATA[<p>So there you are, happily updating your blog theme and BAM!</p>
<p>The Wordpress whitescreen of death!</p>
<p>The Wordpress white screen indicates that there is a problem with your current theme.  Unfortunately at this point, you can&#8217;t go change the theme to unbreak it, since the theme selector is just going to spit out PHP errors.  See the problem is, the database still has entries pointed to the &#8220;current&#8221; theme, which is either bugged, incomplete or gone.</p>
<p>Here are the symptoms:</p>
<ul>
<li>All Wordpress pages, posts, tags etc. bring up a blank white screen.</li>
<li>There is no code or html output.</li>
<li>The Wordpress Admin area still works. (which is a good thing).</li>
<li>The Wordpress theme selector (Appearance -&gt; Themes) page won&#8217;t load and spits out PHP errors.</li>
</ul>
<p>What to look for:</p>
<p>Check to make sure your theme files are still in place.  Deleting the current themes directory, renaming the theme directory or moving the current themes directory to a new location will all cause this error.</p>
<p>If files were moved or deleted, the best thing to do is to just put things back where they were, switch to another theme, then do your changes or removal of the old theme.</p>
<p>If that&#8217;s not possible, you can go manually change the current active theme in the database.  The current template data is stored in the &#8216;options&#8217; table, option_name &#8220;template&#8221;.  Just change it to the folder name of another theme.  It&#8217;s not pretty, but it works and will get you back up and running.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/wordpress/the-wordpress-white-screen-of-death/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official Wedding Announcement</title>
		<link>http://www.corysessions.com/personal/official-wedding-announcement/</link>
		<comments>http://www.corysessions.com/personal/official-wedding-announcement/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 05:18:40 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=54</guid>
		<description><![CDATA[Well it&#8217;s official, I be getting married!  Wohoo!
Here&#8217;s the &#8220;official&#8221; announcement.
Together with their families
Danielle Gugeler
&#38;
Cory Sessions
would like to announce their marriage on
Wednesday, the 8th of July in Nauvoo, Illinois.
There will be a reception on July 7, 2009 from 6pm to 8pm
at the LDS chapel in Mt. Vernon.
380 Lincoln Highway, Mt. Vernon, Iowa 52314
There will be [...]]]></description>
			<content:encoded><![CDATA[<p>Well it&#8217;s official, I be getting married!  Wohoo!</p>
<p>Here&#8217;s the &#8220;official&#8221; announcement.<span id="more-54"></span></p>
<p style="text-align: center;">Together with their families</p>
<p style="text-align: center;">Danielle Gugeler<br />
&amp;<br />
Cory Sessions</p>
<p style="text-align: center;">would like to announce their marriage on<br />
Wednesday, the 8th of July in Nauvoo, Illinois.</p>
<p style="text-align: center;">There will be a reception on July 7, 2009 from 6pm to 8pm<br />
at the LDS chapel in Mt. Vernon.<br />
380 Lincoln Highway, Mt. Vernon, Iowa 52314</p>
<p style="text-align: center;">There will be an open house with the new couple July 31, 2009 from 6pm to 8pm<br />
at the LDS chapel at 965 W 2000 N, Orem, UT 84057.<br />
This will be a barbecue, so come hungry!</p>
<p style="text-align: center;">
<p style="text-align: center;"><a title="Dani and Cory" rel="lightbox" href="http://www.corysessions.com/images/wedding-1.jpg"><img class="alignnone size-thumbnail wp-image-57" title="Wedding Photo 1" src="http://www.corysessions.com/wp-content/uploads/2009/06/0036-150x150.jpg" alt="Wedding Photo 1" width="150" height="150" /></a> <a title="The Proposal?" rel="lightbox" href="http://www.corysessions.com/images/wedding-2.jpg"><img class="alignnone size-thumbnail wp-image-60" title="Wedding Photo 2" src="http://www.corysessions.com/wp-content/uploads/2009/06/0130-150x150.jpg" alt="Wedding Photo 2" width="150" height="150" /></a> <a title="Cory and Dani" rel="lightbox" href="http://www.corysessions.com/images/wedding-3.jpg"><img class="alignnone size-thumbnail wp-image-62" title="Wedding Photo 3" src="http://www.corysessions.com/wp-content/uploads/2009/06/0150-150x150.jpg" alt="Wedding Photo 3" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/personal/official-wedding-announcement/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Loooooooong Break</title>
		<link>http://www.corysessions.com/personal/loooooooong-break/</link>
		<comments>http://www.corysessions.com/personal/loooooooong-break/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 17:40:50 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=46</guid>
		<description><![CDATA[Wow, I have not posted in quite a while.  I&#8217;ve been spending a LOT of time working on my own personal side projects.  Building sites and working on promoting them.  Fun stuff!
Now that I have a little group of growing sites, it&#8217;s been interesting to see the results.
Some sites seem to just [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, I have not posted in quite a while.  I&#8217;ve been spending a LOT of time working on my own personal side projects.  Building sites and working on promoting them.  Fun stuff!</p>
<p>Now that I have a little group of growing sites, it&#8217;s been interesting to see the results.</p>
<p><span id="more-46"></span>Some sites seem to just take off.  Getting rankings and traffic is pretty easy with them.  Other sites take a while before they go anywhere, then they start moving at a moderate pace.  Then there seems to be sites that for all you do they just won&#8217;t go anywhere and you&#8217;re stuck with just a couple hundred visitors a month.</p>
<p>Internet marketing and SEO is a rather interesting thing.  You can talk about it and read about it all day long, but staying at that academic level really won&#8217;t help you learn it.  When you dive in and start building sites and driving traffic to them then you really start learning how things work.  You start to see patterns emerging and you get those &#8220;A Ha!&#8221; moments.  You find out what works and what doesn&#8217;t.</p>
<p>So, time to go build another site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/personal/loooooooong-break/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Strange Blizzard Splash Screen Image</title>
		<link>http://www.corysessions.com/personal/random/strange-blizzard-splash-screen-image/</link>
		<comments>http://www.corysessions.com/personal/random/strange-blizzard-splash-screen-image/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 16:59:46 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=41</guid>
		<description><![CDATA[So Blizzard Entertainment has some new &#8220;super amazing something&#8221;(tm) that they are going to announce.  So in true Blizzard style they are keeping everyone in suspense, with a splash screen that has been slowly showing &#8220;something&#8221; locked behind a sheet of ice.
Today you can see a pair of glowing eyes.

If you&#8217;re a code nerd, you [...]]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://www.blizzard.com/">Blizzard Entertainment</a> has some new &#8220;super amazing something&#8221;(tm) that they are going to announce.  So in true Blizzard style they are keeping everyone in suspense, with a <a href="http://www.blizzard.com/us/splash.html">splash screen</a> that has been slowly showing &#8220;something&#8221; locked behind a sheet of ice.</p>
<p>Today you can see a pair of glowing eyes.<span id="more-41"></span></p>
<p><a href="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-splash-screen.jpg"><img class="alignnone size-medium wp-image-42" style="vertical-align: middle;" title="Blizzard Splash Screen" src="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-splash-screen-300x229.jpg" alt="" width="495" height="376" /></a></p>
<p>If you&#8217;re a code nerd, you can go look at the .css file.  If you do you&#8217;ll see several lines are commented out.  If you piece those images back together, you get a picture of &#8230; something.  No clue what that is supposed to be.</p>
<p><a href="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-css-image.jpg"><img class="alignnone size-medium wp-image-43" title="Blizzard Splash Screen CSS Image" src="http://www.corysessions.com/wp-content/uploads/2008/06/blizzard-css-image-255x300.jpg" alt="" width="500" height="587" /></a></p>
<p>I have a strange feeling that the image from the css has nothing to do with whatever they plan on announcing&#8230;  most likely it&#8217;s a Blizzard joke.</p>
<p><strong>Update: </strong></p>
<p>Well, it turns out that all this was for Diablo 3!   While I have no idea how the above images are related to the Diablo games in any way&#8230; It&#8217;s still cool!  Time for some hack and slash!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/personal/random/strange-blizzard-splash-screen-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Minority Rules</title>
		<link>http://www.corysessions.com/personal/rants/how-minority-rules/</link>
		<comments>http://www.corysessions.com/personal/rants/how-minority-rules/#comments</comments>
		<pubDate>Wed, 21 May 2008 16:53:02 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=40</guid>
		<description><![CDATA[I now know why Democracy fails.  I learned this at work. Bare with me, this is a stupid example, but so fitting.
There are 9 of us in our office.  7 of us would prefer to have the lights off.  2 people want them on and blindingly bright.  So in true democratic fashion, the lights stay [...]]]></description>
			<content:encoded><![CDATA[<p>I now know why Democracy fails.  I learned this at work. Bare with me, this is a stupid example, but so fitting.</p>
<p>There are 9 of us in our office.  7 of us would prefer to have the lights off.  2 people want them on and blindingly bright.  So in true democratic fashion, the lights stay on all day as the majority are forced to capitulate to the loudly voiced demands of the minority.</p>
<p>Apparently in a Democracy all you have to do is yell and complain louder than anyone else and you get your way.  And that is how minority rules.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/personal/rants/how-minority-rules/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My PPC Crash Course</title>
		<link>http://www.corysessions.com/internet-marketing/ppc/my-ppc-crash-course/</link>
		<comments>http://www.corysessions.com/internet-marketing/ppc/my-ppc-crash-course/#comments</comments>
		<pubDate>Fri, 02 May 2008 04:54:14 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[PPC]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=39</guid>
		<description><![CDATA[Today was like PPC overload.
Our company had a PPC training today, which interestingly, all the SEO guys attended  (I think we are all secretly jealous cause they get instant traffic).  It was really really good.  I picked up a lot of things I didn&#8217;t know about PPC.   I have been running PPC ads on a [...]]]></description>
			<content:encoded><![CDATA[<p>Today was like PPC overload.</p>
<p>Our company had a PPC training today, which interestingly, all the SEO guys attended  (I think we are all secretly jealous cause they get instant traffic).  It was really really good.  I picked up a lot of things I didn&#8217;t know about PPC.   I have been running PPC ads on a personal project for a while now, but today showed me that I really didn&#8217;t know what I was doing.<span id="more-39"></span></p>
<p>Later Jared, one of the PPC managers, sat down with me and went though my account.  He was very polite and didn&#8217;t openly mock me, to much.  It pretty much came down to: you should delete that campaign and start over.  I was really resistant to that, until he showed me the report that tells you which keywords people are searching when they clicked on your ad.  I was shocked.   I have a ring related website and I was getting searches for rings for piercings in places you don&#8217;t want to talk about in civilized conversation.  I didn&#8217;t even know you could pierce some of these places&#8230;  *shudder*.  Anyway, it basically came down to, 2/3rds of my money was going straight out the window on keywords that had nothing to do with what I was trying to promote.  Part of that was a mysterious &#8220;Unknown&#8221; section that Google wouldn&#8217;t even tell us about that amounted to about 500 clicks.  I guess you doesn&#8217;t realize how much you don&#8217;t know until someone shows you.</p>
<p>So taking Jared&#8217;s advice, I promptly chucked my old campaign and started over.  We&#8217;ll see how it goes now.</p>
<p>Below are some of the great PPC related things I picked up today.  Enjoy.</p>
<p><strong>Exact Match Keywords</strong> &#8211; [keyword keyword]</p>
<p>Your ad only shows up when that exact phrase is typed in.  No more, no less.</p>
<ul>
<li>Exact phrase only</li>
<li>In that exact order</li>
</ul>
<p><em>Examples:</em> [red tennis shoes]</p>
<p>Your ad shows up if the search is: &#8216;red tennis shoes&#8217;.</p>
<p>But not for: &#8216;buy red tennis shoes&#8217; or &#8216;tennis shoes red&#8217; or anything else.</p>
<p><strong>Phrase Match</strong> &#8211; &#8220;keyword keyword&#8221;</p>
<p>This seems to be the one that gets used most commonly.  Also use in conjunction with negative keywords.</p>
<ul>
<li>Plural and singular keywords are separate and distinct keywords.</li>
<li>Keyword order specific</li>
</ul>
<p><em>Examples:</em> &#8220;red tennis shoes&#8221;</p>
<p>Ad shows up for: &#8216;buy red tennis shoes&#8217;, &#8216;red tennis shoes buy now&#8217;</p>
<p>Ad won&#8217;t show up for: &#8216;tennis shoes red&#8217; (out of order), &#8216;red tennis shoe&#8217; (singular)</p>
<p><strong>Broad Match</strong> &#8211; keyword keyword</p>
<p>Your ad shows up for the entered keyword, as well as pretty much anything Google deems slightly related.</p>
<p>If you use this, good luck.  This is what I was using, without knowing what it would actually do to my campaign.</p>
<ul>
<li>Not order specific</li>
<li>Not plural or singular specific</li>
<li>Not order specific</li>
</ul>
<p><em>Examples:</em> red tennis shoes</p>
<p>Ad shows up for: &#8216;buy red tennis shoes&#8217;, &#8216;red tennis shoes buy now&#8217;, &#8216;bobs red tennis shoes&#8217;, &#8216;tennis shoes&#8217;, &#8216;red shoes&#8217;, &#8217;shoes&#8217;, &#8216;red&#8217;, &#8217;socks&#8217; (cause they are feet related too), &#8216;Nike&#8217; (cause it&#8217;s a type of shoe) etc.  The list is huge.</p>
<p>Ad won&#8217;t show up for: &#8216;Grandma&#8217;s knitting&#8217;.  Pretty much something completely unrelated.  Cause if it can find a link, it will try to put your ad there.</p>
<p>So yeah, it was a good day.  I learned I had been loosing money for a long time.  But on the bright side, I got to learn about the problem before launching any major projects!  <img src='http://www.corysessions.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Oh, and on a side note, it snowed this morning here in Utah.  It&#8217;s frigg&#8217;in May 1st and its still snowing!  Damn this global warming!  It&#8217;s going to freeze us all to death!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/internet-marketing/ppc/my-ppc-crash-course/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Code Snippets Integrated into Google Universal Search</title>
		<link>http://www.corysessions.com/dev/google-integrated-code-snippits/</link>
		<comments>http://www.corysessions.com/dev/google-integrated-code-snippits/#comments</comments>
		<pubDate>Thu, 01 May 2008 03:52:27 +0000</pubDate>
		<dc:creator>Cory</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.corysessions.com/?p=36</guid>
		<description><![CDATA[I just saw this as I was looking up a function.  Nice little code example integrated right into the search results.  Pretty fancy.


I like that.   Now I need to get my code to show up like that.   
]]></description>
			<content:encoded><![CDATA[<p>I just saw this as I was looking up a function.  Nice little code example integrated right into the search results.  Pretty fancy.</p>
<p style="text-align: center;"><a href="http://www.corysessions.com/wp-content/uploads/2008/04/google-code-snippets.jpg"><img class="alignnone size-full wp-image-37" title="google-code-snippets" src="http://www.corysessions.com/wp-content/uploads/2008/04/google-code-snippets.jpg" alt="Code integrated into Google Universal Search" width="500" height="438" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">I like that.   Now I need to get my code to show up like that.  <img src='http://www.corysessions.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.corysessions.com/dev/google-integrated-code-snippits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
