<?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>Zack Perdue &#187; easy wordpress install</title>
	<atom:link href="http://zackperdue.com/tag/easy-wordpress-install/feed" rel="self" type="application/rss+xml" />
	<link>http://zackperdue.com</link>
	<description>My Personal Blog and Portfolio</description>
	<lastBuildDate>Fri, 17 May 2013 15:24:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Install WordPress in 7 Seconds</title>
		<link>http://zackperdue.com/tutorials/install-wordpress-in-7-seconds</link>
		<comments>http://zackperdue.com/tutorials/install-wordpress-in-7-seconds#comments</comments>
		<pubDate>Thu, 08 Mar 2012 00:04:45 +0000</pubDate>
		<dc:creator>Zack</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[easy wordpress install]]></category>
		<category><![CDATA[install wordpress]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp easy install]]></category>

		<guid isPermaLink="false">http://zackperdue.com/?p=701</guid>
		<description><![CDATA[Doing the same repetitive thing over and over again can get boring. I install a lot of WordPress sites, so I thought there must be a quicker way. Well, lucky for us there is. I think its faster than a one click install, such as using some cPanel WordPress install tool. In fact, it literally takes just 7 seconds to install WordPress.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href='http://zackperdue.com/tutorials/install-wordpress-from-the-command-line' rel='bookmark' title='Install WordPress In 30 Seconds'>Install WordPress In 30 Seconds</a> <small>If you are anything like me, then you tend to...</small></li>
<li><a href='http://zackperdue.com/plugins/essential-wordpress-plugins' rel='bookmark' title='Must Have WordPress Plugins'>Must Have WordPress Plugins</a> <small>When you create a new website with WordPress for yourself,...</small></li>
</ol>
<img src='http://yarpp.org/pixels/fb6bed01d38e39f483fa90e1942f330b'/>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Doing the same repetitive thing over and over again can get boring. I install a lot of WordPress sites, so I thought there must be a quicker way. Well, lucky for us there is. I think its faster than a one click install, such as using some cPanel WordPress install tool. In fact, it literally takes just 7 seconds to install WordPress. What we will be using is a bash script to do our heavy lifting. Just to let you know, this is an improvement on <a href="http://zackperdue.com/tutorials/install-wordpress-from-the-command-line/" title="Install WordPress In 30 Seconds">my other post</a> outlining this same thing.</p>
<h4>What do I need?</h4>
<p>First of all, you really don&#8217;t need much. All you need to be able to log in using ssh and the script.</p>
<h4>The Bash Script</h4>
<p>Log into your server and create a bash script wherever you keep your scripts at. I recommend placing the script outside of the root.</p>
<p>The script: <code>wordpress.sh</code> </p>
<pre>
#!/ramdisk/bin/bash

wget http://wordpress.org/latest.zip
unzip latest.zip &#038;&#038; rm latest.zip
cp -r wordpress/* ./ &#038;&#038; rm -rf wordpress/
echo "Finished!"
</pre>
<ul>
<li><strong>Line 1: </strong>Location of your bash. Find yours by doing <code>which bash</code></li>
<li><strong>Line 3: </strong>Download the WordPress zip archive.</li>
<li><strong>Line 4: </strong>Unzip and then delete the archive.</li>
<li><strong>Line 5: </strong>Copy all the files from the <code>wordpress/</code> folder into your current directory</li>
<li><strong>Line 6: </strong>Lets you know when it completes.</li>
</ul>
<h4>Using it.</h4>
<p>Just create a directory where you would like to install WordPress, enter the directory. Then just type the location to your bash script and you are 7 seconds away from a painless WP install.</p>
<h4>Conclusion</h4>
<p>In a nutshell, your are not one of the fastest people to have ever installed WordPress. Let me know if you find this useful! And happy coding!</p>
<div class='yarpp-related-rss'>
<p>Related posts:</p><ol>
<li><a href='http://zackperdue.com/tutorials/install-wordpress-from-the-command-line' rel='bookmark' title='Install WordPress In 30 Seconds'>Install WordPress In 30 Seconds</a> <small>If you are anything like me, then you tend to...</small></li>
<li><a href='http://zackperdue.com/plugins/essential-wordpress-plugins' rel='bookmark' title='Must Have WordPress Plugins'>Must Have WordPress Plugins</a> <small>When you create a new website with WordPress for yourself,...</small></li>
</ol>
<img src='http://yarpp.org/pixels/fb6bed01d38e39f483fa90e1942f330b'/>
</div>
]]></content:encoded>
			<wfw:commentRss>http://zackperdue.com/tutorials/install-wordpress-in-7-seconds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  zackperdue.com/tag/easy-wordpress-install/feed ) in 0.10440 seconds, on Jun 19th, 2013 at 8:13 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Jun 19th, 2013 at 9:13 am UTC -->