<?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>Just One More Project &#187; Projecthamel.com</title>
	<atom:link href="http://www.projecthamel.com/tag/projecthamel-com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.projecthamel.com</link>
	<description>A Techy Bog For Techy People.</description>
	<lastBuildDate>Wed, 05 May 2010 15:57:37 +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>Fix Broken Auto Updates In Wordpress.</title>
		<link>http://www.projecthamel.com/2010/05/05/fix-broken-auto-updates-in-wordpress/</link>
		<comments>http://www.projecthamel.com/2010/05/05/fix-broken-auto-updates-in-wordpress/#comments</comments>
		<pubDate>Wed, 05 May 2010 15:57:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[auto update]]></category>
		<category><![CDATA[Fix]]></category>
		<category><![CDATA[http://www.projecthamel.com]]></category>
		<category><![CDATA[php4]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[Projecthamel.com]]></category>
		<category><![CDATA[Update Plugins]]></category>

		<guid isPermaLink="false">http://www.projecthamel.com/?p=30</guid>
		<description><![CDATA[I have been having an issue with wordpress just hanging on downloading, when trying to install an update through the internal auto update.   After doing some research, I was able to find out that this feature requires php5 in order to function.
My web Host is 1and1.com, and inorder for your site to use php5 instead [...]<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/05/05/fix-broken-auto-updates-in-wordpress/">Fix Broken Auto Updates In Wordpress.</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I have been having an issue with wordpress just hanging on downloading, when trying to install an update through the internal auto update.   After doing some research, I was able to find out that this feature requires php5 in order to function.</p>
<p>My web Host is 1and1.com, and inorder for your site to use php5 instead of php4 you must add a custom line in the .htaccess file in the root of your website.  Simply add the below code to your .htaccess file, and you are good to go.<span id="more-30"></span></p>
<p>Code:</p>
<blockquote><p>AddType x-mapp-php5 .php</p></blockquote>
<p>Here is my full .htaccess file, so you can see what it looks like.</p>
<blockquote><p>AddType x-mapp-php5 .php<br />
# BEGIN WordPress<br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /index.php [L]<br />
&lt;/IfModule&gt;</p>
<p># END WordPress</p></blockquote>
<p><a href="http://www.outofcontrol.ca/2009/02/20/wordpress-automatic-update-doesnt-work-solution/">Thanks to OutofControl.ca for his post on this issue.</a></p>
<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/05/05/fix-broken-auto-updates-in-wordpress/">Fix Broken Auto Updates In Wordpress.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.projecthamel.com/2010/05/05/fix-broken-auto-updates-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading Wordpress to 2.9.2</title>
		<link>http://www.projecthamel.com/2010/04/29/upgrading-wordpress-to-2-9-2/</link>
		<comments>http://www.projecthamel.com/2010/04/29/upgrading-wordpress-to-2-9-2/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 02:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[http://www.projecthamel.com]]></category>
		<category><![CDATA[Projecthamel.com]]></category>
		<category><![CDATA[Upgrade 2.9.2]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.projecthamel.com/?p=22</guid>
		<description><![CDATA[Today i upgraded my wordpress from 2.9.1 to 2.9.2  The upgrade process was pretty smooth.  At first i had some trouble using the automatic update, so i ended up manually updating.
How to Manual Update:
The manual update process is quite simple. The wordpress website has full details on their website as to how to do this [...]<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/04/29/upgrading-wordpress-to-2-9-2/">Upgrading Wordpress to 2.9.2</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Today i upgraded my wordpress from 2.9.1 to 2.9.2  The upgrade process was pretty smooth.  At first i had some trouble using the automatic update, so i ended up manually updating.</p>
<p><strong>How to Manual Update:</strong></p>
<p>The manual update process is quite simple. The wordpress website has full details on their website as to how to do this update. (<a href="http://codex.wordpress.org/Upgrading_WordPress">http://codex.wordpress.org/Upgrading_WordPress</a>)  I will just go over the basics really fast.</p>
<p><span id="more-22"></span></p>
<p><strong>Backup, Backup, Backup!</strong></p>
<p>Any time you make a version change in Wordpress you should backup your database.  For that matter you should backup any thing you think is too important to loose any time you do something to wordpress.  I dont know about you, but the idea of having to retype all my articles does not leave me with a warm fuzzy.</p>
<p>The Simplest way to perform this backup is through the wordpress export tool.  This can be found under tools in your Administrative dashboard.   Simply select to backup all users, and it will present you with an XML file containing all your posts, pages, comments, custom fields, categories, and tags.  This is in no way a complete wordpress backup, but it should give you a backup of the important stuff.   If you want a full backup you need to go into your database manager and backup your full database.</p>
<p>Also i suggest backing up your whole wordpress directory on your website.  This is by all means not necessary, but i like to have backups of everything just in case.</p>
<p><strong>Plugins!</strong></p>
<p>Now its time to start the upgrade first you must make sure all your plugins are upgraded.  This will help minimize the the chance of compatibility issues.  Next Disable all your plugins.  Just in case one of your plugins is not comparable with the upgrade, you don&#8217;t want your site to be completely useless.   If you forget to disable your plugins and have an issue after the upgrade you will need to manually disable them by either moving or deleting them from the plugins folder.</p>
<p><strong>Upgrade!</strong></p>
<p>Download and extract, the latest update (<a href="http://wordpress.org/download/">http://wordpress.org/download/</a>) locally to your computer.  Open up your favorite FTP client (I Like FileZilla <a href="http://filezilla-project.org/">http://filezilla-project.org/</a>) and connect to your web host.  Delete or Rename the wp-includes and wp-admin folders in the root of your wordpress install.  Then upload, replacing all the files, the new version on top of the old version.  Dont worry you should not lose and of your config or data  (if your worried make sure you backed it up.)</p>
<p><strong>Completion!</strong></p>
<p>Once you have uploaded the files your all done.  Now you can go to your website, and start testing functionality.  Slowly turn on each plugin, and test that plugins features, to make sure its working, and not breaking something else.</p>
<p>Dont forget to test your website on both IE and FireFox.</p>
<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/04/29/upgrading-wordpress-to-2-9-2/">Upgrading Wordpress to 2.9.2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.projecthamel.com/2010/04/29/upgrading-wordpress-to-2-9-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress &#8220;Briefly Unavailable for Scheduled Maintenance&#8221; Message Removal</title>
		<link>http://www.projecthamel.com/2010/04/29/wordpress-briefly-unavailable-for-scheduled-maintenance-message-removal/</link>
		<comments>http://www.projecthamel.com/2010/04/29/wordpress-briefly-unavailable-for-scheduled-maintenance-message-removal/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 16:03:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[.maintenance]]></category>
		<category><![CDATA[http://www.projecthamel.com]]></category>
		<category><![CDATA[Projecthamel.com]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Unavailable]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.projecthamel.com/?p=17</guid>
		<description><![CDATA[Today while trying to update my blog to the new version, i received the following error: &#8220;Briefly unavailable for scheduled maintenance. Check back in a minute.&#8221;   any time I attempted to view the website.  I was using the built in wordpress update functionality.  After doing some research it appears that when an update is being [...]<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/04/29/wordpress-briefly-unavailable-for-scheduled-maintenance-message-removal/">Wordpress &#8220;Briefly Unavailable for Scheduled Maintenance&#8221; Message Removal</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Today while trying to update my blog to the new version, i received the following error: &#8220;Briefly unavailable for scheduled maintenance. Check back in a minute.&#8221;   any time I attempted to view the website.  I was using the built in wordpress update functionality.  After doing some research it appears that when an update is being performed wordpress places a file in the Root of the blog called “.maintenance”</p>
<p>This is actually a really simple fix.  Just FTP into your web space and delete this file, and your blog should be back to normal, Provided the incomplete upgrade did not damage your blog in any way.</p>
<p><strong>Why Does this happen?</strong></p>
<p>During a wordpress update, Wordpress creates this &#8220;dummy&#8221; file in the root, to block access to the website while the update is in progress.  This is done so that if someone attempts to view your website while the upgrade is in progress, they may get ill desired results.  If you are having problems using the auto update feature i suggest updating it manually, and researching why its not working.  There can be many causes.</p>
<p>Hope this Helps!</p>
<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/04/29/wordpress-briefly-unavailable-for-scheduled-maintenance-message-removal/">Wordpress &#8220;Briefly Unavailable for Scheduled Maintenance&#8221; Message Removal</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.projecthamel.com/2010/04/29/wordpress-briefly-unavailable-for-scheduled-maintenance-message-removal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome to ProjectHamel.com</title>
		<link>http://www.projecthamel.com/2010/01/18/welcome-to-projecthamel-com/</link>
		<comments>http://www.projecthamel.com/2010/01/18/welcome-to-projecthamel-com/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:20:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Projecthamel.com]]></category>

		<guid isPermaLink="false">http://www.projecthamel.com/?p=12</guid>
		<description><![CDATA[This is my first posting, on my new and improved blog.  Im not going to lie, i dont update it as often as i would like.  Im going to do my best to put up as many posts as possible on here.  Let me tell you a little about myself.  I am a Systems Administrator [...]<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/01/18/welcome-to-projecthamel-com/">Welcome to ProjectHamel.com</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This is my first posting, on my new and improved blog.  Im not going to lie, i dont update it as often as i would like.  Im going to do my best to put up as many posts as possible on here.  Let me tell you a little about myself.  I am a Systems Administrator for a major telecommunications company.    I also work part time at bestbuys Geeksquad.  Expect my posts here to be technical in nature, or based around a project i am currently working on.  If any of my posts help you please feel free to leave a comment and let me know that doing this helped someone out.</p>
<p>This post was originally found on: <a href="http://www.projecthamel.com">Just One More Project</a>  <a href="http://www.ProjectHamel.com">www.ProjectHamel.com</a><br/><br/><a href="http://www.projecthamel.com/2010/01/18/welcome-to-projecthamel-com/">Welcome to ProjectHamel.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.projecthamel.com/2010/01/18/welcome-to-projecthamel-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
