<?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>Witheringtree &#187; Website</title>
	<atom:link href="http://www.witheringtree.com/tag/website/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.witheringtree.com</link>
	<description>If a tree falls in the forest and no one is around to hear it fall… yeah, it still makes a sound.</description>
	<lastBuildDate>Sat, 05 May 2012 15:15:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Sorry</title>
		<link>http://www.witheringtree.com/2012/02/sorry/</link>
		<comments>http://www.witheringtree.com/2012/02/sorry/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 15:55:30 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Self]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=968</guid>
		<description><![CDATA[I&#8217;ve been horrible with making posts. I keep forgetting or I tell myself I&#8217;ll do it tomorrow. I&#8217;ll try to do better from now on. Soon to come though, at some point I want to switch away from WordPress and build this site on PyroCMS. PyroCMS is build on Codeigniter, which I love and know &#8230; <a href="http://www.witheringtree.com/2012/02/sorry/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been horrible with making posts. I keep forgetting or I tell myself I&#8217;ll do it tomorrow. I&#8217;ll try to do better from now on.</p>
<p>Soon to come though, at some point I want to switch away from WordPress and build this site on PyroCMS. PyroCMS is build on Codeigniter, which I love and know try well. So maybe I can build some plugins for it after I switch over. I&#8217;m also learning Backbone.js and Node.js so that should be interesting. Eventually I&#8217;ll post code also.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2012/02/sorry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up Virtual Hosts in Zend Server CE on OS X</title>
		<link>http://www.witheringtree.com/2011/07/setting-up-virtual-hosts-in-zend-server-ce-on-os-x/</link>
		<comments>http://www.witheringtree.com/2011/07/setting-up-virtual-hosts-in-zend-server-ce-on-os-x/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 00:40:19 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Tips/Tricks]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=930</guid>
		<description><![CDATA[What is a virtual host? Virtual hosting is a method for hosting multiple domain names on a computer using a single IP address. Shared hosting uses this same method for all of the sites they host. Aren&#8217;t those URLs you use in Zend Server getting pretty ugly? Would you like to change http://localhost/my/awesome/website into http://www.super-awesome.local &#8230; <a href="http://www.witheringtree.com/2011/07/setting-up-virtual-hosts-in-zend-server-ce-on-os-x/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>
What is a virtual host? Virtual hosting is a method for hosting multiple domain names on a computer using a single IP address. Shared hosting uses this same method for all of the sites they host. Aren&#8217;t those URLs you use in Zend Server getting pretty ugly? Would you like to change http://localhost/my/awesome/website into http://www.super-awesome.local You can!
</p>
<p>
Last time we talked about general Zend Server setup. This time, we will be going through setting up virtual hosts on your local machine. This again will involve Terminal.
</p>
<p>
This assumes you have Zend Server set up and running. If it is not, <a href="http://www.witheringtree.com/2011/07/installing-zend-server-ce-on-os-x-a-guide-for-the-terminal-timid/" title="Installing Zend Server CE on OS X: A Guide For the Terminal Timid">go here</a>.
</p>
<p><span id="more-930"></span></p>
<ol>
<li>
<p>
		Open Terminal. Terminal can be found at /Applications/Utilities/Terminal.app
	</p>
<p>
		You can also open it from Spotlight by typing &#8220;Terminal&#8221;
	</p>
</li>
<li>
<p>
		We are going to edit our httpd.conf file. In Terminal type:<br />
		<code><br />
			sudo vi /usr/local/zend/apache2/conf/httpd.conf<br />
		</code>
	</p>
<p>
		Enter your password if prompted
	</p>
</li>
<li>
<p>
		Use the up, down, left, right arrow keys to scroll down to where you see:<br />
		<code><br />
			# Virtual hosts<br />
			#Include conf/extra/httpd-vhosts.conf<br />
		</code>
	</p>
</li>
<li>
<p>
		In Terminal press &#8220;i&#8221;. This will take you into edit mode to edit the file.
	</p>
</li>
<li>
<p>
		Remove the &#8220;#&#8221; before &#8220;Include&#8221;. It should look like this now:<br />
		<code><br />
			# Virtual hosts<br />
			Include conf/extra/httpd-vhosts.conf<br />
		</code>
	</p>
</li>
<li>
<p>
		Press the escape key to exit out of edit mode. Press &#8220;:x&#8221; to save your changes.
	</p>
</li>
<li>
<p>
		Now we are going to edit our httpd-vhosts.conf file. In Terminal type:<br />
		<code><br />
			sudo vi /usr/local/zend/apache2/conf/extra/httpd-vhosts.conf<br />
		</code>
	</p>
<p>
		Enter your password when prompted
	</p>
</li>
<li>
<p>
		In Terminal press &#8220;i&#8221; to go into edit mode.
	</p>
</li>
<li>
<p>
		Use the up, down, left, right arrow keys to scroll down to where you see:<br />
		<code><br />
			NameVirtualHost *:10088<br />
		</code>
	</p>
<p>
		In the previous tutorial we change the port to 80. So now we have to change this line to read:<br />
		<code><br />
			NameVirtualHost *:80<br />
		</code>
	</p>
</li>
<li>
<p>
		Let&#8217;s say you want to have a local virtual host for http://www.super-awesome.local that needs to be pointed at the /Users/YOUR_USERNAME/Sites/super-awesome directory. We need to add the following to the httpd-vhosts.conf file:<br />
		<code><br />
			&lt;VirtualHost *:80&gt;<br />
			&nbsp;&nbsp;&nbsp;&nbsp;DocumentRoot "/Users/YOUR_USERNAME/Sites/super-awesome"<br />
			&nbsp;&nbsp;&nbsp;&nbsp;ServerName www.super-awesome.local<br />
			&nbsp;&nbsp;&nbsp;&nbsp;ServerAlias super-awesome.local<br />
			&lt;/VirtualHost&gt;<br />
		</code>
	</p>
<p>
		* Note: .local is just what I picked. You can change that to .dev or .blah or whatever you like. Try to stay away from common domain extensions like .com or .net. And, yes, you can end it with more than one extension like .foo.bar
	</p>
</li>
<li>
<p>
		Press the escape key to exit out of edit mode. Press &#8220;:x&#8221; to save your changes.
	</p>
</li>
<li>
<p>
		It&#8217;s probably a good idea to make sure we didn&#8217;t mess up syntax or spelling. In Terminal type:<br />
		<code><br />
			sudo apachectl configtest<br />
			sudo apachectl graceful<br />
		</code>
	</p>
<p>
		Enter your password if prompted
	</p>
<p>
		If there are any errors they will be displayed to you. Repeat steps 10 and 11 as many times as needed.
	</p>
</li>
<li>
<p>
		Let&#8217;s go ahead and restart Zend Server so it can get the changes. In Terminal type:<br />
		<code><br />
			sudo /usr/local/zend/bin/zendctl.sh restart<br />
		</code>
	</p>
<p>
		Enter your password if prompted
	</p>
</li>
<li>
<p>
		Browse to either http://www.super-awesome.local or http://super-awesome.local and your site should display
	</p>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2011/07/setting-up-virtual-hosts-in-zend-server-ce-on-os-x/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Site Updates</title>
		<link>http://www.witheringtree.com/2010/11/site-updates/</link>
		<comments>http://www.witheringtree.com/2010/11/site-updates/#comments</comments>
		<pubDate>Sat, 13 Nov 2010 23:41:59 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=868</guid>
		<description><![CDATA[It only took me 5 months but I finally updated the site from WordPress 2.9 to Wirdpress 3. I wanted to redesign the theme to work better with the new features in WordPress 3. At the same time, I updated some functionality. I also removed the dropdown navigation in the menu. I also moved the &#8230; <a href="http://www.witheringtree.com/2010/11/site-updates/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It only took me 5 months but I finally updated the site from WordPress 2.9 to Wirdpress 3. I wanted to redesign the theme to work better with the new features in WordPress 3. At the same time, I updated some functionality. I also removed the dropdown navigation in the menu. I also moved the site from a Windows server to a Linux server. Now I can take advantage of .htaccess files.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2010/11/site-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Naked Day</title>
		<link>http://www.witheringtree.com/2010/04/css-naked-day/</link>
		<comments>http://www.witheringtree.com/2010/04/css-naked-day/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 00:34:34 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Self]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Cool]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=754</guid>
		<description><![CDATA[Yesterday was CSS Naked Day. CSS Naked Day was thought up by Dustin Diaz. The purpose of CSS Naked Day is to to promote Web Standards; including proper use of XHTML, semantic markup, and a good hierarchy structure. In other words it disables your CSS for for a 24 hour period in order to promote &#8230; <a href="http://www.witheringtree.com/2010/04/css-naked-day/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="CSS Naked Day" rel="lightbox;handleOversize=drag" href="http://www.witheringtree.com/wp-content/uploads/2010/04/css_naked_day.png"><img class="size-medium wp-image-755 alignright" title="CSS Naked Day" src="http://www.witheringtree.com/wp-content/uploads/2010/04/css_naked_day-48x300.png" alt="" width="48" height="300" /></a>Yesterday was <a title="CSS Naked Day" href="http://naked.dustindiaz.com/" target="_blank">CSS Naked Day</a>. CSS Naked Day was thought up by Dustin Diaz. The purpose of CSS Naked Day is to to promote Web Standards; including proper use of XHTML, semantic markup, and a good hierarchy structure. In other words it disables your CSS for for a 24 hour period in order to promote web standards.</p>
<p>I forgot that yesterday was CSS Naked Day. So when I went to my site, I was pissed that my site was jacked up. My first thought was that my site was hacked. The styling was gone but all of the content was there. Which didn&#8217;t make sense why a hacker would do that. That I realized what happened.</p>
<p>That was my first CSS Naked Day that I participated in. It was pretty cool. Click on the image to see a screenshot of my site during CSS Naked Day. Also, a &#8220;thank you&#8221; goes to Aja Lupas for creating the <a href="http://www.ajalapus.com/downloads/css-naked-day/" target="_blank">WordPress CSS Naked Day plugin</a> that I used.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2010/04/css-naked-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>.htaccess vs. MAMP</title>
		<link>http://www.witheringtree.com/2010/03/htaccess-vs-mamp/</link>
		<comments>http://www.witheringtree.com/2010/03/htaccess-vs-mamp/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 05:13:58 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[Tips/Tricks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=724</guid>
		<description><![CDATA[This took me three days to figure out so hopefully this saves someone else a little bit of time. The most common use of .htaccess files is removing file extensions, such as index.php, from a website URL. They are much ore powerful than that though. I&#8217;m not going to go into the details about what &#8230; <a href="http://www.witheringtree.com/2010/03/htaccess-vs-mamp/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This took me three days to figure out so hopefully this saves someone else a little bit of time.</p>
<p>The most common use of .htaccess files is removing file extensions, such as <em>index.php</em>, from a website URL. They are much ore powerful than that though. I&#8217;m not going to go into the details about what .htaccess files can do, shouldn&#8217;t be used for, best practices, or anything else like that. I&#8217;m going to show you how to get .htaccess files set up and working with MAMP.</p>
<p><img class="size-full wp-image-726 alignleft" title="MAMP" src="http://www.witheringtree.com/wp-content/uploads/2010/03/mamp_logo.png" alt="" width="80" height="80" />The only requirements are that you have a Mac (that&#8217;s the first &#8216;M&#8217; in MAMP) and the <a href="http://www.mamp.info" target="_blank">MAMP software</a> already installed. I am using the latest version. MAMP will install everything else you need (Apache, MySQL, and PHP which is &#8216;AMP&#8217; in MAMP) to get up and running so you can start making your own sites locally.</p>
<p>First and foremost, the location of your website files in MAMP need to go in <em>/Applications/MAMP/htdocs/</em> That may sound like common sense but that&#8217;s what took the longest for me to figure out. I had my files in <em>/Applications/MAMP/bin/mamp/</em> which is where all of the files for the start page is located. I just made a folder inside there and was going to the site at http://localhost:8888/MAMP/<em>myfolder</em> No matter what I did, the .htaccess file would not work at all from within that directory. So make sure your websites files are in <em>/Applications/MAMP/htdocs/</em> or a folder within.</p>
<p><img class="size-full wp-image-725 alignleft" title="Hidden Files Widget" src="http://www.witheringtree.com/wp-content/uploads/2010/03/hidden_files_widget.png" alt="" width="100" height="67" />The next thing you need to know is &#8216;htaccess&#8217; isn&#8217;t the file extension and there isn&#8217;t a file name on the file. The dot at the front typically means it is a hidden file on Unix based operating systems (which the Mac is). So you will need to show the hidden files on your machine. There are a few ways to do this. One of the easiest ways is to use a Dashboard widget. <a href="http://www.apple.com/downloads/dashboard/developer/hiddenfiles.html" target="_blank">Hidden Files Widget</a> is a great widget for this. If the hidden files are hidden, the button will say &#8216;Show&#8217;. If the hidden files are visible, the button will say &#8216;Hide&#8217;. It can&#8217;t get any more simple that that. Install the widget then click the &#8216;Show&#8217; button. Sometimes the desktop icons won&#8217;t come back automatically. If they don&#8217;t come back after a minute, click on the Finder icon in the dock and they should come back. Now, go to wherever your website files are located. If there is a .htaccess file in the folder, skip the next paragraph. If it is not there, read the next paragraph.</p>
<p>Here is the catch. It&#8217;s tough to create a .htaccess file because the Mac thinks &#8216;htaccess&#8217; is the file extension but you didn&#8217;t give the file a name. So it won&#8217;t just let you do it. WordPress creates a .htaccess file for you when you set up a blog locally. I believe Drupal does the same thing but I&#8217;m not 100% positive on that. Other applications possibly do as well. If you aren&#8217;t installing a CMS like that, you can always <a href="http://www.htaccesseditor.com/" target="_blank">create a custom one and download it</a>. Below is a very basic example of a .htaccess file that I typically use. Once you have a .htaccess file, put it in the root of where your website will live.</p>
<p>The .htaccess file can be opened with TextEdit. You can open it with Dreamweaver or almost anything you want. Here is an example of a typical .htaccess file</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># BEGIN My_Website
</span><span style="color: #339933;">&lt;</span>IfModule mod_rewrite<span style="color: #339933;">.</span>c<span style="color: #339933;">&gt;</span>
	RewriteEngine On
	<span style="color: #666666; font-style: italic;">#RewriteBase /
</span>	RewriteBase <span style="color: #339933;">/</span>mywebsite<span style="color: #339933;">/</span>
	RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>REQUEST_FILENAME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!-</span>f
	RewriteCond <span style="color: #339933;">%</span><span style="color: #009900;">&#123;</span>REQUEST_FILENAME<span style="color: #009900;">&#125;</span> <span style="color: #339933;">!-</span>d
	RewriteRule <span style="color: #339933;">.</span> <span style="color: #339933;">/</span>index<span style="color: #339933;">.</span>php <span style="color: #009900;">&#91;</span>L<span style="color: #009900;">&#93;</span>
	<span style="color: #666666; font-style: italic;">#RewriteRule ^(.*)$ /index.php/$1 [L]
</span><span style="color: #339933;">&lt;/</span>IfModule<span style="color: #339933;">&gt;</span>
<span style="color: #666666; font-style: italic;"># END My_Website</span></pre></td></tr></table></div>

<p>The hash marks (#) are comments. I&#8217;ll talk a little about the second and third commenta in a second.</p>
<p>If you are developing a site locally, your files may not be in the root of the <em>/Applications/MAMP/htdocs/</em> folder since you may be working on more than one website. That is what the <em>RewriteBase</em> is for. It specifies where the root of your website is in accordance with the root of the domain or local root. In this example, my website and it&#8217;s files are in a folder called <em>mywebsite</em> which is inside my <em>/Applications/MAMP/htdocs/</em> folder. Since <em>/Applications/MAMP/htdocs/</em> is my root folder, I don&#8217;t have to put that in the path. I just have to put the path from the root folder. If you notice, on the line above that (line 4), I have commented out that line with a hash. When you upload the files to your website, uncomment this line (line 4) and comment out the line after it (line 5). That way the .htaccess file works when you get it on the actual site. If you are not uploading the files to the root of your website, set the path accordingly.</p>
<p>The third comment (line 9) is a variation of the line above it (line 8). Both work pretty much the same. You don&#8217;t have to have the first and last comment lines. You can delete them and it won&#8217;t effect anything.</p>
<p>That is literally all I had to do to get the site working. I saw sites that wanted me to edit httpd.conf files and php.ini files and all kinds of files under the sun. I didn&#8217;t have to though. If you do need to mess with those files, there are a couple pretty good walkthroughs to help you out <a href="http://objectmix.com/apache/675017-htaccess-files-mac-mamp.html" target="_blank">here</a> and <a href="http://rexselin.wordpress.com/2006/07/28/making-mod-rewrite-and-htaccess-work-on-mac-os-x/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2010/03/htaccess-vs-mamp/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Welcome to the new blog</title>
		<link>http://www.witheringtree.com/2009/09/welcome-to-the-new-blog/</link>
		<comments>http://www.witheringtree.com/2009/09/welcome-to-the-new-blog/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 06:44:04 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=9</guid>
		<description><![CDATA[It&#8217;s official. I have moved to WordPress. I used to be on Mango Blog but decided to switch over to WordPress when I decided to start learning PHP. I&#8217;ll be migrating all of the Mango Blog posts over to WordPress. If what you are looking for isn&#8217;t here yet, come back tomorrow and it may &#8230; <a href="http://www.witheringtree.com/2009/09/welcome-to-the-new-blog/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s official. I have moved to WordPress. I used to be on Mango Blog but decided to switch over to WordPress when I decided to start learning PHP. I&#8217;ll be migrating all of the Mango Blog posts over to WordPress. If what you are looking for isn&#8217;t here yet, come back tomorrow and it may be back up by then.</p>
<p>[Update] I am adding in some of my previous posts (manually of course), and for some reason Mango Blog had a bunch of my posts in May. I&#8217;d say 3/4 of my posts were in May. Which isn&#8217;t right. Mango Blog went screwy somewhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2009/09/welcome-to-the-new-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CrystalTech Support</title>
		<link>http://www.witheringtree.com/2009/05/crystaltech-support/</link>
		<comments>http://www.witheringtree.com/2009/05/crystaltech-support/#comments</comments>
		<pubDate>Mon, 11 May 2009 02:05:19 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Coldfusion]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Fail]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=113</guid>
		<description><![CDATA[I decided to shut down my site and start from the ground up. The site was about 4 years old and was in need of a redesign. So I decided to make it a blog. In the blog I cold put all my source code and everything else I wanted to do. My site was &#8230; <a href="http://www.witheringtree.com/2009/05/crystaltech-support/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I decided to shut down my site and start from the ground up. The site was about 4 years old and was in need of a redesign. So I decided to make it a blog. In the blog I cold put all my source code and everything else I wanted to do.</p>
<p>My site was on a Coldfusion 7 server. So I requested that my host, CrystalTech, move it to a Coldfusion 8 server. I submitted the form and it said it would take up to 24 hours. After I woke up the next day I was excited to start working on the site. The problem was, after 31 hours, they still hadn&#8217;t moved it to the new server. So I submitted a ticket asking what the issue was. Apparently they never got the request. I have trouble believing this because I got the confirmation email that the request was submitted. So I had to resubmit the request and wait another 24 hours in order to start working on the site.</p>
<p>Ever since CrystalTech got bought up by Newtek, their server has really gone downhill. Every time I request something to be done, I have to stay on them to make sure they do it. Otherwise they mess it up somehow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2009/05/crystaltech-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mando Blog</title>
		<link>http://www.witheringtree.com/2009/05/mando-blog/</link>
		<comments>http://www.witheringtree.com/2009/05/mando-blog/#comments</comments>
		<pubDate>Wed, 06 May 2009 06:07:06 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Website]]></category>
		<category><![CDATA[Mango Blog]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/index.php/2009/05/mando-blog/</guid>
		<description><![CDATA[Welcome to v4 of my blog! Sort of. The first version I made myself. After 5 years of using it, it became weak and sloppy. So I moved to CFBloggy. The person that wrote that pissed me off by not answering my questions. So then I moved to BlogCFC. I hadn&#8217;t even released the BlogCFC &#8230; <a href="http://www.witheringtree.com/2009/05/mando-blog/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Welcome to v4 of my blog! Sort of. The first version I made myself. After 5 years of using it, it became weak and sloppy. So I moved to CFBloggy. The person that wrote that pissed me off by not answering my questions. So then I moved to <a href="http://www.blogcfc.com" target="_blank">BlogCFC</a>. I hadn&#8217;t even released the BlogCFC version when someone told me about the greatness that is <a href="http://www.mangoblog.org/" target="_blank">Mango Blog</a>. It&#8217;s only about a year old but it seems like features for it are going to be coming down for it left and right. So I decided to jump on the bandwagon now. My biggest problem with it is code blocks. You have to disable Javascript in order to add a block of code so it colors it. Once you have submitted the post you can re-enable Javascript. What a hassle!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2009/05/mando-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Overhaul</title>
		<link>http://www.witheringtree.com/2009/05/blog-overhaul/</link>
		<comments>http://www.witheringtree.com/2009/05/blog-overhaul/#comments</comments>
		<pubDate>Wed, 06 May 2009 05:45:14 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/index.php/2009/05/blog-overhaul/</guid>
		<description><![CDATA[I started on a new blog, as you can see. The old blog I wrote myself and it was more irritating and clunky than useful. This one is using a ColdFusion blog application called CFBloggy. So far I am happy with it. So be patient with me while I get everything up and running. The &#8230; <a href="http://www.witheringtree.com/2009/05/blog-overhaul/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I started on a new blog, as you can see. The old blog I wrote myself and it was more irritating and clunky than useful. This one is using a ColdFusion blog application called <a href="http://www.cfbloggy.com/" target="_blank">CFBloggy</a>. So far I am happy with it. So be patient with me while I get everything up and running. The old blog posts, more than likely, will not be ported over to this one. They are lost forever. By the way, this is the new address to my blog. Eventually the old one will redirect you here. That will happen when I get v3 of the site up. This is step one towards v3 of my site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2009/05/blog-overhaul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site</title>
		<link>http://www.witheringtree.com/2009/05/new-site/</link>
		<comments>http://www.witheringtree.com/2009/05/new-site/#comments</comments>
		<pubDate>Wed, 06 May 2009 02:23:41 +0000</pubDate>
		<dc:creator>David Freerksen</dc:creator>
				<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.witheringtree.com/?p=55</guid>
		<description><![CDATA[Big changes are coming to Witheringtree. As you can see, I started the site over from the ground up. I still have all of my posts from the old site. It&#8217;s going to take me some time to get them back up but I will get them back up. After I get all of the &#8230; <a href="http://www.witheringtree.com/2009/05/new-site/" title="Continue reading">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Big changes are coming to Witheringtree. As you can see, I started the site over from the ground up. I still have all of my posts from the old site. It&#8217;s going to take me some time to get them back up but I will get them back up. After I get all of the posts back up I am going to get a new skin for the blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.witheringtree.com/2009/05/new-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

