<?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>Web Hosting Review Shop &#187; Hosting Articles</title>
	<atom:link href="http://www.webhostingreviewshop.com/hosting/hosting-articles/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webhostingreviewshop.com</link>
	<description></description>
	<lastBuildDate>Tue, 23 Mar 2010 22:33:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install APC Cache (Latest Version) In 10 Steps</title>
		<link>http://www.webhostingreviewshop.com/how-to-install-apc-cache-latest-version-in-10-steps/</link>
		<comments>http://www.webhostingreviewshop.com/how-to-install-apc-cache-latest-version-in-10-steps/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 23:36:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting Articles]]></category>

		<guid isPermaLink="false">http://webhostingreviewshop.com/?p=238</guid>
		<description><![CDATA[If you&#8217;re unable to get xCache working, or are looking for other PHP caching solutions on your server to help reduce the load, APC cache is a great alternative. APC stands for Alternative PHP Cache and has been around for a long time, and now supports PHP 5.3 in its latest version we&#8217;re about to [...]


Related posts:<ol><li><a href='http://www.webhostingreviewshop.com/how-to-install-xcache-from-source/' rel='bookmark' title='Permanent Link: How to install xCache from source'>How to install xCache from source</a> <small>Running a caching solution on your VPS or dedicated server...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re unable to get xCache working, or are looking for other PHP caching solutions on your server to help reduce the load, APC cache is a great alternative. APC stands for Alternative PHP Cache and has been around for a long time, and now supports PHP 5.3 in its latest version we&#8217;re about to install.  APC is an open source cache alternative, and gets it&#8217;s updates from a handful of dedicated developers.</p>
<p><span id="more-238"></span>Simply follow along to get a good clean install of the latest APC version. All of these commands are run from SSH as the root or super user.</p>
<pre class="brush: bash;">
# cd /usr/src
# wget http://pecl.php.net/get/APC-3.1.3p1.tgz
# gzip -d APC-*
# tar -xf APC-*
# cd APC-*
# which php
# phpize
# ./configure –enable-apc –enable-apc-mmap –with-apxs –with-php-config=/usr/local/bin/php-config
# make
#make install
</pre>
<p>Line 1. Changes you to the /usr/src directory. {optional}<br />
Line 2. Gets the latest APC version<br />
Line 3. Unpacks the version<br />
Line 4. Unpacks the download<br />
Line 5. Moves you to the APC folder<br />
Line 6. Lets you know where PHP is, should be something like &#8216;/usr/local/bin/php&#8217;<br />
Line 7. Creates configuration files<br />
Line 8. Configures APC cache with the predefined options<br />
Line 9. Makes the install files<br />
Line 10. Installs APC to your system</p>
<p>Lastly we need to edit the php.ini file</p>
<pre class="brush: bash;">
# locate php.ini
# nano /location/of/php.ini
</pre>
<p>Search for &#8216;extension_dir&#8217; and below that place</p>
<pre class="brush: bash;">
extension=&quot;apc.so&quot;
apc.enabled=1
apc.shm_segments=1
apc.shm_size=128
apc.ttl=7200
apc.user_ttl=7200
apc.num_files_hint=1024
apc.mmap_file_mask=/tmp/apc.XXXXXX
apc.enable_cli=1
</pre>
<p>Finally restart apache</p>
<pre class="brush: bash;">
# service httpd restart
</pre>
<p>Alternative PHP Cache (APC) is now installed to your system. You can tweak the settings by editing the lines above in your php.ini file. (Don&#8217;t forget to restart every time). If you want to check if APC is working, simply create a php info page, and look for the section on APC. There is also an &#8220;apc.php&#8221; file inside your /usr/src/APC-* folder, you can move to a public location and view it from the internet for stats.</p>


<p>Related posts:<ol><li><a href='http://www.webhostingreviewshop.com/how-to-install-xcache-from-source/' rel='bookmark' title='Permanent Link: How to install xCache from source'>How to install xCache from source</a> <small>Running a caching solution on your VPS or dedicated server...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webhostingreviewshop.com/how-to-install-apc-cache-latest-version-in-10-steps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install xCache from source</title>
		<link>http://www.webhostingreviewshop.com/how-to-install-xcache-from-source/</link>
		<comments>http://www.webhostingreviewshop.com/how-to-install-xcache-from-source/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 04:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting Articles]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[xcache]]></category>

		<guid isPermaLink="false">http://webhostingreviewshop.com/?p=227</guid>
		<description><![CDATA[Running a caching solution on your VPS or dedicated server can squeeze a few extra users on it before you&#8217;ll have to upgrade to more expensive hardware, and should reduce load times for visitors. A total win-win situation for all involved.
wget http://xcache.lighttpd.net/pub/Releases/1.2.2/xcache-1.2.2.tar.gz
tar -zxf xcac-*.tar.gz
cd xcache
phpize
./configure --enable-xcache
make
make install
cat xcache.ini &#62;&#62; /etc/php.ini


Line 1. This gets the xcache [...]


Related posts:<ol><li><a href='http://www.webhostingreviewshop.com/how-to-install-apc-cache-latest-version-in-10-steps/' rel='bookmark' title='Permanent Link: How to install APC Cache (Latest Version) In 10 Steps'>How to install APC Cache (Latest Version) In 10 Steps</a> <small>If you&#8217;re unable to get xCache working, or are looking...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Running a caching solution on your VPS or dedicated server can squeeze a few extra users on it before you&#8217;ll have to upgrade to more expensive hardware, and should reduce load times for visitors. A total win-win situation for all involved.</p>
<pre class="code">wget http://xcache.lighttpd.net/pub/Releases/1.2.2/xcache-1.2.2.tar.gz
tar -zxf xcac-*.tar.gz
cd xcache
phpize
./configure --enable-xcache
make
make install
cat xcache.ini &gt;&gt; /etc/php.ini
</pre>
<p><span id="more-227"></span></p>
<p>Line 1. This gets the xcache files needed for install. Currently at version 1.2.2<br />
Line 2. This untars the package<br />
Line 3. Switches you to the xCache directory<br />
Line 4. Lets you install xCache without recompiling php<br />
Line 5. Sets configuration options<br />
Line 6. Prepares it for install<br />
Line 7. Installs<br />
Line 8. Adds the default xCache configuration options to your php.ini file. (Note: If your php.ini file is in a different location do a &#8216;locate php.ini&#8217; to find it)</p>
<p>After you&#8217;ve installed it you&#8217;ll need to change php.ini to ensure everything is okay.</p>
<pre class="code">nano /etc/php.ini</pre>
<p>Make sure that &#8216;zend_extension=../../xcache.so&#8217; appears before all other &#8216;zend_extension=&#8230;.&#8217; or else you&#8217;ll have problems.</p>
<p>Just for good measure, restart php and apache to ensure nothing fails. Enjoy your new optimized caching server!</p>


<p>Related posts:<ol><li><a href='http://www.webhostingreviewshop.com/how-to-install-apc-cache-latest-version-in-10-steps/' rel='bookmark' title='Permanent Link: How to install APC Cache (Latest Version) In 10 Steps'>How to install APC Cache (Latest Version) In 10 Steps</a> <small>If you&#8217;re unable to get xCache working, or are looking...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webhostingreviewshop.com/how-to-install-xcache-from-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing the correct hosting company</title>
		<link>http://www.webhostingreviewshop.com/choosing-the-correct-hosting-company/</link>
		<comments>http://www.webhostingreviewshop.com/choosing-the-correct-hosting-company/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 00:37:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting Articles]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[picking]]></category>

		<guid isPermaLink="false">http://webhostingreviewshop.com/?p=218</guid>
		<description><![CDATA[Whenever you decide you want to launch a website one of the first things you&#8217;ll need, is the hosting services. Luckily sites like this one exist that let users rate their hosting experiences and you don&#8217;t have to worry about if the hosting company is good or not, or if they pay out the highest [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Whenever you decide you want to launch a website one of the first things you&#8217;ll need, is the hosting services. Luckily sites like this one exist that let users rate their hosting experiences and you don&#8217;t have to worry about if the hosting company is good or not, or if they pay out the highest affiliate sale for their number one rating.</p>
<p><strong>Specialized Hosting:</strong><br />
Choosing the correct hosting company really depends on the project. For instance if you use a popular script like vBulletin, there are hosting companies who specialize in their hosting for them. <a href="http://webhostingreviewshop.com/hosting/urljet ">URLJet</a> is one example of a provider who would be a specialized hosting company.<br />
<span id="more-218"></span></p>
<p><strong>Hosting for SEO:</strong><br />
Your websites speed is a ranking factor of how well it does in search results. If you have a slow site, then you&#8217;re ranking could be negatively effected. If you have a fast site, your rankings would positively be effected. While this maybe a small ranking factor it can also be a deal breaker for your visitors. If your site is taking over 5 seconds to load, then expect the visitor to be on his way out before he ever gets a look at it. If you have a project where it&#8217;s success is vital, completely skip shared hosting environments and go with a VPS provider. Reading <a href="http://webhostingreviewshop.com/hosting/vps-providers/">user reviews of VPS hosting providers</a> can be a good way to learn about what companies to go with, and who to avoid.</p>
<p><strong>The Best Support:</strong><br />
No one ever wants to experience the dreaded down time, especially when its something out of your hands. Having a hosting company with a great support department is essential to your hosting experience. If the hosting support team doesn&#8217;t know what they&#8217;re doing, expect it to be a bad overall experience. The best support teams for hosting companies out there I&#8217;ve seen will help you every step of the way, and will actually work improving your sites load times by making suggestions to improve it, don&#8217;t settle for anything less when it comes to support.</p>
<p><strong>Don&#8217;t rely solely on numbers, and don&#8217;t get scared of them either:</strong><br />
Most hosts these days are really throwing the &#8220;Unlimited&#8221; term around. Nothing is or can be unlimited, and it couldn&#8217;t be more true in the hosting industry. This is a common tactic known as &#8220;overselling&#8221; and you shouldn&#8217;t make your decision based off of it. Don&#8217;t be afraid to go with a host who oversells either, usually they are still reliable and provide good service for the price you&#8217;re paying.</p>
<p><strong>Find a hosting company, who is only a hosting company:</strong><br />
It maybe tempting to get hosting after you&#8217;ve purchased a domain name, especially if you can do it all in one spot. This generally leads to major disappointment, and paying to much for hosting services that are sub-par and could be found cheaper and better else where. A company who&#8217;s primary focus is on something like domain names, won&#8217;t be able to provide the top level of support they should, and you shouldn&#8217;t have to settle for less!</p>
<p><strong>Find a host that gives back:</strong><br />
Most hosting companies usually give you something in return for using their services. Some hosting companies will provide you with over $100 in coupons to services like Google Adwords, or Yahoo search marketing, and some provide them for Miva merchant accounts. If you&#8217;re looking for a hosting company that gives back to the environment rather than your pocket books check out <a href="http://webhostingreviewshop.com/thinkhost-eco-friendly-hosting/">Think Host and their eco friendly approach to hosting</a>.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.webhostingreviewshop.com/choosing-the-correct-hosting-company/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Hosting Review Shop FAQ Section</title>
		<link>http://www.webhostingreviewshop.com/post/</link>
		<comments>http://www.webhostingreviewshop.com/post/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 03:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting Articles]]></category>
		<category><![CDATA[articles]]></category>

		<guid isPermaLink="false">http://webhostingreviewshop.com/?p=200</guid>
		<description><![CDATA[This is just a quick update to the site to let everyone know we&#8217;ve received a fair number of questions about the site and how it works. We&#8217;ve published a general all purpose Hosting FAQ that not only tells you how our site works, but also answers some basic hosting questions. If you have a [...]


Related posts:<ol><li><a href='http://www.webhostingreviewshop.com/liquid-web-dedicated-servers-review/' rel='bookmark' title='Permanent Link: Liquid Web Dedicated Servers Review'>Liquid Web Dedicated Servers Review</a> <small>Liquid Web provides enterprise class dedicated servers at an affordable...</small></li><li><a href='http://www.webhostingreviewshop.com/globat-shared-web-hosting-review/' rel='bookmark' title='Permanent Link: Globat Shared Web Hosting Review'>Globat Shared Web Hosting Review</a> <small>Globat offers superior, reliable and affordable Web Hosting to individuals...</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>This is just a quick update to the site to let everyone know we&#8217;ve received a fair number of questions about the site and how it works. We&#8217;ve published a general all purpose Hosting FAQ that not only tells you how our site works, but also answers some basic hosting questions. If you have a question, feel free to use the contact us form and ask, other wise check the new <a href="http://webhostingreviewshop.com/hosting-faq/">Hosting FAQ Section</a>.</p>


<p>Related posts:<ol><li><a href='http://www.webhostingreviewshop.com/liquid-web-dedicated-servers-review/' rel='bookmark' title='Permanent Link: Liquid Web Dedicated Servers Review'>Liquid Web Dedicated Servers Review</a> <small>Liquid Web provides enterprise class dedicated servers at an affordable...</small></li><li><a href='http://www.webhostingreviewshop.com/globat-shared-web-hosting-review/' rel='bookmark' title='Permanent Link: Globat Shared Web Hosting Review'>Globat Shared Web Hosting Review</a> <small>Globat offers superior, reliable and affordable Web Hosting to individuals...</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.webhostingreviewshop.com/post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
