<?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>Coactlab &#187; internet experiments</title> <atom:link href="http://coactlab.com/blog/category/internet-experiments/feed/" rel="self" type="application/rss+xml" /><link>http://coactlab.com/blog</link> <description>A SoCal Based Technology and Design Firm</description> <lastBuildDate>Tue, 21 Jun 2011 18:14:11 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>Blooming Bods E-commerce Implementation &amp; Design</title><link>http://coactlab.com/blog/bloomingbods/</link> <comments>http://coactlab.com/blog/bloomingbods/#comments</comments> <pubDate>Mon, 17 Aug 2009 00:34:33 +0000</pubDate> <dc:creator>Rob Edwards</dc:creator> <category><![CDATA[code]]></category> <category><![CDATA[internet experiments]]></category> <category><![CDATA[php]]></category> <category><![CDATA[projects]]></category> <category><![CDATA[Websites]]></category> <category><![CDATA[ecommerce]]></category> <category><![CDATA[internet]]></category> <category><![CDATA[shopify]]></category> <category><![CDATA[web]]></category> <category><![CDATA[website]]></category><guid
isPermaLink="false">http://coactlab.com/blog/?p=276</guid> <description><![CDATA[This is a new website I just finished for BloomingBods.com.  This is a Shopify Hosted E-commerce Solution with a custom design done by me!]]></description> <content:encoded><![CDATA[<p>This is a new website I just finished for <a
title="Bloomingbods.com" href="http://bit.ly/coactlabwebsite" target="_blank">BloomingBods.com</a>.  This is a <a
title="Shopify" href="http://bit.ly/shopify" target="_blank">Shopify</a> Hosted E-commerce Solution with a custom design done by <a
title="Coactlab Home" href="http://coactlab.com/blog" target="_blank">me</a>!</p><p><a
href="http://bit.ly/coactlabwebsite"><img
class="alignnone size-full wp-image-277" title="Blooming Bods" src="http://coactlab.com/blog/wp-content/uploads/2009/08/Blooming-Bods-Welcome-20090816.jpg" alt="Blooming Bods" width="479" height="457" /></a></p> ]]></content:encoded> <wfw:commentRss>http://coactlab.com/blog/bloomingbods/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>One Minute WordPress – Website</title><link>http://coactlab.com/blog/1minwordpress/</link> <comments>http://coactlab.com/blog/1minwordpress/#comments</comments> <pubDate>Wed, 11 Feb 2009 20:12:06 +0000</pubDate> <dc:creator>Rob Edwards</dc:creator> <category><![CDATA[internet experiments]]></category> <category><![CDATA[projects]]></category> <category><![CDATA[Websites]]></category><guid
isPermaLink="false">http://coactlab.com/blog/?p=78</guid> <description><![CDATA[I was writing an article for our blog @ Collaboration Chronicles.  The article talks about using WordPress to manage websites and I wanted to show people, using a screencast, how to install WordPress.  I came up with the idea for One Minute WordPress as a novel idea to show off the power and speed of [...]]]></description> <content:encoded><![CDATA[<p>I was writing <a
title="Using WordPress to Manage websites" href="http://collaborationchronicles.com/contribution/wordpress/" target="_blank">an article</a> for <a
title="Collaboration Chronicles" href="http://collaborationchronicles.com/" target="_blank">our blog</a> @ Collaboration Chronicles.  The article talks about using WordPress to manage websites and I wanted to show people, using a screencast, how to install WordPress.  I came up with the idea for One Minute WordPress as a novel idea to show off the power and speed of deploying a WordPress install.  In my attempts to speed through my installation, <a
title="One (3) Minute WordPress Install" href="http://www.screentoaster.com/watch/stUEJXQEVIR1pbQVlbX1JRVVZX/oneminutewordpress" target="_blank">my best time was around 3 minutes.</a> I needed to get rid of some of the inefficiencies in my method of installing.</p><ol><li>Eliminate going to the website, downloading and unpacking the install on my local computer, then uploading it to the server</li></ol><p>I remembered an article on <a
title="Hackaday Blog" href="http://hackaday.com" target="_blank">Hackaday</a> called <a
title="WordPress 2.7 upgrade in one line" rel="bookmark" href="http://hackaday.com/2008/12/10/wordpress-27-upgrade-in-one-line/" target="_blank">WordPress 2.7 upgrade in one line</a>.  I read through the article and liked the curl method much better than the wget approach I was going to use,  plus this used the rm command to remove a directory, which led me to come up with the final touch of deleting the wp-config-sample.php file in order to use the web based tool to create a new one.</p><p>So taking from the Chris Finke&#8217;s <a
title="Chris Finke's Twitter Post" href="http://twitter.com/cfinke/status/779468837" target="_blank">Twitter post</a> I modified it to suit my One Minute WordPress Installation:</p><h4>Open the Terminal and ssh into your server:</h4><p
style="text-align: left;"><code>ssh username yourserver.com</code></p><h4 style="text-align: left;">then type:</h4><p
style="text-align: left;"><code>curl http://wordpress.org/latest.zip -o "wp.zip" &amp;&amp; unzip wp.zip &amp;&amp; rm -rf ./wordpress/wp-config-sample.php</code></p><p
style="text-align: left;">This will<br
/> download and unpack the latest WordPress release, then delete the<br
/> wp-config-sample.php so we can use the web-based creator later.</p><p
style="text-align: left;"><p
style="text-align: left;">O.K., so I solved the big issue, which eliminated my local computer from the equation and allowed me to download and unpack straight to the server.  This shaved a huge chuck on time that was wasted on redundancy.  I am still working on a solution so you can use a php script on your server to create the mysql database without needing to log in to your host&#8217;s webpanel.  I&#8217;ll update the site oneminutewordpress.com as soon as I finish up on that side of things, but for now you can revel in the glory of a one minute manual WordPress Install.  Here&#8217;s a link to <a
title="Home" href="http://www.oneminutewordpress.com/"><br
/> <img
src="http://farm4.static.flickr.com/3315/3271999437_5372fc7130_o.png" border="0" alt="Home" width="491" height="69" /><br
/> </a>and<a
title="One Minute WordPress Instructions" href="http://www.oneminutewordpress.com/instructions" target="_blank">the step by step instructions.</a></p><p
style="text-align: left;"> ]]></content:encoded> <wfw:commentRss>http://coactlab.com/blog/1minwordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/19 queries in 0.059 seconds using xcache
Object Caching 139/294 objects using xcache

Served from: coactlab.com @ 2012-02-04 23:21:59 -->
