<?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>The Blog Easy &#187; Intermediate</title>
	<atom:link href="http://theblogeasy.com/tag/intermediate/feed/" rel="self" type="application/rss+xml" />
	<link>http://theblogeasy.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 21 Jan 2010 17:10:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>BBPress and Encoded URLs with Uppercase Hex</title>
		<link>http://theblogeasy.com/2009/12/26/bbpress-and-encoded-urls-with-uppercase-hex/</link>
		<comments>http://theblogeasy.com/2009/12/26/bbpress-and-encoded-urls-with-uppercase-hex/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 22:51:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=230</guid>
		<description><![CDATA[I recently discovered that the Google crawler was throwing a redirect error on certain pages in our YLF bbPress forum (bbPress 1.0.2 at time of writing). These URLs had one thing in common &#8211; the were encoded to handle special characters. Here is an example: http://youlookfab.com/welookfab/topic/your-favourite-80%E2%80%99s-music-bands The &#8220;%E2&#8221; in this URL is an encoded version [...]]]></description>
			<content:encoded><![CDATA[<p>I recently discovered that the Google crawler was throwing a redirect error on certain pages in our YLF bbPress forum (bbPress 1.0.2 at time of writing). These URLs had one thing in common &#8211; the were encoded to handle special characters. Here is an example:</p>
<p><a rel="nofollow" href="http://youlookfab.com/welookfab/topic/your-favourite-80%E2%80%99s-music-bands">http://youlookfab.com/welookfab/topic/your-favourite-80%E2%80%99s-music-bands</a></p>
<p>The &#8220;<strong>%E2</strong>&#8221; in this URL is an encoded version of the apostrophe in &#8220;80&#8242;s&#8221;. I investigated a little using Firebug and web-sniffer.net, and discovered that this URL does indeed cause a 302 redirect. But why?</p>
<h3>bb_repermalink() is the problem</h3>
<p>The answer is in a bbPress function that runs for most forum pages: <strong>bb_repermalink()</strong>. (you can find this function in &#8220;functions.bb-core.php&#8221; in the &#8220;/bb-includes&#8221; folder of the bbPress distribution) I couldn&#8217;t find any documentation or discussion on this function, but it appears to check  the permalink and do a redirect if it finds an error. It turns out that the &#8220;correct&#8221; permalink (i.e. the one based on the post slug in the database) encodes special characters with lowercase hex (i.e. &#8220;%e2&#8243; instead of &#8220;%E2&#8243; using our example above). When bb_repermalink() compares the URL we typed into the address bar (with uppercase hex characters) to the &#8220;correct&#8221; one (with lowercase hex characters), it finds a discrepancy that it thinks is an error in the URL. So it redirects to the &#8220;correct&#8221; URL.</p>
<h3>A plugin workaround</h3>
<p>Fortunately there are some well-placed hooks in bb_repermalink(), so I was able to create a plugin that detected uppercase hex in the URL and then adjust the &#8220;correct&#8221; permalink accordingly. The code for this plugin is at the end of this post.</p>
<h3>Why the Google crawl error?</h3>
<p>One question still remains: why did this 302 redirect cause an error in the Google crawler? I can&#8217;t say for sure, but my theory is as follows&#8230;</p>
<ol>
<li> The crawler converts hex to uppercase before crawling the URL. So even though my sitemap specifies the URL with lowercase hex, Google&#8217;s crawler converts this to uppercase.</li>
<li> Then when the crawler visits this URL, bbPress detects the uppercase discrepancy and issues a 302 redirect to the lowercase URL.</li>
<li> Google&#8217;s crawler takes the new lowercase URL, AGAIN converts the hex to uppercase and then re-crawls the URL.</li>
<li> This of course leads to an infinite loop as the crawler repeatedly converts to uppercase and bb_repermalink() repeatedly redirects back to the lowercase URL.</li>
</ol>
<p>The crawler probably detects that it is getting the same URL back repeatedly, and interprets this as an error.</p>
<p>Again, I can&#8217;t be certain that this is what&#8217;s happening, but its a theory. If you know more than me about this issue, I would love to hear about it in the comments.</p>
<p>Here is the code for the plugin that will force bbPress to accommodate uppercase hex in encoded URLs without issuing a 302 redirect.</p>
<p><code>function _permalink_fix( $permalink, $location )<br />
{<br />
$matches = array();<br />
/* are there any URL encoded hex characters with uppercase in the request URI? */<br />
if (preg_match( '#\%([0-9][A-F]|[A-F][0-9]|[A-F][A-F])#', $_SERVER['REQUEST_URI'], $matches ))<br />
{<br />
/* replace ALL URL encoded HEX parameters with uppercase versions */<br />
$patterns = array(<br />
'#\%([0-9])([a-f])#e',<br />
'#\%([a-f])([0-9])#e',<br />
'#\%([a-f][a-f])#e' );<br />
$replacements = array(<br />
'"%" . $1 . strtoupper("$2")',<br />
'"%" . strtoupper("$1") . $2',<br />
'"%" . strtoupper("$1")' );<br />
$permalink = preg_replace( $patterns, $replacements, $permalink );<br />
}<br />
return $permalink;<br />
}<br />
add_filter('bb_repermalink_result', '_permalink_fix', 10, 2);</code> </p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2009/12/26/bbpress-and-encoded-urls-with-uppercase-hex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reset your Admin Password in the WordPress Database</title>
		<link>http://theblogeasy.com/2008/09/23/reset-your-admin-password-in-the-wordpress-database/</link>
		<comments>http://theblogeasy.com/2008/09/23/reset-your-admin-password-in-the-wordpress-database/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 12:22:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=183</guid>
		<description><![CDATA[Like most systems that require password authentication, WordPress will help you out if you forget your password. Clicking the &#8220;lost your password&#8221; link at the login page will take you through a sequence of steps that ultimately sends a new password to the email address associated with your WordPress account. But what if your WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Like most systems that require password authentication, WordPress will help you out if you forget your password. Clicking the &#8220;lost your password&#8221; link at the login page will take you through a sequence of steps that ultimately sends a new password to the email address associated with your WordPress account.</p>
<p>But what if your WordPress installation can&#8217;t send email? This is the case with my development server, so recently when I lost the password I had to do a manual reset in the WordPress database using phpMyAdmin. Here are the steps:</p>
<ol>
<li>Start phpMyAdmin</li>
<li>Select your WordPress database in the sidebar on the left</li>
<li>Select the &#8220;wp-users&#8221; table in the sidebar on the left</li>
<li>Select the &#8220;Browse&#8221; tab at the top of the page</li>
<li>Click the pencil icon to edit the admin entry</li>
<li>Enter a new password in the &#8220;Value&#8221; field (don&#8217;t press &#8220;Go&#8221; yet)</li>
<li>Set the &#8220;Function&#8221; field to &#8220;MD5&#8243;</li>
<li>Press the &#8220;Go&#8221; button</li>
</ol>
<p>Done. Step 7 is the tricky one. MD5 is the password encryption that WordPress uses in order to prevent people from seeing the passwords if they somehow gain access to your database. </p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2008/09/23/reset-your-admin-password-in-the-wordpress-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Takes us Back into the Fold</title>
		<link>http://theblogeasy.com/2008/08/25/google-takes-us-back-into-the-fold/</link>
		<comments>http://theblogeasy.com/2008/08/25/google-takes-us-back-into-the-fold/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 03:44:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tracking]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=165</guid>
		<description><![CDATA[During July our traffic from Google, which had been growing steadily since we launched YLF in 2005, suddenly dropped more than 50%. To combat this I installed the All in One SEO Pack plugin, removed meta descriptions altogether, and resubmitted the sitemap. Well, something worked. Our traffic returned to pre-plunge levels a few days ago. [...]]]></description>
			<content:encoded><![CDATA[<p>During July our traffic from Google, which had been growing steadily since we launched YLF in 2005, <a href="http://theblogeasy.com/2008/07/26/the-google-plunge/http://theblogeasy.com/2008/07/26/the-google-plunge/">suddenly dropped more than 50%</a>. To combat this I installed the <a href="http://semperfiwebdesign.com/portfolio/wordpress/wordpress-plugins/all-in-one-seo-pack/">All in One SEO Pack</a> plugin, removed meta descriptions altogether, and resubmitted the sitemap.</p>
<p>Well, something worked. Our traffic returned to pre-plunge levels a few days ago. Courtesy of <a href="http://www.google.com/webmasters/">Google Webmaster Tools</a>, here is a chart of our traffic from Google over the period.<a href="http://theblogeasy.com/wp-content/uploads/2008/08/google-returns.jpg"><img class="aligncenter size-full wp-image-166" title="google-returns" src="http://theblogeasy.com/wp-content/uploads/2008/08/google-returns.jpg" alt="" width="466" height="136" /></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2008/08/25/google-takes-us-back-into-the-fold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replicate your bbPress Forum Locally for Development</title>
		<link>http://theblogeasy.com/2008/08/17/replicate-your-bbpress-forum-locally-for-development/</link>
		<comments>http://theblogeasy.com/2008/08/17/replicate-your-bbpress-forum-locally-for-development/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 00:09:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[bbPress]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=142</guid>
		<description><![CDATA[One part of setting up the YLF forum development server did not run very smoothly: replicating the database. I wanted to get a full version of the current YLF forum with all 20,272 posts by 1214 users. There is no backup or import/export functionality currently built in to bbPress (or available as a plug-in), so [...]]]></description>
			<content:encoded><![CDATA[<p>One part of setting up the YLF forum development server did not run very smoothly: replicating the database. I wanted to get a full version of the current YLF forum with all 20,272 posts by 1214 users. There is no backup or import/export functionality currently built in to bbPress (or available as a plug-in), so I needed to (1) do a database backup and (2) upload the backup to the new local database on my development server.</p>
<p><strong>Export your production database</strong>. There are many ways to do this, but the most common is probably the tool &#8220;phpMyAdmin&#8221;. Most hosting services provide access to phpMyAdmin, and it is also part of the WampServer installation that I use on my local webserver. Since WordPress and bbPress have so much in common, I thought it would be wise to follow the <a href="http://codex.wordpress.org/Backing_Up_Your_Database#Backup_Process_with_phpMyAdmin">WordPress steps for creating a database backup using phpMyAdmin</a>. In particular, steps 1 through 7 worked just fine.</p>
<p>Step 8 is where I had my first problem. Our bbPress database is too big to be saved to a file, and would get cut off after the first 256 posts. For some reason you can get the full database contents by unchecking &#8220;Save as File&#8221; in the phpMyAdmin &#8220;Export&#8221; form. The contents are then displayed in a text area.</p>
<p><strong>Copy it into a text file</strong>. I got the idea of pasting the contents of the textarea into a text file <a href="http://blogs.techrepublic.com.com/programming-and-development/?p=557">from Rex</a>. Since it is a text area with over 10MB of text, it is a little unwieldy, but usable nonetheless.</p>
<ul>
<li>CTRL-A to select all in the text area, then wait a minute for this to register.</li>
<li>CTRL-C to copy all that text, then wait another minute or so.</li>
<li>CTRL-V in a text editor to paste all the text into the file.</li>
</ul>
<p>So far, so good. Unfortunately, things didn&#8217;t go as well when I used phpMyAdmin on the local server to Import the file. There were several odd syntax errors. After some experimentation I started to suspect the text encoding of the file was off. I had been using <a href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> (a great free editor). To cut a long story short, I switched to trusty Notepad and when saving the file I specified &#8220;UTF encoding&#8221; in the Notepad &#8220;File Save As&#8221; dialog box.</p>
<p><strong>Import the text file into your local database</strong>. With the database backed up in a UTF-8 encoded text file, the next step is to fire up phpMyAdmin on the local server, load the bbPress database and go to the &#8220;Import&#8221; form. Since we have a large database, I needed to take a few extra steps to ensure that phpMyAdmin loaded the file. These are the same steps that you need to take before <a href="http://theblogeasy.com/2008/08/09/import-a-large-2mb-wordpress-blog/">importing a large WordPress blog</a>, namely, setting the following variables in your &#8220;php.ini&#8221; file:</p>
<p><code>upload_max_filesize = 20M<br />
post_max_size = 20M<br />
max_execution_time = 200<br />
max_input_time = 200</code></p>
<p>Voila. The database contents were imported without any problems.</p>
<p>One small note: If your database had allready been configured by the bbPress install, then you need to go into phpMyAdmin <strong>on your local server</strong> and delete the existing tables to make way for the tables that will be restored from your backup. <span style="color: #ff0000;"><strong>Please, please be careful</strong>. It would be all too easy to get confused and delete the tables in the wrong phpMyAdmin window, that is, the one on your production database. Bye bye forum.</span> </p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2008/08/17/replicate-your-bbpress-forum-locally-for-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Errors with a Local Install of bbPress 0.8.3</title>
		<link>http://theblogeasy.com/2008/08/17/database-errors-with-a-local-install-of-bbpress-083/</link>
		<comments>http://theblogeasy.com/2008/08/17/database-errors-with-a-local-install-of-bbpress-083/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 18:20:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[bbPress]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Intermediate]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=120</guid>
		<description><![CDATA[This is filed under the heading &#8220;I don&#8217;t know why the solution works, but it does, and that&#8217;s good enough for me&#8221;. The YLF forum is currently based on bbPress 0.8.3 (great forum system, more on that in future posts). I was setting up a development server to test some new features and hit a [...]]]></description>
			<content:encoded><![CDATA[<p>This is filed under the heading &#8220;I don&#8217;t know why the solution works, but it does, and that&#8217;s good enough for me&#8221;.</p>
<p>The YLF forum is currently based on bbPress 0.8.3 (great forum system, more on that in future posts). I was setting up a development server to test some new features and hit a strange error. For the record, my server is using WampServer 2.0c on a Vista SP1 PC. WampServer is great if you have a LAMP (Linux OS, Apache webserver, MySQL database, and PHP) production server and want an equivalent setup on your local Windows PC.</p>
<p>During the bbPress install, which is normally just as simple as <a href="http://theblogeasy.com/2008/07/26/the-blog-easy/">the WordPress install</a>, I got the following database warnings:</p>
<p><code>Warning: mysql_get_server_info() [function.mysql-get-server-info]: Access denied for user ‘ODBC’@'localhost’ (using password: NO) in C:\xampp\htdocs\bbpress\bb-includes\db-mysqli.php on line 80</code></p>
<p><code>Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in C:\xampplite\htdocs\bbpress\bb-includes\db-mysqli.php on line 80</code></p>
<p>Who exactly is &#8220;ODBC&#8221;, and why is he trying to access my database without a password? After much futzing with the database settings and the BBPress config, I starting looking around the web for a solution. Fortunately, it wasn&#8217;t long before <a href="http://www.refueled.net/install-bbpress-locally/">I found one</a>. No explanation for why it works, but it does.</p>
<p>In the file &#8220;bbincludes/db-mysqli.php&#8221;, change&#8230;</p>
<p><code>if ( !empty($this-&gt;charset) &amp;&amp; version_compare( mysql_get_server_info(), '4.1.0', '&gt;=') )<br />
$this-&gt;query( "SET NAMES '$this-&gt;charset'" );</code></p>
<p>to&#8230;</p>
<p><code>if ( !empty($this-&gt;charset) &amp;&amp; version_compare( mysqli_get_server_info( $this-&gt;$dbhname ), '4.1.0', '&gt;=' ) )<br />
$this-&gt;query( "SET NAMES '$this-&gt;charset'" );</code></p>
<p>Now, this does involve modifying a file in the bbPress distribution, which I would normally avoid. But in this case I just want the development server up and running asap, so I will live with the hack. </p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2008/08/17/database-errors-with-a-local-install-of-bbpress-083/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import a Large (&gt;2MB) WordPress Blog</title>
		<link>http://theblogeasy.com/2008/08/09/import-a-large-2mb-wordpress-blog/</link>
		<comments>http://theblogeasy.com/2008/08/09/import-a-large-2mb-wordpress-blog/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 18:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=82</guid>
		<description><![CDATA[Today I needed to set up a staging server to do some experiments with our YLF theme. After setting up the database and installing WordPress, I wanted to import the current contents of YLF to this new site. Since 2.2, WordPress has had the ability to import and export the contents of the blog database [...]]]></description>
			<content:encoded><![CDATA[<p>Today I needed to set up a staging server to do some experiments with our YLF theme. After setting up the database and <a href="http://theblogeasy.com/2008/07/26/the-blog-easy/">installing WordPress</a>, I wanted to import the current contents of YLF to this new site. Since 2.2, WordPress has had the ability to import and export the contents of the blog database (posts, comments, categories, etc.). The contents are exported as an extended RSS file (basically just a text file in a format the blog software understands).</p>
<p>The procedure is simple:</p>
<ol>
<li><strong>Export</strong>: Go to the admin pages of your current blog. Inside the &#8220;Manage&#8221; menu, press &#8220;Export&#8221;. You will specify a destination folder and the file will be saved there.</li>
<li><strong>Import</strong>: Go to the admin pages of your new blog. Inside the &#8220;Manage&#8221; menu, press &#8220;Import&#8221;. Pick the file you saved in step 1 and the contents will be imported into the new blog.</li>
</ol>
<p>Easy. Unless, that is, your blog contents happen to be larger than 2MB. In this case you need to do some extra work. If you have access to your php.ini file you can just set the following variables:<br />
<code>upload_max_filesize = 20M<br />
post_max_size = 20M<br />
max_execution_time = 200<br />
max_input_time = 200<br />
</code></p>
<p>I found that the first two variables above were already in my php.ini file, but were set to 2MB and 8MB respectively. I had to add the second two variables. If you don&#8217;t have direct access to php.ini, then you need to set these variables in your .htaccess file, which lives in the root of your website. <a href="http://www.mathewpacker.com/2008/07/25/getting-around-wordpress-2m-import-limit/">This blog entry</a> shows how.</p>
<p>You then need to restart the php server for these settings to take effect. That is easy on my local staging server, but I&#8217;m actually not sure how I would do it on our production server that is hosted by <a href="http://mediatemple.net/">MediaTemple</a>.</p>
<p>Once you are done with the import, it is probably a good idea to set the four variables above back to their default values. </p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2008/08/09/import-a-large-2mb-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Google Plunge</title>
		<link>http://theblogeasy.com/2008/07/26/the-google-plunge/</link>
		<comments>http://theblogeasy.com/2008/07/26/the-google-plunge/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 03:16:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tracking]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Traffic]]></category>

		<guid isPermaLink="false">http://theblogeasy.com/?p=23</guid>
		<description><![CDATA[Our traffic from Google organic search is still way down at youlookfab.com. About 3 weeks ago it dropped more than 50%, and has stabilized at that level. Pretty alarming, given that this represented more than half of our organic search traffic. Since the plunge I have&#8230; Installed the All in One SEO Pack plugin. Google&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Our traffic from Google organic search is still way down at <a href="http://www.youlookfab.com">youlookfab.com</a>. About 3 weeks ago it dropped more than 50%, and has stabilized at that level. Pretty alarming, given that this represented more than half of our organic search traffic.</p>
<p>Since the plunge I have&#8230;</p>
<ol>
<li><strong>Installed the <a href="http://semperfiwebdesign.com/portfolio/wordpress/wordpress-plugins/all-in-one-seo-pack/">All in One SEO Pack</a> plugin</strong>. Google&#8217;s content analysis tool (part of <a href="http://www.google.com/webmasters">Google Webmaster Tools</a>, or GWT) told me that I have duplicate title tags. This plugin ensures that each page has its own unique title tag.</li>
<li><strong>Removed the meta description from the header</strong>. GWT content analysis also told me that I have duplicate meta descriptions. Some research on the web revealed the consensus that no meta description is better than duplicating the same meta description across all the pages.</li>
<li><strong>Resubmitted the sitemap</strong>. I also installed the latest version of the <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google XML sitemaps plugin</a>.</li>
</ol>
<p>One thing I noticed in GWT was that our incoming external links had dropped very low. the reason? Our home page was not the list. I checked that our site was indexed and it was. Recently the external link stats returned to normal and our home page is back in the list.</p>
<p>We are also getting quite a few web crawl errors that don&#8217;t make sense. Perhaps our server was down while the Google crawler was doing its thing, but I don&#8217;t see that in the server logs.</p>
<p style="text-align: center;" align="center"><a href="http://theblogeasy.com/wp-content/uploads/2008/07/google-plunge3.jpg"><img class="aligncenter" title="google-plunge3" src="http://theblogeasy.com/wp-content/uploads/2008/07/google-plunge3.jpg" alt="" width="466" height="131" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://theblogeasy.com/2008/07/26/the-google-plunge/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
