<?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>WhereToHost.net &#187; Reviews</title>
	<atom:link href="http://www.wheretohost.net/news/category/hosting-providers/reviews/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wheretohost.net/news</link>
	<description>Your source for web hosting industry news.</description>
	<lastBuildDate>Sat, 20 Nov 2010 12:00:00 +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>Tutorial: Nginx Hosting and WordPress Optimizations on DreamHost VPS</title>
		<link>http://www.wheretohost.net/news/tutorial-nginx-hosting-and-wordpress-optimizations-on-dreamhost-vps/</link>
		<comments>http://www.wheretohost.net/news/tutorial-nginx-hosting-and-wordpress-optimizations-on-dreamhost-vps/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 09:07:44 +0000</pubDate>
		<dc:creator>TheAdmin</dc:creator>
				<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[Green Web Hosts]]></category>
		<category><![CDATA[Hosting Providers]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.wheretohost.net/news/?p=123</guid>
		<description><![CDATA[We at WhereToHost.net love optimizations and service improvements that make websites respond and simply deliver content faster. Often times the first optimizations that come to mind are options like caching, using a CDN (content delivery network), minify content, and sending compressed output. Often times one of the options that is overlooked is changing the server [...]]]></description>
			<content:encoded><![CDATA[<p>We at <a title="Where To Host" href="http://www.wheretohost.net/">WhereToHost.net</a> love optimizations and service improvements that make websites respond and simply deliver content faster. Often times the first optimizations that come to mind are options like caching, using a CDN (content delivery network), minify content, and sending compressed output. Often times one of the options that is overlooked is changing the server software that runs your website.</p>
<div id="attachment_124" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.wheretohost.net/news/wp-content/uploads/2010/10/apache_vs_nginx.png"><img class="size-medium wp-image-124" title="apache_vs_nginx" src="http://www.wheretohost.net/news/wp-content/uploads/2010/10/apache_vs_nginx-300x78.png" alt="" width="300" height="78" /></a><p class="wp-caption-text">Apache Vs Nginx</p></div>
<p style="text-align: left;">Most hosting companies currently run the Apache web server, there are other options and from our testing Nginx (pronounced engine-X) is a real stand out. Nginx is extremely good at serving static content quickly with low and predictable memory usage.</p>
<blockquote>
<p style="text-align: left;">Nginx is one of a handful of servers written to address the <a title="http://www.kegel.com/c10k.html" rel="nofollow" href="http://www.kegel.com/c10k.html">C10K problem</a>. Unlike traditional servers, Nginx doesn&#8217;t rely on threads to handle requests. Instead it uses a much more scalable event-driven (asynchronous) architecture. This architecture uses small, but more importantly, <em>predictable</em> amounts of memory under load. Even if you don&#8217;t expect to handle thousands of simultaneous requests, you can still benefit from Nginx&#8217;s high-performance and small memory footprint. Nginx scales in all directions: from the smallest VPS all the way up to clusters of servers.</p>
</blockquote>
<p style="text-align: left;">Generally the ability to change web servers is not something offered by most hosts, however DreamHost does give this option with their Web VPS service, this article is a tutorial on switching your Apache server to Nginx and setup the W3-Total-Cache plugin to speed up your WordPress install.</p>
<h2>Before We Being</h2>
<p>Switching to Nginx is a big change, there are major differences between Apache and Nginx, among the most important is that your .htaccess file (that magic thing that makes your pretty permalinks work) will NOT work! Prepare to have some downtime if you are using permalinks.</p>
<h2>Prepare for the Move</h2>
<p>I generally recommend making this switch one site at a time, that means if you have more then one website  on your VPS setup a second server running Nginx, leave your original running Apache, it&#8217;ll cut down on the amount of downtime you have during the move. For the sake of this tutorial we&#8217;re going to pretend you&#8217;re only running one website on the VPS.</p>
<p>1) Log into ftp and create a folder within your home directory called nginx, within that folder create another called yourdomain.com, so for wheretohost.net it looks like this:</p>
<p>nginx/yourdomain.com/</p>
<p>This folder is where your website specific nginx rules are going to go, although these rules  can be complex we&#8217;re all very thankful that the basic WordPress rules are very simple. You&#8217;re going to create a file with the extension .conf, I normally put my wordpress rules into a file called wordpress.conf and it contains the following:</p>
<blockquote>
<div id="_mcePaste">if (!-e $request_filename) {</div>
<div id="_mcePaste">rewrite ^.*$ /index.php last;</div>
<div id="_mcePaste">}</div>
</blockquote>
<div>So save that wordpress.conf file in your nginx/yourdomain.com/ folder. If you ever had to modify the .htaccess file make sure you go through and convert any other rules in there to nginx compatible conf files, again this can get complicated but for most WordPress installs the above will work.</div>
<h2>Making The Switch</h2>
<p>As long as you have a Web VPS, DreamHost makes this part easy. Visit the DreamHost control panel and visit the VPS-&gt;Configure Server page. You&#8217;ll want to change the HTTP Server setting to &#8220;nginx&#8221;. Enable the PHP cache setting for that extra special boost only opcode caching can provide, plus we&#8217;re going to be using that as the basis of our WP cache setup! Save your settings and go get a cup of coffee, it&#8217;s going to take anywhere from 5 to 10 minutes for the change to take affect.</p>
<div id="attachment_127" class="wp-caption alignleft" style="width: 310px"><a href="http://www.wheretohost.net/news/wp-content/uploads/2010/10/dh_panel_ps_configuration.png" target="_blank"><img class="size-full wp-image-127   " title="dh_panel_ps_configuration" src="http://www.wheretohost.net/news/wp-content/uploads/2010/10/dh_panel_ps_configuration.png" alt="" width="300" height="370" /></a><p class="wp-caption-text">VPS Configure Server Page</p></div>
<h2>Test Your Site</h2>
<p>Finished that coffee already? Awesome, well welcome back! It&#8217;s time to check out your website, it should be responding already and doing so rapidly, unless you had a special setup everything should simply work.</p>
<p>Now it&#8217;s time to setup so cache, so let&#8217;s visit your WordPress dashboard. Go on, log in&#8230; good stuff!</p>
<h2>Install W3-Total-Cache</h2>
<div id="attachment_134" class="wp-caption alignleft" style="width: 310px"><a href="http://www.wheretohost.net/news/wp-content/uploads/2010/10/w3_total_cache_settings.png" target="_blank"><img class="size-full wp-image-134 " title="w3_total_cache_settings" src="http://www.wheretohost.net/news/wp-content/uploads/2010/10/w3_total_cache_settings.png" alt="" width="300" height="370" /></a><p class="wp-caption-text">W3 Total Cache Settings</p></div>
<p>Check your plugins and make sure you disable any other cache plugins &#8211; such as WP-SuperCache or wp-cache.</p>
<p>Visit your Plugins-&gt;Add New page in the dashboard and do a search for W3, the first result should be W3 Total Cache. Click on the &#8220;Install Now&#8221; link, confirm the install request, if all went well on the next page you&#8217;ll be able to click on the &#8220;Activate Plugin&#8221; link.</p>
<h2>Configure Cache</h2>
<p>If everything has gone smoothly you&#8217;ve now got a new menu on the bottom left of your WordPress dashboard section, it&#8217;s called &#8220;Performance&#8221;. Go click it, then check out the screenshot, since you&#8217;re running on a VPS and have XCache enabled use the opcode caching method for page, database, object cache, and minify.</p>
<h2 style="text-align: center;">That&#8217;s it, enjoy!</h2>
        ]]></content:encoded>
			<wfw:commentRss>http://www.wheretohost.net/news/tutorial-nginx-hosting-and-wordpress-optimizations-on-dreamhost-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zenPhoto and DreamHost</title>
		<link>http://www.wheretohost.net/news/zenphoto-and-dreamhost/</link>
		<comments>http://www.wheretohost.net/news/zenphoto-and-dreamhost/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 08:41:48 +0000</pubDate>
		<dc:creator>TheAdmin</dc:creator>
				<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.wheretohost.net/news/?p=30</guid>
		<description><![CDATA[Video help for getting zenPhoto gallery running on DreamHost.]]></description>
			<content:encoded><![CDATA[<h4>DreamHost and zenPhoto Review</h4>
<p>When looking over DreamHost and their compatibility with zenPhoto I found that they have an &#8220;Easy One Click&#8221; install available. This means two things:</p>
<ol>
<li> It extremely simple to go from nothing to installed in no time flat.</li>
<li>DreamHost and zenPhoto are extremely compatible.</li>
</ol>
<p>In fact I put together a quick video of the installation process. Enjoy!</p>
<p style="text-align: center;">[See post to watch Flash video]
<p style="text-align: center;"><a title="DreamHost Signup" href="http://www.wheretohost.net/goto/dreamhost_promo">Signup For DreamHost</a>! &#8211; Get $50 Off With &#8220;WTH&#8221; Promo Code</p>
<blockquote>
<h4>Features of zenPhoto &#8211; from the <a title="zenPhoto Website" href="http://www.zenphoto.org/">zenPhoto website</a>.</h4>
<ul>
<li>Internationalization/localization</li>
<li>Multi-lingual titles and descriptions</li>
<li>Plugin system</li>
<li>Slideshow</li>
<li>Automatically generated thumbnails, custom crops possible!, and sized-down images</li>
<li>Upload via FTP or via the admin interface</li>
<li>Move/copy/rename images and albums without loosing any data</li>
<li>Upload images, albums (folders) or even zip-archives</li>
<li>Comments on images and albums with powerful spam filters</li>
<li>AJAX-powered edit-while-you-browse</li>
<li>Sub albums; interface for moving/renaming images and albums.</li>
<li>Video support for Flash Video (.flv), MPEG4 (.mp4), Quicktime (.mov) and 3GP (.3gp)</li>
<li>Audio support for MP3 and MP4</li>
<li>Password protection for gallery and albums</li>
<li>EXIF and IPTC support</li>
<li>Watermarks for images</li>
<li>Powerful search with boolean expressions</li>
<li>Tags: Categorize you images with tags</li>
<li>Image and album rating</li>
<li>Dynamic albums: Generate albums from searches!</li>
<li>Highly customizable theme engine</li>
<li>rss for gallery, albums and comments</li>
<li>Multiple administrative users with varying rights</li>
<li>Cruft free, search engine friendly URLs with mod_rewrite</li>
</ul>
</blockquote>
        ]]></content:encoded>
			<wfw:commentRss>http://www.wheretohost.net/news/zenphoto-and-dreamhost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 1/28 queries in 0.067 seconds using disk: basic

Served from: www.wheretohost.net @ 2012-02-09 15:31:08 -->
