<?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>vexxblog</title>
	<atom:link href="http://vexxhost.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://vexxhost.com/blog</link>
	<description>A Blog About OpenStack, Cloud &#38; Site Performance</description>
	<lastBuildDate>Sat, 23 Mar 2013 00:50:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>WordPress Performance Tip: Controlling Cronjobs</title>
		<link>http://vexxhost.com/blog/2013/03/22/decrease-wordpress-page-load-time/</link>
		<comments>http://vexxhost.com/blog/2013/03/22/decrease-wordpress-page-load-time/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 00:50:11 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[Website Performance]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=271</guid>
		<description><![CDATA[WordPress is one of the easiest scripts to install on any web hosting service, however, there are a few parts of WordPress which are designed for ease of use instead of performance, which means that when your traffic picks up, those issues become significant bottlenecks on your blog and take up unneeded resources.]]></description>
				<content:encoded><![CDATA[<p>So, your blog is growing fast or you’re worried that your visitors will start increasing quickly but your WordPress based website or blog is slowly starting to slow down.  You’re panicking and you start to get worried that your rankings will start falling down, visitors will get frustrated at your site and your site might possibly go down.</p>
<p>Well, we’re here to give you a simple and quick tip to reduce the resource usage of your WordPress blog while increasing the overall performance due to the decreased load that your blog will generate, all you need is 5 minutes and FTP access to your blog.</p>
<p>The <code>wp-cron.php</code> file runs with every single page load by default on WordPress blogs, which means that for every 1 request you get, you generate another one.  This effectively translates to 1000 page views are actually making 2000 requests, which doesn’t make sense!</p>
<p>You see, WordPress was designed to be extremely easy to use, therefore, this easy  to use system was put in place under the assumption that it was plug and play, because you never had to worry about it before.  However, they assume once your traffic gets busy, you’d likely take care of it anyways.</p>
<p>Before we start, make sure that you’re comfortable with your using FTP and editing PHP files.  Also, you want to always take backups of your website and files before making any changes to always go back if you have any problems.</p>
<ol>
<li>Disable the <code>wp-cron.php</code> by adding the following line anywhere in your <code>wp-config.php</code> file.  You should put this line right after the <code>&lt;?php</code> line.
<pre>define('DISABLE_WP_CRON', true);</pre>
</li>
<li>Now, we’ve disabled the <code>wp-cron.php</code>, but some of your plugnis most likely rely on it, not to worry, all you have to do is create a cronjob with the following command.
<pre>wget –q http://mydomain.com/wp-cron.php -O /dev/null</pre>
<p>If you’re using cPanel, you can look at the documentation on how to create a cronjob right <a href="http://docs.cpanel.net/twiki/bin/view/AllDocumentation/CpanelDocs/CronJobs" target="_blank">here</a>.</li>
</ol>
<p>Voilà.  Your website’s resource usage has effectively been cut in half and now your server will start performing much better overall.  We’ll continue to post quick performance tips from time to time, so make sure to keep up with our blog!</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2013/03/22/decrease-wordpress-page-load-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing WordPress on the Cloud using Nginx, PHP-FPM and MySQL</title>
		<link>http://vexxhost.com/blog/2012/12/16/installing-wordpress-on-the-cloud-using-nginx-php-fpm-and-mysql/</link>
		<comments>http://vexxhost.com/blog/2012/12/16/installing-wordpress-on-the-cloud-using-nginx-php-fpm-and-mysql/#comments</comments>
		<pubDate>Sun, 16 Dec 2012 23:33:24 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=254</guid>
		<description><![CDATA[Our cloud server customers often ask on the best way to run a PHP and MySQL application stack on our cloud servers. There are so many different web servers from the go-to Apache until really high performance customized web servers such as Tornado, which is deployed by large-scale users such as Facebook! We recommend the [...]]]></description>
				<content:encoded><![CDATA[<p>Our cloud server customers often ask on the best way to run a PHP and MySQL application stack on our cloud servers.  There are so many different web servers from the go-to Apache until really high performance customized web servers such as Tornado, which is deployed by large-scale users such as Facebook!</p>
<p>We recommend the combination for <code>nginx</code>, <code>php-fpm</code> and Percona Server with XtraDB (optimized version of MySQL).  We’ve found that the combination of all three creates a high performance setup that can take full advantage of your cloud server efficiently.  Let’s get into a bit of details about each of them and why we choose them.</p>
<h3>Nginx</h3>
<p><img src="http://vexxhost.com/blog/wp-content/uploads/2012/12/nginx.png" alt="" title="nginx" width="400" height="110" class="alignright size-full wp-image-258" style='margin-left: 20px;' /></p>
<p><code>nginx</code>, pronounced &#8220;Engine X&#8221; was written by Igor Sysoev, a russian system and software engineer.  The idea behind it was to create an extremely scalable web server which can solve the <a href="http://www.kegel.com/c10k.html">C10K problem</a>.  The watered down simple version of the C10K problem is the simple fact that serving files shouldn&#8217;t require such a huge overhead, this issue is solved by leveraging event based systems which are implemented into the kernel such as <code>epoll</code>, <code>poll</code>, the Solaris alternative <code>/dev/poll</code> and the FreeBSD/NetBSD/OS X <code>kqueue</code>.</p>
<p>The good thing is that <code>nginx</code> has proven itself since 2004 until now to be the best choice to get the most performance out of your servers.  As an example, our friends at <a href="http://cloudflare.com">CloudFlare</a> which we are proudly a <a href="http://vexxhost.com/cloudflare_hosting">CloudFlare hosting</a> optimized partner which run a modified version of <code>nginx</code> over their entire network of 23 datacenters all around the world that have serve 70 billion page views, each month.</p>
<h3>PHP-FPM</h3>
<p><img src="http://i.imgur.com/PhPrB.jpg" style="float: right; margin-left: 20px; width: 200px;"  /></p>
<p><code>php-fpm</code> is hands down the fastest way of running PHP scripts.  It was created by Andrei Nigmatulin.  There was no way to run PHP with a FastCGI interface so he took it on himself to start building it.  Eventually, the interest caught on as people saw the performance increase and more people started contributing to the project.  Initially, it was a set of patches that were applied to the PHP source code and eventually become a module.</p>
<p>However, it&#8217;s position really solidified when it was merged into the main PHP project core after work by Antony Dovgal and others.  It has now become the official FastCGI SAPI for PHP, it&#8217;s also used by a lot of users from all around the world like <a href="http://wordpress.org">WordPress</a> which you can also host on our <a href="http://vexxhost.com/wordpress-hosting.htm">WordPress hosting</a> platform as well!</p>
<h3>Percona Server with XtraDB</h3>
<p><img src="http://i.imgur.com/KeAYn.jpg" style="float: right; margin-left: 20px; margin-top: -20px;" /></p>
<p>Percona is one of the leaders of high performance MySQL servers.  They provide a highly optimized MySQL database server which is capable of giving a huge performance increase.  They even have commercial support should you require anything more and have a very helpful and supportive community help.</p>
<p>We cannot stress this enough, make sure you are using <strong>InnoDB</strong> for your databases and not <strong>MyISAM</strong>.  You really, really, really want to be using <strong>InnoDB</strong>.  We will explain this in an upcoming post but let&#8217;s just say one of the biggest performance reasons is full table locking on changes.  If you&#8217;re inserting or updating a row, your whole table cannot be used until that operation is completed.</p>
<p>In other words, if you&#8217;re running Facebook and someone is updating their profile, you&#8217;re going to wait until their update query is complete for your queries to run, which slows down things significantly.  This goes to mention that MyISAM still has good, but we&#8217;ll put all that for a blog post on it&#8217;s own, for now, <strong>InnoDB</strong>!</p>
<h3>Installing the software stack</h3>
<p>These instructions will be specific to CentOS 6 however they are very similar for Debian and Ubuntu, the package names are usually just different and you&#8217;ll be using <code>apt-get</code> instead of <code>yum</code>.  However, if you&#8217;re not comfortable with installing packages, you should probably look into our <a href="http://vexxhost.com/cloud_hosting">managed hosting service</a> where we take care of all of this for you!</p>
<ol>
<li>
<p>We like to always install from packages instead of building from source, this ensures that you can get support easier and those packages have most probably been tested by multiple other parties and any other problems you see will easy to find as others might have seen them!</p>
<p><script src="https://gist.github.com/4312187.js"></script></li>
<li>
<p>We will install the Percona Server first.  The repository helps make this extremely easy and allows us to easily upgrade when new releases come out without having to recompile from source.  The following script will install everything, setup MySQL to start on system boot and set a secure root password for MySQL, then display it.  You&#8217;ll need to note down the password as it&#8217;s very important to have.</p>
<p><script src="https://gist.github.com/4312349.js"></script></li>
<li>
<p>Your database server is now setup!  Let&#8217;s setup the PHP backend, it&#8217;s pretty simple and fairly straightforward.  We&#8217;ll assume that you&#8217;re not looking to do virtual hosting and just need to host 1 single website.  We&#8217;ll do that small <code>sed</code> because we&#8217;ll be using the <code>nginx</code> user to run on instead of <code>apache</code>.</p>
<p><script src="https://gist.github.com/4312601.js"></script></li>
<li>
<p>The PHP backend is now running, we&#8217;re at the final stages, we&#8217;ll start by installing the <code>nginx</code> web server and making it run on system boot.</p>
<p><script src="https://gist.github.com/4312726.js"></script></li>
<li>
<p>We&#8217;ll need to edit the <code>/etc/nginx/conf.d/default.conf</code> file to connect the <code>nginx</code> server to our <code>php-fpm</code> backend.  You can use any editor that you want, you&#8217;ll update it as the following, the red lines should be removed and the green should be added.</p>
<p><script src="https://gist.github.com/4313102.js"></script></p>
<p>Once we&#8217;ve done all those changes, we&#8217;ll start <code>nginx</code> and we&#8217;re going to have our entire system setup and ready now.</p>
<p><script src="https://gist.github.com/4312768.js"></script></li>
<li>
<p>We&#8217;ll be able to verify the installation by going to the servers main IP address in a browser and we&#8217;ll be able to see a message like the following:</p>
<p><img src="http://i.imgur.com/HZw4X.png" alt="nginx welcome page" title="" /></p>
</li>
<li>
<p>Now, we&#8217;ll take this an extra step and make sure PHP works, you&#8217;ll need to create the file <code>/usr/share/nginx/html/phpinfo.php</code> with the following contents and navigate to it (<em>http://your.ip/phpinfo.php</em>), you should see information about your PHP installation.</p>
<p><script src="https://gist.github.com/4312830.js"></script></li>
<li>
<p>We&#8217;ll quickly install WordPress to make sure everything is working properly.  Make sure to replace <code>$SQL_PW</code> by your root password which we created.</p>
<p>If you haven&#8217;t logged out of your session, it should be still there, you can verify this by typing <code>echo $SQL_PW</code>.  If it&#8217;s still there, you don&#8217;t need to replace it in those commands!</p>
<p>You&#8217;ll see a message showing your WordPress database user password so make sure you note that as well.</p>
<p><script src="https://gist.github.com/4313001.js"></script></li>
<li>
<p>The rest of the installation for WordPress can be completed using their simple installation, so we&#8217;ll navigate to the installation page which should be at <em>http://your.ip/wordpress</em> and it should look something like this.  Click on <em>Create a Configuration File</em> to get started.</p>
<p><img src="http://i.imgur.com/CnZ5I.png" alt="wordpress installation start" title="" /></p>
</li>
<li>
<p>Make sure to fill the form with the details like in the picture, replacing the password with the one you obtained from step 8.</p>
<p><img src="http://i.imgur.com/os4Tk.png" alt="wordpress database page" title="" /></p>
<p>It should go through with no problems, the rest of the installation should be personal website settings, you can set those to whatever you&#8217;d like and finish the installation.  You can navigate to <em>http://your.ip/wordpress</em> and check out your brand new installation!</p>
</li>
</ol>
<h3>Finals words</h3>
<p>We really think that this setup can get you quite far on a single server, but if your site keeps getting busier and busier, you can add more backend workers, <code>nginx</code> instances or even setup a clustered MySQL backend.  The nice thing about this is that all of your technology stacks are ready to scale up and scale out.</p>
<p>If you&#8217;re ever looking for a fully deployed custom cluster, we&#8217;ve built multiple clusters which handle very large amounts of traffic for our customers and they are extremely happy with the fast performance we&#8217;re able to deliver by leveraging our cloud platform, <a href="http://vexxhost.com/contact.htm">contact us today</a> with your requirements and we&#8217;ll make them happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/12/16/installing-wordpress-on-the-cloud-using-nginx-php-fpm-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.5 Upgrade Issue: Warning about wpdb::prepare() in wp-db.php</title>
		<link>http://vexxhost.com/blog/2012/12/14/wordpress-3-5-upgrade-issue-warning-about-wpdbprepare-in-wp-db-php/</link>
		<comments>http://vexxhost.com/blog/2012/12/14/wordpress-3-5-upgrade-issue-warning-about-wpdbprepare-in-wp-db-php/#comments</comments>
		<pubDate>Fri, 14 Dec 2012 17:48:48 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=233</guid>
		<description><![CDATA[With so many websites on our system and an automated notification system which lets you know if you’re scripts are out of date, we’re happy to always know that a large majority of our sites are running the latest and most secure releases of the latest scripts, such as WordPress. Our system is designed to [...]]]></description>
				<content:encoded><![CDATA[<p>With so many websites on our system and an automated notification system which lets you know if you’re scripts are out of date, we’re happy to always know that a large majority of our sites are running the latest and most secure releases of the latest scripts, such as WordPress.</p>
<p>Our system is designed to always make sure that your scripts are up to date and send you email notification if they are not, letting you know to upgrade them.  Not to mention the one click WordPress installation which our customers love!</p>
<p><img alt="" src="http://wp-themes.com/wp-content/themes/twentytwelve/screenshot.png" title="WordPress Twenty Twelve Theme" class="alignnone" style="width: 500px; float: right; margin-left: 20px;" /></p>
<p>However, technologies like WordPress are so fast paced and change a lot.  If you’ve used WordPress for a long time, not a couple versions away we had an old simple UI with no AJAX or responsiveness, but the project has come a long way from since it was first established.</p>
<p>WordPress is undoubtedly the script of choice if you want to start a blog, it has an immense ecosystem of plugins that can make WordPress do a large variety of things and a huge theme base which allows you to customize the looks of your website, we’ve even seen it used for more than blogging, such as a content management system and even eCommerce websites!</p>
<p>With the latest update, codenamed “Elvin”, it brings us some of the coolest features ever and one of the things that WordPress is known for, 1 new base theme per year, and we finally have a new one, <a href="http://wordpress.org/extend/themes/twentytwelve">Twenty Twelve</a></p>
<p>Unfortunately, this update added some extra security checks which broke some of the older plugins and will give you an error along these lines:</p>
<p><script src="https://gist.github.com/4287299.js"></script></p>
<p>If you are not a developer, the first step to make this not so nice warning disappear is to open your <code>wp-config.php</code> file and add the <code>ini_set</code> function call as follows:</p>
<p><script src="https://gist.github.com/4287293.js"></script></p>
<p>This will hide all those warnings and your page should appear properly without those errors, however, the plugin is most probably still malfunctioning.  The first step is to make sure all your plugins are updated, as the developer might have resolved that issue already!</p>
<p>If all your scripts are up to date, then you can look at the error and try to identify the theme or plugin that’s causing that issue, as you read from the error we wrote above, you’ll notice <code>classipress</code> which links it to the ClassiPress theme, you can then contact the developer so they can look into it, possibly including this <a href="http://make.wordpress.org/core/2012/12/12/php-warning-missing-argument-2-for-wpdb-prepare/">helpful post</a> by Andrew Nacin, once of the lead and core developers of wordpress.</p>
<p style='font-weight: bold'>TL;DR: Upgrade your plugins, if you’re still seeing the error, contact the plugin developer!</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/12/14/wordpress-3-5-upgrade-issue-warning-about-wpdbprepare-in-wp-db-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing cPanel on a cloud server</title>
		<link>http://vexxhost.com/blog/2012/09/10/installing-cpanel-on-a-cloud-server/</link>
		<comments>http://vexxhost.com/blog/2012/09/10/installing-cpanel-on-a-cloud-server/#comments</comments>
		<pubDate>Mon, 10 Sep 2012 18:43:02 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=204</guid>
		<description><![CDATA[As one of the most commonly installed control panels out there, there&#8217;s not a lot of platforms that can run cPanel on the cloud. Our cloud platform can run cPanel with no problems at all and you can follow the steps below in order to setup your cloud server today! Create a CentOS 6 cloud [...]]]></description>
				<content:encoded><![CDATA[<p>As one of the most commonly installed control panels out there, there&#8217;s not a lot of platforms that can run cPanel on the cloud.  Our cloud platform can run cPanel with no problems at all and you can follow the steps below in order to setup your cloud server today!</p>
<ol>
<li><strong>Create a CentOS 6 cloud server</strong>
<p>You can do this by logging into your cloud control panel and creating a server using the &#8220;CentOS 6.3&#8243; template.  If you&#8217;re feeling fancy and you have the CLI tools setup in place, a unique security group for cPanel servers and a key pair for your machine, you can run the following using the <code>nova</code> utility, just shows you how powerful the OpenStack platform is!</p>
<pre>$ nova boot --flavor nb.1G --image a2cdc491-1954-4abb-8969-655dd4af240b \
            --key_name MacBook --security_groups cPanel</pre>
<p>Once it&#8217;s ready and active, you can start by logging into the server via SSH.</p>
</li>
<li><strong>Prepare the server for cPanel installation</strong>
<p>Our images are all preloaded with minimal operating systems in order to save space and be more efficient.  The first step is to install the main requirements for cPanel that will be missing which are <code>wget</code> and <code>perl</code>.</[>
<pre># yum -y install wget perl</pre>
<p>You will also have to make sure that you have a correct hostname setup for your server as when creating a cloud server, the hostname is setup to what the server name is.  You can set your hostname by running the following:</p>
<pre># hostname server.hostname.com</pre>
</li>
<li><strong>Start the cPanel installation process</strong>
<p>One of the nicest things about cPanel is how extremely easy it&#8217;s installation process, it takes care of everything and works extremely well, in order to start the installation process, you can run the following in SSH:</p>
<pre># cd ~
# wget -N http://httpupdate.cpanel.net/latest
# chmod +x latest
# ./latest</pre>
</li>
<li><strong>Reboot the server once the installation is done</strong>
<p>Most of the time, the operating system will be updated via cPanel so it will ask you to reboot the server to start in the new kernel.  This should be the last step of the installation proess.</p>
<pre># reboot</pre>
</li>
<li><strong>You&#8217;re done, once the server is rebooted you can access your server&#8217;s cPanel &#038; WHM with no problems!</strong>
<p>cPanel: http://your.ip:2082/<br />WHM: http://your.ip:2086/</p>
<p class="muted">Make sure to replace the <code>your.ip</code> by your servers&#8217; public IP address</p>
</ol>
<p>And it&#8217;s that easy!  Getting cPanel to run on our cloud requires no extra complicated work and we can supply you with a cPanel control panel license as we are one of their partner datacenters!</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/09/10/installing-cpanel-on-a-cloud-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance &amp; Security Optimizations</title>
		<link>http://vexxhost.com/blog/2012/06/01/performance-security-optimizations/</link>
		<comments>http://vexxhost.com/blog/2012/06/01/performance-security-optimizations/#comments</comments>
		<pubDate>Sat, 02 Jun 2012 02:34:21 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=201</guid>
		<description><![CDATA[We&#8217;re glad to introduce a new set of features that are now available to all of our current hosting customers, which will improve their security and performance of their websites for no extra costs at all! PHP / Dynamic Pages Performance Optimizations We have rolled out a new feature as of today on all of [...]]]></description>
				<content:encoded><![CDATA[<p>We&#8217;re glad to introduce a new set of features that are now available to all of our current hosting customers, which will improve their security and performance of their websites for no extra costs at all!</p>
<p><strong>PHP / Dynamic Pages Performance Optimizations</strong><br />
We have rolled out a new feature as of today on all of our servers that leverages the security of suPHP (a module that runs PHP processes under your own user for full security) and the performance of DSO (in layman terms, a module that includes the PHP within the HTTP server, improving performance significantly).  We have taken advantage of also upgrading to PHP 5.3 in order to support all the latest applications on our service.</p>
<p>With this new change, we will have restored the original way of configuring options on your server using &#8220;php_flag&#8221; and &#8220;php_value&#8221; in .htaccess which will make changing PHP configuration much easier, instead of dealing with complex php.ini files that would not propagate recursively into folders.  You will also see a significant performance change on your website and notice that sites load much faster, this is because of the new DSO implementation that we have engineered and implemented.</p>
<p>However, PHP 5.3 introduced a lot of deprecations and potential issues, our upgrades and continuous integration teams have monitored all the servers while they were being upgraded in order to make sure that if any of our customers scripts would stop working, we would fix them right away.  If we have missed any websites, please contact us via support and we&#8217;ll handle it right away for you.  Please make sure you include &#8220;[5.3]&#8221; in your ticket so it&#8217;s marked with extra priority.</p>
<p><strong>MySQL Performance Optimizations</strong><br />
We have switched all of our servers to use MySQL 5.5, however, we do not use the regular MySQL 5.5 version.  We have engineered and worked internally in order to optimize the MySQL engine to work with the type of loads that are usually seen on our hosting servers.  The performance results are extremely significant and they are extremely noticeable.  We have been to measure and see servers able to serve far more queries per second (which means faster response times) with much lower performance overhead (no extra slowdowns).</p>
<p>The custom modifications that we have in place are exclusive to our hosting customers and you will be able to continue to use MySQL with no problems at all.  All of the regular features of MySQL will be working with no problems at all.  If you encounter any issues, please contact our support, however, in our testing, we were unable to raise any issues at all and after a few days of being live, we have not seen any reports from our customers at all.</p>
<p><strong>Outbound Spam Filtering</strong><br />
One of the common issues that we would face was issues with outgoing email delivery.  Occasionally, we would have a malicious user that uploads a script and uses it to send thousands of emails to different email accounts, which lead to problems in delivering real customers emails because of the saturated mail queue and the throttling that was created by the remote mail servers because of the large volume of emails sent.</p>
<p>We have implemented a new proprietary technology that automatically detects outgoing spam, and in the even that it detects any of it, it automatically takes action by rejecting the email and never allowing it to leave our network, this ensures that no outgoing spam leaves our servers and will improve email delivery significantly, due to the fact that there will be no outbursts of spam emails until our engineers are able to track it down.</p>
<p>With these new features, we will make sure that we keep providing our customers with high quality and high performance affordable web hosting at low rates.  We will continue to leverage the latest technologies in order to improve performance for our customers while keeping it affordable for all of our customers.  This blog post has also been sent to all of our customers via email as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/06/01/performance-security-optimizations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need a contact form for your site?  We make sure we got you covered, thanks to 123ContactForm!</title>
		<link>http://vexxhost.com/blog/2012/04/24/need-a-contact-form-for-your-site-we-make-sure-we-got-you-covered-thanks-to-123contactform/</link>
		<comments>http://vexxhost.com/blog/2012/04/24/need-a-contact-form-for-your-site-we-make-sure-we-got-you-covered-thanks-to-123contactform/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 14:57:06 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=186</guid>
		<description><![CDATA[This has been a crazy week for us at VEXXHOST, we will be introducing a new set of partners in the coming week and the ones after however our first announcement is with our partnership with 123ContactForm! We have heard a lot of input from our customers that host a simple HTML website that they [...]]]></description>
				<content:encoded><![CDATA[<div style='float: right; padding: 20px; margin-left: 10px; margin-right: 10px; background: rgb(47, 0, 13);'><img src="http://www.123contactform.com/images3/logo.png" /></div>
<p>This has been a crazy week for us at VEXXHOST, we will be introducing a new set of partners in the coming week and the ones after however our first announcement is with our partnership with <a href="http://www.123contactform.com/" target="_blank">123ContactForm</a>!</p>
<p>We have heard a lot of input from our customers that host a simple HTML website that they designed using an offline web page editor then published it, such as FrontPage or Dreamweaver.  However, one of the most commonly asked questions is how can they setup a contact form.</p>
<p>Previously, most customers would leave their email on a contact page, however, that caused a bunch of problems for customers.  You would have online bots that crawl emails online, once they find it, you’re in for a large amount of incoming spam, which can in turn increase the possibility that you’ll miss a legitimate email through the spam.</p>
<p>The other problem was the amount of people that engaged you.  Nowadays, people using online email clients such as Gmail or Google Apps is extremely common.  If someone is hesitant about contacting you, it feels like a much longer process for the customer to copy the email address, sign in to his or her email account and compose an email.</p>
<p>Also, if you use an online email client, you’ve had the misfortune of clicking on an email address that ends up opening Outlook, slowing down things on your computer and getting you frustrated.  These points really show the importance of having a good contact form to maintain a good engagement.</p>
<p>123ContactForm allows to get up a simple <a href="http://www.123contactform.com/" target="_blank">contact form</a> without having to know any programming skills. The code is generated for you and all you have to do is paste it in your editor.  Once that’s complete, your form is up and it is entirely managed by 123ContactForm.  That’s all!  No extra work, no worries, just plug and play!</p>
<p>When we were approached by 123ContactForm for this partnership, it was great for us to be able to offer a tool that helps solve our customer’s problems with simplicity and ease.  After working with their staff, we are happy to form with partnership with them!</p>
<p>From now on, anyone can login to their cPanel control panel and click on the “123ContactForm” link, where they will be redirected to their site and from there, you can start building your contact form for free!</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/04/24/need-a-contact-form-for-your-site-we-make-sure-we-got-you-covered-thanks-to-123contactform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud Server 7-Day Free Trial — No Credit Card Required!</title>
		<link>http://vexxhost.com/blog/2012/04/22/cloud-server-7-day-free-trial-no-credit-card-required/</link>
		<comments>http://vexxhost.com/blog/2012/04/22/cloud-server-7-day-free-trial-no-credit-card-required/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 00:13:22 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=180</guid>
		<description><![CDATA[We want to give the chance to everyone to experience the cloud. We are offering a 7-day, risk free trial of our cloud server service. We don’t even require your credit card to setup the server! We feel like it’s a great opportunity for all types of users: Developers If you are looking to test [...]]]></description>
				<content:encoded><![CDATA[<p>We want to give the chance to everyone to experience the cloud.  We are offering a 7-day, risk free trial of our cloud server service.  We don’t even require your credit card to setup the server!  We feel like it’s a great opportunity for all types of users:</p>
<ul>
<li><strong>Developers</strong><br />
If you are looking to test out an application on the cloud and review the performance, evaluate your customer needs and see for yourself the huge performance difference.</p>
</li>
<li><strong>System Administrators</strong><br />
You can check and review the state of cloud servers and evaluate them for deploying and migrating your current infrastructure towards cloud servers for no cost at all.</p>
</li>
<li><strong>Virtual Private Server Users</strong><br />
The cloud presents a large amount of advantages for VPS users, such as full server scalability; high availability, redundancy and extremely high performance compared to regular virtual private servers.</p>
</li>
<li><strong>Dedicated Server Users</strong><br />
Our cloud servers are the only platform that allows you scale all the way from 256MB RAM to 95GB RAM without unnecessary migrations and long downtimes.  It offers you much faster disk and CPU performance.</p>
</li>
</ul>
<p>We hope that this incentive helps and assists all types of customers that are looking to bring their infrastructure to the cloud and aid the adoption of cloud.  We want to really show how easy it is to get started on our infrastructure!  <a href="http://vexxhost.com/trial/">Get Started Today &rarr;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/04/22/cloud-server-7-day-free-trial-no-credit-card-required/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud Reseller Modules &amp; APIs Launched</title>
		<link>http://vexxhost.com/blog/2012/04/17/cloud-reseller-modules-apis-launched/</link>
		<comments>http://vexxhost.com/blog/2012/04/17/cloud-reseller-modules-apis-launched/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 16:35:05 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=167</guid>
		<description><![CDATA[After months of development and weeks of private testing with select customers, we are happy to announce the launch of our cloud reseller API and modules! The initial launch of our modules includes a WHMCS module that allows any company to offer our cloud servers in a fully white-label environment. It includes a lot of [...]]]></description>
				<content:encoded><![CDATA[<p>After months of development and weeks of private testing with select customers, we are happy to announce the launch of our cloud reseller API and modules! The initial launch of our modules includes a WHMCS module that allows any company to offer our cloud servers in a fully white-label environment.  It includes a lot of useful features, however, to name the most important ones:</p>
<style>#jpdyu li { margin-bottom: 10px; }</style>
<ul id="jpdyu">
<li><b>cPanel Servers</b><br />With our cloud server reseller system, hosting companies are able to offer servers with cPanel included at an extremely competitive price.  As a cPanel authorized partner, we have access to extremely aggressive pricing on cPanel licenses, allowing hosting companies to offer cPanel based servers to all of their customers at an extremely competitive rate.</li>
<li><b>Windows Servers</b><br />As a long time partner in Microsoft’s Service Provider License Agreement program, we have access to very low pricing for leasing Windows Server licenses.  Hosting companies can pass on that low pricing onto their customers in order to convert more sales and start offering Windows based servers without entering any long-term agreements or commitments.</li>
<li><b>Redundant Cloud Platform</b><br />Our infrastructure has been designed and tweaked to perfection by numerous engineers, allowing all the components in it to work perfectly together.  It has taken us years to get to the level of correct and proper, redundant and self-healing infrastructure that hosting companies can leverage and get started on at no cost at all.</li>
<li><b>Aggressive Pricing</b><br />The pricing that is offered to our resellers is extremely aggressive and hosting companies will have no problems offering an extremely competitive price in the market.  With such a big cloud infrastructure, we are able to have access to hardware and resources at a much lower rate.  Hosting companies can leverage an existing time-tested platform with no upfront fees at all, saving thousands of dollars in investments.</li>
<li><b>Full Program Setup Assistance</b><br />For each reseller that we setup, we give full assistance in the entire process of getting started.   From the setup of the initial control panel to assistance of setting up a customized order form, similar to the one offered on our website, in order to help convert sales.  Hosting companies will be dealing with one dedicated account manager that will always stay updated with them and which they can contact at anytime.</li>
<li><b>WHMCS module</b><br />We also offer a full WHMCS module, included for free, which we can install for hosting companies, or that they can install themselves.  It automatically sets up everything in order to use the automation of WHMCS and it will automatically provision, terminate, suspend, unsuspend and renew accounts in the reseller system.  Hosting companies don’t have to do anything but setup the pricing for your service.</li>
<li><b>Full Control Panel</b><br />With all of our billing system modules, we include a full version of our control panel that can be customized using templates.  It offers all features of our control panel, including firewall management, console access, full power control, password resets, activity logs and performance graphs, all included for no costs and fully white-labeled.</li>
</ul>
<p>We are extremely happy and we have seen a high satisfaction rate with the select clients that were testing our reseller environment that uses WHMCS, we have tested it extensively and hosting companies can easily get started, today, for free with no commitments or hidden fees.   For hosting companies that are interested about this offer, you can read more about our <a href="http://vexxhost.com/cloud_servers/reseller">cloud servers reseller</a> or you can get started today by <a href="http://vexxhost.com/contact.htm">contacting us</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2012/04/17/cloud-reseller-modules-apis-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs: 1955-2011</title>
		<link>http://vexxhost.com/blog/2011/10/05/steve-jobs-1955-2011/</link>
		<comments>http://vexxhost.com/blog/2011/10/05/steve-jobs-1955-2011/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 02:33:20 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=156</guid>
		<description><![CDATA[Say what you want about Apple and their products, however, you cannot deny the tremendous and incredible influence of Steve Jobs in modern day technology. There are very few people in the world that leave behind such a strong impact in the technology world. When the history of technology innovation is written, his name will [...]]]></description>
				<content:encoded><![CDATA[<p>Say what you want about Apple and their products, however, you cannot deny the tremendous and incredible influence of Steve Jobs in modern day technology.  There are very few people in the world that leave behind such a strong impact in the technology world.  When the history of technology innovation is written, his name will be on the final exam.</p>
<p>One of, if not the most influential person in marketing, design and innovation of consumer electronics and the entire technology world as a whole.  If it had not been for Apple&#8217;s innovations, we could well possibly be still using flip phones, with no such device such as tablets.</p>
<p>He remained committed till his last days for his company, paved it&#8217;s way to continue it&#8217;s success and never lost focus of what he truly wanted.  He had a clear point.  He wanted to create products that changed the world.  Not make money, and this might well be one of the biggest reasons of his success.</p>
<p>He leaves us on this sad day with memories of countless product introductions in his classy black shirt and jeans.  The same attire he always kept in his product announcements that impressed all of us.  He does not go unforgotten by his peers.</p>
<blockquote><p>&#8220;I will miss Steve immensely.&#8221;<br />
<strong>&mdash; Bill Gates (Microsoft)</strong></p></blockquote>
<blockquote><p>&#8220;Steve, thank you for being a mentor and a friend. Thanks for showing that what you build can change the world. I will miss you.&#8221;<br />
<strong>&mdash; Mark Zuckerberg (Facebook)</strong></p></blockquote>
<blockquote><p>&#8220;He was a great man with incredible achievements and amazing brilliance.&#8221;<br />
<strong>&mdash; Larry Page (Google)</strong></p></blockquote>
<blockquote><p>&#8220;Steve, your passion for excellence is felt by anyone who has ever touched an Apple product (including the macbook I am writing this on right now)&#8221;<br />
<strong>&mdash; Sergey Brin (Google)</strong></p></blockquote>
<p>You can&#8217;t also forget what he&#8217;s done with Pixar studios: <strong>12 movies, 26 academy awards, 7 golden globes &#038; 3 grammy awards</strong>.  There are few people that know about Pixar&#8217;s story and how it would have not been where it is at today, without Steve Jobs.  For those with Netflix, <em>The Pixar Story</em> is a movie available on Netflix Instant documenting their start and Jobs&#8217; involvement.</p>
<blockquote><p>&#8220;Your time is limited, so don&#8217;t waste it living someone else&#8217;s life. Don&#8217;t be trapped by dogma — which is living with the results of other people&#8217;s thinking. Don&#8217;t let the noise of others&#8217; opinions drown out your own inner voice. And most important, have the courage to follow your heart and intuition. They somehow already know what you truly want to become. Everything else is secondary.&#8221;<br />
<strong>&mdash; <a href="http://www.youtube.com/watch?v=D1R-jKKp3NA" target="_blank">Steve Jobs, Stanford Commencement Speech, 2005</a></strong></p></blockquote>
<p>Within our team, we found inspiration in what Apple does to bring into our service.  Implementing customer service that leaves our customers always happy, bringing the latest technologies to consumers while making them easy to use and bringing bold changes to the hosting industry.  We are saddened to hear the news of his passing away and we would like to wish our deepest condolences to his family.</p>
<p>Signing this post off with proudly this signature, that he never removes when replying to emails sent to his personal address:<br />
<strong>Sent from my iPad</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2011/10/05/steve-jobs-1955-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New support system and some free open-source code!</title>
		<link>http://vexxhost.com/blog/2011/08/14/new-support-system-and-some-free-open-source-code/</link>
		<comments>http://vexxhost.com/blog/2011/08/14/new-support-system-and-some-free-open-source-code/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 19:18:00 +0000</pubDate>
		<dc:creator>vexxhost</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://vexxhost.com/blog/?p=153</guid>
		<description><![CDATA[We have released our new support portal which will now separate both our support and billing systems. This will make the workflow far easier for our clients as each workflow will be independent. Also, with the new system, we will be able to accomplish far faster response times which means a better service and happier [...]]]></description>
				<content:encoded><![CDATA[<p>We have released our new support portal which will now separate both our support and billing systems.  This will make the workflow far easier for our clients as each workflow will be independent.</p>
<p>Also, with the new system, we will be able to accomplish far faster response times which means a better service and happier customers!  Hugs all around!</p>
<p>We have big plans coming up for our cloud (we know we keep saying that!) but we&#8217;re talking about 10 times the performance, faster provisioning times and even more high availability options.  Stay tuned!</p>
<p>Also, we hate 404s and we didn&#8217;t want to break the browsing experience for our customers so with our new knowledge base, we implemented a system to make sure no pages end up lost, we&#8217;ve also open-sourced this code so check it out on <a href="https://github.com/vexxhost/kayakomover">GitHub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vexxhost.com/blog/2011/08/14/new-support-system-and-some-free-open-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
