<?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>Ryan Maffit &#187; wordpress</title>
	<atom:link href="http://blog.ryanmaffit.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.ryanmaffit.com</link>
	<description>The blog of a web developer</description>
	<lastBuildDate>Thu, 15 Jul 2010 00:29:22 +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>WordPress Shell Update Script</title>
		<link>http://blog.ryanmaffit.com/web-development/wordpress-web-development/wordpress-shell-update-script.html</link>
		<comments>http://blog.ryanmaffit.com/web-development/wordpress-web-development/wordpress-shell-update-script.html#comments</comments>
		<pubDate>Thu, 15 Jul 2010 00:21:17 +0000</pubDate>
		<dc:creator>Ryan Maffit</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.ryanmaffit.com/?p=181</guid>
		<description><![CDATA[Hello everyone, today I am going to share with you a shell script I have been using to easily update my WordPress blog installation (and can easily be expanded to upgrade multiple blogs as well). The script I wrote automatically &#8230; <a href="http://blog.ryanmaffit.com/web-development/wordpress-web-development/wordpress-shell-update-script.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, today I am going to share with you a shell script I have been using to easily update my WordPress blog installation (and can easily be expanded to upgrade multiple blogs as well). The script I wrote automatically downloads the latest version of WordPress, extracts it, and updates your blog files. In order to run this script you will need SSH access and the ability to run shell scripts. This script was written to work with my host which runs on cPanel, but it can easily be altered to work on other systems as well by modify the directories. Below are instructions on how you can go about using this shell script to easily upgrade your blog.</p>
<ol>
<li>Login to SSH with your cPanel username and password</li>
<li>Create a directory called upgrade_blog/ in your home directory (mkdir ~/upgrade_blog)</li>
<li>Navigate to the upgrade_blog directory (cd ~/upgrade_blog)</li>
<li>Create a new file called &#8220;run.sh&#8221; using your text editor of choice (I use nano)</li>
<li>Paste the following code into the run.sh file:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rdf</span> ~<span style="color: #000000; font-weight: bold;">/</span>upgrade_blog<span style="color: #000000; font-weight: bold;">/</span>latest.zip ~<span style="color: #000000; font-weight: bold;">/</span>upgrade_blog<span style="color: #000000; font-weight: bold;">/</span>wordpress<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>wordpress.org<span style="color: #000000; font-weight: bold;">/</span>latest.zip
<span style="color: #c20cb9; font-weight: bold;">unzip</span> latest.zip
<span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-r</span> ~<span style="color: #000000; font-weight: bold;">/</span>upgrade_blog<span style="color: #000000; font-weight: bold;">/</span>wordpress<span style="color: #000000; font-weight: bold;">/*</span> ~<span style="color: #000000; font-weight: bold;">/</span>public_html<span style="color: #000000; font-weight: bold;">/</span>blog<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

</li>
<li>Save the file</li>
<li>To update your blog just simply navigate to the upgrade_blog/ directory in SSH and execute the run.sh file (sh run.sh)</li>
<li>The script automatically downloads the latest version of WordPress and updates your blog accordingly.</li>
<li>Once the script has finished executing open up your blog and go to your admin. WordPress will ask you to upgrade your database if it is needed.</li>
<li>If you want to upgrade multiple blogs just copy the last line from the script and change the directory it copies the WordPress files to.</li>
<li><strong>Note: </strong>This script is based off of of the assumption that your blog is located in public_html/blog if your blog is located elsewhere change it.</li>
</ol>
<p>And that&#8217;s all there is to it. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryanmaffit.com/web-development/wordpress-web-development/wordpress-shell-update-script.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP Now Launched &amp; New Theme</title>
		<link>http://blog.ryanmaffit.com/web-development/wp-now-launched-new-theme.html</link>
		<comments>http://blog.ryanmaffit.com/web-development/wp-now-launched-new-theme.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 02:23:32 +0000</pubDate>
		<dc:creator>Ryan Maffit</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Content]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wpnow]]></category>

		<guid isPermaLink="false">http://blog.ryanmaffit.com/?p=39</guid>
		<description><![CDATA[Hello everyone, Today, with two colleagues of mine, we have launched a brand new premium wordpress themes website.  Check it out at http://www.wpnow.com/. I have also uploaded one of the WP Now themes I coded (Elements) to this blog because &#8230; <a href="http://blog.ryanmaffit.com/web-development/wp-now-launched-new-theme.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello everyone,</p>
<p>Today, with two colleagues of mine, we have launched a brand new premium wordpress themes website.  Check it out at http://www.wpnow.com/.<br />
I have also uploaded one of the WP Now themes I coded (Elements) to this blog because I really liked it <img src='http://blog.ryanmaffit.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> , any comments feel free to post below!</p>
<p>Ryan</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.ryanmaffit.com/web-development/wp-now-launched-new-theme.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
