<?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>MikeDVB.com</title>
	<atom:link href="http://www.mikedvb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikedvb.com</link>
	<description>Technology, Hosting, Software, and more!</description>
	<lastBuildDate>Sun, 07 Mar 2010 19:49:30 +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>Installing Apache + PHP + MySQL + MSSQL Extension on CentOS5</title>
		<link>http://www.mikedvb.com/2010/01/21/installing-apache-php-mysql-mssql-extension-on-centos5/</link>
		<comments>http://www.mikedvb.com/2010/01/21/installing-apache-php-mysql-mssql-extension-on-centos5/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:46:56 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[5.2.11]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[freetds]]></category>
		<category><![CDATA[mssql]]></category>
		<category><![CDATA[mssql extension]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=95</guid>
		<description><![CDATA[This is a short guide that will show you how to install Apache, PHP, MySQL, and MSSQL Extensions on a CentOS5 Server or VPS.  All &#8220;quote&#8221; blocks are to be executed in SSH (shell) as root.
Getting the server ready to build applications from source:
Check for any RPM installations of the applications.
rpm -qa &#124; grep -i [...]]]></description>
			<content:encoded><![CDATA[<p>This is a short guide that will show you how to install Apache, PHP, MySQL, and MSSQL Extensions on a CentOS5 Server or VPS.  All &#8220;quote&#8221; blocks are to be executed in SSH (shell) as root.</p>
<p>Getting the server ready to build applications from source:</p>
<p>Check for any RPM installations of the applications.</p>
<pre>rpm -qa | grep -i apache
rpm -qa | grep -i httpd
rpm -qa | grep -i php
rpm -qa | grep -i mysql</pre>
<p>Remove any RPM installations found with the &#8220;rpm -e&#8221; command:</p>
<pre>rpm -e application_name_here</pre>
<p>Install some base requirements to compile and install the software.<span id="more-95"></span></p>
<pre>yum -y install gcc gcc-c++ ncurses-devel libxml2-devel libpng-devel</pre>
<p>Download the appropriate sources for Apache, PHP, and MySQL and decompress it.</p>
<pre>cd /usr/src
wget http://us3.php.net/get/php-5.2.11.tar.gz/from/us.php.net/mirror
wget http://apache.inetbridge.net/httpd/httpd-2.2.14.tar.gz
wget http://downloads.mysql.com/archives/mysql-5.0/mysql-5.0.87.tar.gz
wget ftp://ftp.ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz
tar xzf php-5.2.11.tar.gz
tar xzf httpd-2.2.14.tar.gz
tar xzf mysql-5.0.87.tar.gz
tar xzf freetds-stable.tgz</pre>
<p>Build and Install MySQL.</p>
<p>Add the MySQL User and Group</p>
<pre>groupadd mysql
useradd -g mysql -c "MySQL Server" mysql</pre>
<p>Install MySQL.</p>
<pre>cd mysql*
chown -R root.root *
make clean
./configure \
--prefix=/usr/local/mysql \
--localstatedir=/usr/local/mysql/data \
--disable-maintainer-mode \
--with-mysqld-user=mysql \
--with-unix-socket-path=/tmp/mysql.sock \
--without-comment \
--without-debug \
--without-bench
make &amp;&amp; make install</pre>
<p>Configure MySQL.</p>
<pre>/usr/local/mysql/bin/mysql_install_db
chown -R root:mysql /usr/local/mysql
chown -R mysql:mysql /usr/local/mysql/data
cp support-files/my-medium.cnf /etc/my.cnf
chown root:sys /etc/my.cnf
chmod 644 /etc/my.cnf</pre>
<p>Set MySQL to start on boot</p>
<pre>echo "/usr/local/mysql/lib/mysql" &gt;&gt; /etc/ld.so.conf
ldconfig
cp ./support-files/mysql.server /etc/rc.d/init.d/mysql
chmod +x /etc/rc.d/init.d/mysql
/sbin/chkconfig --level 3 mysql on
service mysql start</pre>
<p>This sets up symlinks for all MySQL binaries so that they can be run from anywhere.</p>
<pre>cd /usr/local/mysql/bin
for file in *; do ln -s /usr/local/mysql/bin/$file /usr/bin/$file; done</pre>
<p>Set a MySQL Root Password for security (obviously use something other than &#8220;new-password-here&#8221;.</p>
<pre>mysqladmin -u root password new-password-here</pre>
<p>Test the Password:</p>
<pre>mysql -u root -p</pre>
<p>While logged into MySQL delete the test database.</p>
<pre>drop database test;
use mysql;
delete from db;
delete from user where not (host="localhost" and user="root");
flush privileges;</pre>
<p>Building Apache</p>
<pre>cd /usr/src/httpd*
make clean
./configure \
--prefix=/usr/local/apache \
--enable-shared=max \
--enable-module=rewrite \
--enable-module=so
make &amp;&amp; make install</pre>
<p>Build and Install FreeTDS for MSSQL Extension Support.</p>
<pre>cd /usr/src/freetds*
./configure
make &amp;&amp; make install</pre>
<p>Build and Install PHP</p>
<pre>cd /usr/src/php*
./configure \
--with-apxs2=/usr/local/apache/bin/apxs \
--disable-debug \
--enable-ftp \
--enable-inline-optimization \
--enable-magic-quotes \
--enable-mbstring \
--enable-mm=shared \
--enable-safe-mode \
--enable-track-vars \
--enable-trans-sid \
--enable-wddx=shared \
--enable-xml \
--with-dom \
--with-gd \
--with-gettext \
--with-mysql=/usr/local/mysql \
--with-regex=system \
--with-xml \
--with-zlib-dir=/usr/lib \
--with-mssql=/usr/local/
make &amp;&amp; make install
cp php.ini-dist /usr/local/lib/php.ini</pre>
<p>I prefer to symlink configuration files to /etc so that they are easy to find and edit.</p>
<pre>ln -s /usr/local/lib/php.ini /etc/php.ini
ln -s /usr/local/apache/conf/httpd.conf /etc/httpd.conf</pre>
<p>Edit the Apache Configuration File &#8211; I prefer nano.</p>
<pre>nano /etc/httpd.conf</pre>
<p>Uncomment the following lines or add them (uncommented) if they do not exist after &#8220;AddType application/x-tar .tgz&#8221;</p>
<pre>#AddType application/x-httpd-php .php
#AddType application/x-httpd-php-source .phps</pre>
<p>Find the DirectoryIndex (CTRL+W in Nano) and add index.php to the beginning.</p>
<pre>DirectoryIndex</pre>
<p>Set Apache to start on boot and start it for the first time.</p>
<pre>ln -s /usr/local/apache/bin/apachectl /etc/rc.d/init.d/apache
ln -s /etc/rc.d/init.d/apache /etc/rc.d/rc3.d/S90apache
/etc/rc.d/init.d/apache start</pre>
<p>Then, you must configure FreeTDS to point to your MSSQL DB server. To do so, edit (or create) the /usr/local/etc/freetds.conf file and put in there exclusively these lines:</p>
<pre>[global]
host = xxx.xxx.xxx.xxx (ip of the MSSQL server)
port = 1433
client charset = UTF-8
tds version = 7.0 (or 8.0 if using FreeTDS 0.82 or later)
text size = 20971520</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2010%2F01%2F21%2Finstalling-apache-php-mysql-mssql-extension-on-centos5%2F&amp;linkname=Installing%20Apache%20%2B%20PHP%20%2B%20MySQL%20%2B%20MSSQL%20Extension%20on%20CentOS5"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2010/01/21/installing-apache-php-mysql-mssql-extension-on-centos5/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows7 Ultimate &#8211; First Impressions</title>
		<link>http://www.mikedvb.com/2010/01/11/windows7-ultimate-first-impressions/</link>
		<comments>http://www.mikedvb.com/2010/01/11/windows7-ultimate-first-impressions/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 23:36:43 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=91</guid>
		<description><![CDATA[At first glance Windows7 is a very nice upgrade and in my opinion it is what Vista should have been.  The Windows7 installation was quick and painless and the user experience is very quick and efficient.  I&#8217;ve noticed a reduction in system resource usage in Windows7 over Windows Vista.
There is one small thing that is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mikedvb.com/wp-content/uploads/2010/01/2010-01-11_18371.png"><img class="alignleft size-medium wp-image-93" style="border: 1px solid black; margin: 3px 5px;" title="2010-01-11_1837[1]" src="http://www.mikedvb.com/wp-content/uploads/2010/01/2010-01-11_18371-300x124.png" alt="" width="300" height="124" /></a>At first glance Windows7 is a very nice upgrade and in my opinion it is what Vista <em>should have been</em>.  The Windows7 installation was quick and painless and the user experience is very quick and efficient.  I&#8217;ve noticed a reduction in system resource usage in Windows7 over Windows Vista.</p>
<p>There is one small thing that is bothering me&#8230;  I run dual monitors as I use this as my workstation and it often helps to have things side by side instead of on top of each other.  I have seen the commercials of the &#8220;snap&#8221; feature and it looks like it would be very nice but the implementation when using dual monitors is less than I would expect.</p>
<p>You can snap a window to the left of the monitor on the left, or to the right of the monitor on the right, but not to the opposite sides of either monitor.  Before you say that it&#8217;s because there is no &#8220;edge&#8221; between the two monitors &#8211; my primary monitor is 1600&#215;1200 and my secondary is 1280&#215;1024 and there is definitely an edge when going from the larger to the smaller monitor that i can hit the mouse up against.</p>
<p>I honestly can&#8217;t think of a real good way for Microsoft to implement the &#8220;snap&#8221; feature on a multiple monitor configuration that wouldn&#8217;t be more trouble than it&#8217;s worth and I can see the argument against even using it if you are running 2+ monitors but it&#8217;s the principal of the issue as far as I am concerned.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2010%2F01%2F11%2Fwindows7-ultimate-first-impressions%2F&amp;linkname=Windows7%20Ultimate%20%26%238211%3B%20First%20Impressions"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2010/01/11/windows7-ultimate-first-impressions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Domain Squatting &#8211; Really???</title>
		<link>http://www.mikedvb.com/2009/12/10/domain-squatting-really/</link>
		<comments>http://www.mikedvb.com/2009/12/10/domain-squatting-really/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 21:32:04 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[corgi]]></category>
		<category><![CDATA[corgi forum]]></category>
		<category><![CDATA[corgi forums]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[domain squatting]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[pembroke welsh corgi]]></category>
		<category><![CDATA[squatting]]></category>
		<category><![CDATA[welsh corgi]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=86</guid>
		<description><![CDATA[So I have a new puppy and I&#8217;ve been searching Google to find a good resource for information on the breed and I was surprised not to see any really good forums related to the breed.  I love operating forums and I thought it was a good idea to perhaps register a domain and set [...]]]></description>
			<content:encoded><![CDATA[<p>So I have a new puppy and I&#8217;ve been searching Google to find a good resource for information on the breed and I was surprised not to see any really good forums related to the breed.  I love operating forums and I thought it was a good idea to perhaps register a domain and set up a forum for owners of the breed and this is where the problems started.  It seems that every domain name that I&#8217;ve tried that would even remotely work for the forum is parked by some sort of domain squatter as you can see with these examples:</p>
<blockquote><p><a href="http://www.welshcorgis.com/" target="_blank">http://www.welshcorgis.com/</a><br />
<a href="http://www.corgis.com/" target="_blank">http://www.corgis.com/</a><br />
<a href="http://www.corgiforum.com/" target="_blank">http://www.corgiforum.com/</a></p></blockquote>
<p>This is extraordinarily frustrating and it makes me wonder how many others out there have wanted to start a useful and informative site that gave up because they simply couldn&#8217;t register a domain related to what it was they wanted to run a site about.  There are a few Corgi sites out there but the vast majority of them are simply short excerpts with a &#8220;Buy my book&#8221; link at the end.</p>
<p>At any rate, I&#8217;ve got my eye on a domain that&#8217;s set to expire here within the next couple of weeks and we&#8217;ll see if I can snag it before a bot gets it as it drops off of the registrar.  I&#8217;m 99% sure a bot is going to snag the registration the day it becomes available before I even have a chance to check and see if it&#8217;s available.  It&#8217;s sad that it has come to this.</p>
<p>To close this post on a positive note, here&#8217;s a short video of the puppy that has inspired my desire to launch a forum for all breeds of Corgi dogs:</p>
<p><object type="application/x-shockwave-flash" width="425" height="344" data="http://www.youtube.com/v/5xi08wTM5gI&fs=1&rel=0&hd=1&showinfo=0"><param name="movie" value="http://www.youtube.com/v/5xi08wTM5gI&fs=1&rel=0&hd=1&showinfo=0"></param><param name="allowFullScreen" value="true"></param><param name="wmode" value="transparent" /></object></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://welshcorgis.com/</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F12%2F10%2Fdomain-squatting-really%2F&amp;linkname=Domain%20Squatting%20%26%238211%3B%20Really%3F%3F%3F"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/12/10/domain-squatting-really/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Are you a host-jumper?</title>
		<link>http://www.mikedvb.com/2009/08/10/are-you-a-host-jumper/</link>
		<comments>http://www.mikedvb.com/2009/08/10/are-you-a-host-jumper/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 15:13:34 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=75</guid>
		<description><![CDATA[Web hosting providers rely upon long term client/provider relationships to reduce costs and to help pay for attracting new customers.  In my personal experiences it costs approximately $150 to attract the average new client to a hosting provider.  When you compare the average monthly hosting bill of around $5 to the cost to attract a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-77" title="hostjump" src="http://www.mikedvb.com/wp-content/uploads/2009/08/hostjump.png" alt="hostjump" width="117" height="75" />Web hosting providers rely upon long term client/provider relationships to reduce costs and to help pay for attracting new customers.  In my personal experiences it costs approximately $150 to attract the average new client to a hosting provider.  When you compare the average monthly hosting bill of around $5 to the cost to attract a customer you will very quickly see why a hosting provider needs long-term clients.</p>
<p>There are clients that see purchasing web hosting as a long-term relationship with their provider and they look forward to reliability, service, and support for a long time to come.  Realistically most clients tend to stay with their provider until their needs drastically change and this is how things really should be.</p>
<p><strong>No host is perfect</strong> &#8211; every host is going to experience issues from time to time and what is more important than whether or not they ever have issues is whether the host is directly at fault for the issue or if the issue was something that shouldn&#8217;t be held against them such as hardware failure.  Just because your host experiences an issue is not reason alone to leave that provider unless they could have prevented the issue and chose not to or they simply handled the situation poorly.  Most clients understand that issues happen and as long as they are kept informed as to what has happened and what is being done to resolve the issue they are willing to work through the issue.  If you find yourself changing hosts every single time your provider has an issue you may want to consider giving your provider a chance to handle and resolve the issue before deciding to move.<span id="more-75"></span></p>
<p><strong>Generally you are going to get what you pay for</strong> &#8211; you can&#8217;t sign up for a $1/month provider and expect the best service and support in the world just as if you sign up for a $30/month shared hosting provider you would expect a high level of service and support.  I have found in my personal dealings in the hosting industry that the less a customer pays the <em>more</em> they tend to expect out of the provider and the less they understand the provider/client relationship.  Now of course there are going to be exceptions as you may get an amazing coupon for a provider that drops your monthly cost to something ridiculous or you may sign up with a provider that is simply over-priced and provides a low level of service and support.  If you find yourself constantly changing providers to get a &#8220;better deal&#8221; or to &#8220;save money&#8221; the chances are that not only are you hurting the providers that you are jumping from quickly but you are hurting yourself as you are likely going to end up with a lower quality provider and have more issues with service and support.</p>
<p><strong>Do you understand the provider/client relationship</strong> &#8211; The hosting provider is usually not your webmaster or designer and if you find yourself submitting tickets asking your host how to do things with your site then chances are that you are in over your head and you may want to look for a webmaster.  Realistically you shouldn&#8217;t have to put in more than one or two tickets every month and if you find yourself putting in a significant amount of tickets you may be in over your head.  I have found that most issues that web hosting customers put in tickets for could be answered by a quick visit to <a href="http://www.google.com/">Google</a>. Now don&#8217;t get me wrong, I&#8217;m not telling you not to ask support for help, what I am saying is that many times you can find the answers to your questions faster on your own by researching the issue before submitting it to your provider.  Providing support to clients does cost the provider money and some providers will go so far as to let clients who submit a large number of tickets go or worse they could reduce the priority of answering said client&#8217;s tickets.</p>
<p>If you find yourself moving from host to host you should look back and see why you have changed providers.  Are you choosing low quality providers or are you expecting more than you should for what you are paying?  You should determine why you are changing hosts frequently and do what you can to change this behavior as the change will not only benefit your provider but it will benefit you in the long term.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F08%2F10%2Fare-you-a-host-jumper%2F&amp;linkname=Are%20you%20a%20host-jumper%3F"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/08/10/are-you-a-host-jumper/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Starting and Running a Web Hosting Business &#8211; Part One</title>
		<link>http://www.mikedvb.com/2009/08/05/starting-and-running-a-web-hosting-business-part-one/</link>
		<comments>http://www.mikedvb.com/2009/08/05/starting-and-running-a-web-hosting-business-part-one/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 07:18:10 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[starting a host]]></category>
		<category><![CDATA[starting a web host]]></category>
		<category><![CDATA[starting a webhost]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=65</guid>
		<description><![CDATA[There are many qualities that are required in an individual for them to start and grow their own successful web hosting company on their own from the start.  Many people see web hosting as something that is simple to provide and requires little to no work which couldn&#8217;t be further from the truth.  There are [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-66" style="margin-right: 5px;" title="SLDAL" src="http://www.mikedvb.com/wp-content/uploads/2009/08/dc01-150x150.jpg" alt="SLDAL" width="150" height="150" />There are many qualities that are required in an individual for them to start and grow their own successful web hosting company on their own from the start.  Many people see web hosting as something that is simple to provide and requires little to no work which couldn&#8217;t be further from the truth.  There are many aspects of web hosting that the average first-time web host will not plan for or even think about such as their web site which can be simple but is very important if you are to function as an online business.  Other aspects of running a web hosting business range from obtaining the correct licensing as required by local laws to having a basic understanding of business management and accounting.  While most are not a <em>jack of all trades</em>, they can often get by based upon what they know and have people they can ask for help if they need it.</p>
<p>The most important quality required in a person starting their own web hosting provider is <span style="text-decoration: underline;"><em><strong>resourcefulness</strong></em></span> &#8211; when you are new to hosting there are certainly going to be roadblocks that you come across and questions that you do not know the answers to.  Being resourceful means that even if you don&#8217;t know the answer immediately you know where to look to find the answer.  The vast majority of support issues that clients raise could be answered simply by visiting Google.com and typing in the question or a description of the issue.  Unless you are an expert on everything (<em>keep dreaming</em>) then you either need to be resourceful or you will very quickly find yourself being asked questions you cannot answer which leads to very unhappy customers and bad reviews.<span id="more-65"></span></p>
<p>The second most important quality required is <span style="text-decoration: underline;"><em><strong>good business sense</strong></em></span> &#8211; such as knowing that offering unlimited master reseller accounts for $7/month is not going to lead to anything but a quick rise and and even quicker fall. It is very important that any entrepreneur sits down and writes up a solid business plan setting both short-term and long-term goals as well as planning out how the business is going to achieve these goals.  While it is possible to start a business and be successful without a business plan it is highly unlikely and I would say personally that it is the exception to the rule.  Without a business plan not only is it impossible to know if you are getting where you need to be but it is impossible to determine what changes should be made to help meet any goals that you may have in mind.  You need to be able to make the big decisions without having to go to your friends, family, or others in the hosting industry to ask them what they suggest.</p>
<p>The third most important quality is <em><span style="text-decoration: underline;"><strong>a basic understanding of marketing</strong></span></em>. Many new hosting providers try to compete on price with the major players in the industry which is another issue that anybody with solid business sense is going to know from the start is simply not going to work 99% of the time.  Larger providers are able to offer more features and resources at lower prices simply due to their ability to obtain hardware, software licenses, and other necessary tools at much lower prices by dealing in bulk.  As a small provider you will not have the ability to get such good deals on your resources and as such attempting to compete on price with the larger providers in most cases will lead quickly to the demise of your company.  Understanding the basics of marketing will help you not only get your company&#8217;s name out there but will also help to convert potential customers that do make it to your web site.</p>
<p>I will post more on Starting and Running a Web Hosting Business within the next few days so be sure to check back for Part Two!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F08%2F05%2Fstarting-and-running-a-web-hosting-business-part-one%2F&amp;linkname=Starting%20and%20Running%20a%20Web%20Hosting%20Business%20%26%238211%3B%20Part%20One"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/08/05/starting-and-running-a-web-hosting-business-part-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Day, Another DoS</title>
		<link>http://www.mikedvb.com/2009/07/26/another-day-another-dos/</link>
		<comments>http://www.mikedvb.com/2009/07/26/another-day-another-dos/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 17:06:26 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[DDoS]]></category>
		<category><![CDATA[DoS]]></category>
		<category><![CDATA[SoftLayer Dallas]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=57</guid>
		<description><![CDATA[




Let&#8217;s face it &#8211; the world tends to be a very hostile environment and the internet is not much different.  From viruses and trojans to distruption of service attacks &#8211; it happens all day every day and it is only a matter of time before it affects you.  I have personally dealt with two DoS [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_59" class="wp-caption alignleft" style="width: 160px;">
<dt class="wp-caption-dt"><img class="size-thumbnail wp-image-59" title="Disruption of Service (Graph)" src="http://www.mikedvb.com/wp-content/uploads/2009/07/DoS-150x150.png" alt="Disruption of Service (Graph)" width="150" height="150" /></dt>
</dl>
</div>
<p>Let&#8217;s face it &#8211; the world tends to be a very hostile environment and the internet is not much different.  From viruses and trojans to distruption of service attacks &#8211; it happens all day every day and it is only a matter of time before it affects you.  I have personally dealt with two DoS attacks in the last two weeks and both for very different reasons although the end result is about the same.</p>
<p>Last week the DDoS, or distributed disruption of service, attack was motivated entirely by financial gain for the attacker.  The attacker had previously attacked another hosting company called <a href="http://www.asmallorange.com/" target="_blank">A Small Orange</a> and had attempted to extort $7,000 from the company to stop the attack.  ASO did not bow to the demands of the attacker and simply worked to filter out the attack and return service to their customers.  While some of ASO&#8217;s customers were not satisfied, many times when a provider is put in this situation there is not much that can be done.</p>
<p>The attacker moved on from ASO to my company and sent a message to our sales department informing us that we were next.  The attack began about an hour later and peaked at about 4.5GBPS which is enough to  bring down most small data centers in their entirety however our data center SoftLayer Dallas was able to filter out the attack within 10 minutes to restore full service.  The attacker subsequently moved on to their next target which was <a href="http://vectorlevel.com/" target="_blank">VectorLevel</a> who was hosted with Colo4Dallas at the time.  The attack at VectorLevel brought Colo4Dallas to it&#8217;s knees until the attack was null-routed at C4D&#8217;s upstream provider.  At the time of this writing Colo4Dallas&#8217; web site was unreachable and as such I am not directly linking to it.<span id="more-57"></span></p>
<p>Fast forward a week and a half and another one of my servers was under a new attack from a new source.  This time the attack was not monetary and the goal was simply to take a particular site offline.  The target of the attack was a fairly popular forum that centers around firearms manufactured by a particular company.  The forum has information such as cleaning and maintenance of the guns and in my looking over the site is nothing apparently negative.  My guess is that whoever wanted to bring the site offline was more of a &#8220;pro gun control&#8221; type of person.</p>
<p>This attack was a bit more difficult to stop as it was smaller and &#8220;<em>flew under the radar</em>&#8221; of our automatic filtering systems but was still large enough to cause intermittent connection issues over the period of about two hours.  We worked to filter out the attack however whoever was administering this particular attack was doing a pretty good job of countering the counter-measures were putting in place to mitigate the attack.  Ultimately we were able to fully mitigate the attack after quite a bit of work and effort.</p>
<p>It seems that there are malicious people out there whose only goal is to cause harm and to disrupt the services of others.  If you do find yourself in a situation where your web site or hosting service is being disrupted by a DoS attack please do be patient with your provider and understand that there isn&#8217;t always something that can be done to fully mitigate the attack.  If your provider is able to restore full service to you within a fairly short period of time (less than 2 to 4 hours) you should consider yourself lucky as many DoS and DDoS attacks can last days if not weeks.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F26%2Fanother-day-another-dos%2F&amp;linkname=Another%20Day%2C%20Another%20DoS"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/07/26/another-day-another-dos/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>LiteSpeed Licensing &#8211; 39 Months To Make Owned Worth It???</title>
		<link>http://www.mikedvb.com/2009/07/23/litespeed-licensing-39-months-to-make-owned-worth-it/</link>
		<comments>http://www.mikedvb.com/2009/07/23/litespeed-licensing-39-months-to-make-owned-worth-it/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 21:12:09 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[litespeed]]></category>
		<category><![CDATA[owned vs leased]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=49</guid>
		<description><![CDATA[




I was doing the math on the licensing structure (we&#8217;ll go with the 1-CPU Enterprise license as this example).
I will start by saying that I realize it is in LiteSpeed Technologies&#8217; best interests for you to lease your license from them as this gives them the most profit/income etc&#8230; where as an Owned license is [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_51" class="wp-caption alignleft" style="width: 121px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-51" title="litespeed2" src="http://www.mikedvb.com/wp-content/uploads/2009/07/litespeed21.png" alt="LiteSpeed" width="111" height="40" /></dt>
</dl>
</div>
<p>I was doing the math on the licensing structure (we&#8217;ll go with the 1-CPU Enterprise license as this example).</p>
<p>I will start by saying that I realize it is in LiteSpeed Technologies&#8217; best interests for you to lease your license from them as this gives them the most profit/income etc&#8230; where as an Owned license is generally seen as a larger up-front investment to reduce long-term costs.</p>
<p>I am also aware that I am comparing monthly lease to a yearly ownership as I am wanting to compare the extremes (smallest up-front investment vs the largest).</p>
<p><span>Owned licenses are an <em>investment into LiteSpeed Web Server/Technologies</em> and I always look at investments based upon how well they will return and how long until they return. A 39 month wait until the investment begins to return is a tad too long in my opinion and as you read on you will see the details of my analysis of their licensing program.<span id="more-49"></span><br />
</span></p>
<p>The primary problem that I see is that the Owned licensing doesn&#8217;t really reduce long-term costs fast enough &#8211; the argument could be seen either way that either the leasing prices need increased (sorry, have to share both view points) or that the owned licensing needs to be reduced either the initial purchase or the support renewal costs.</p>
<p>The price of a 1-CPU Enterprise Leased license is $32/month or $384 paid monthly for a year.</p>
<p>The price of a 1-CPU Enterprise Owned license is $41.58/month or $499 paid yearly.</p>
<p>At these prices you could have a Leased license for 15.6 Months for the price of an Owned license for one year &#8211; which makes sense if you think about it.  At the end of the first year if you want to continue support and upgrades for your owned license you then have to pay $99 for a support renewal.  You do not have to pay any such renewal fee for Leased license.</p>
<p>The price of a 1-CPU Enterprise Owned license for two years is $598 which would get you 18.69 months of Leased licensing &#8211; so after you have your owned license for over 18 and a half months you&#8217;ve broken even on your investment of an owned license.  While a year and a half is not a tremendous amount of time &#8211; it is asking for a huge investment of your money up front.  To make the Owned license an option you have to be willing to invest over a year and a half into LiteSpeed before you even break even.</p>
<p>After 18.69 months of being on an Owned license and having paid the $99 support fee after a year you will be at approximately $8.25/month for each owned license which isn&#8217;t terribly bad (a savings over leased of $23.75/month), but keep in mind it took over a year and a half to get to this point which leads me to my next concern.</p>
<p>The next major concern in my eyes with the current structure is that for the Owned license to &#8220;pay for itself&#8221; (to return on my original investment) which is one of the primary reasons I look at owned licenses over leased &#8211; it will take an <em>additional  21 months</em> for a total of 39 months before going Owned has &#8220;paid for itself&#8221; and returns on your initial owned licensing investment will be realized if you don&#8217;t include the support Renewals. The first and second renewal for a total addition of $198 because by this point you&#8217;re already at <strong>39 months</strong> before going Owned has paid for itself.</p>
<p>Is it really intentional on the part of LiteSpeedTech to make an Owned license holder have to wait 39 months before they can start to see a return on their investment of going Owned?</p>
<p>What are your thoughts? Post comments!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F23%2Flitespeed-licensing-39-months-to-make-owned-worth-it%2F&amp;linkname=LiteSpeed%20Licensing%20%26%238211%3B%2039%20Months%20To%20Make%20Owned%20Worth%20It%3F%3F%3F"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/07/23/litespeed-licensing-39-months-to-make-owned-worth-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiteSpeed4.0 vs Apache2.2 In My Eyes</title>
		<link>http://www.mikedvb.com/2009/07/22/litespeed4-0-vs-apache2-2-in-my-eyes/</link>
		<comments>http://www.mikedvb.com/2009/07/22/litespeed4-0-vs-apache2-2-in-my-eyes/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 08:34:02 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[litespeed]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=40</guid>
		<description><![CDATA[I will start this post by saying that I have used Apache for more than 2 years in production environments and I am quite experienced at optimizing Apache to accomplish the goal at hand should it be handling thousands of connections simultaneously to serving dynamic web sites quickly and efficiently while minimizing the memory footprint.
I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-41" style="margin-right: 5px;" title="LSvsAP" src="http://www.mikedvb.com/wp-content/uploads/2009/07/LSvsAP.png" alt="LSvsAP" width="146" height="79" />I will start this post by saying that I have used Apache for more than 2 years in production environments and I am quite experienced at optimizing Apache to accomplish the goal at hand should it be handling thousands of connections simultaneously to serving dynamic web sites quickly and efficiently while minimizing the memory footprint.</p>
<p>I have in the past fought tooth-and-nail for Apache&#8217;s ability to match LiteSpeed Web Server&#8217;s speed when serving web sites.  Apache can be configured to be nearly as fast if not just as fast as LiteSpeed but the problem is that Apache requires in my own personal testing nearly two times as much memory and FastCGI to come close to LiteSpeed comes out of the box.  LiteSpeed claims to serve static content up to 9 times faster than Apache and PHP up to 50% faster.  While I won&#8217;t go into depth as to which one can do what faster, I will go into why I chose to move my company from Apache to LiteSpeed and what benefits we have seen.  If you want to see benchmarks that compare LiteSpeed and Apache I recommend you search <a href="http://www.google.com/" target="_blank">Google</a>.<span id="more-40"></span></p>
<p>My company has relied upon Apache for years however I recently began testing the latest version of LiteSpeed which has come a long way.  LiteSpeed out of the box offers the performance of an extremely-optimized Apache installation with half or less memory consumption in my testing which is a major benefit.  Apache is very weak against certain DoS attacks such as a HTTP Request DoS which doesn&#8217;t require a large amount of outgoing bandwidth but can be devastating to an Apache web server where as LightSpeed takes such attacks in stride in my testing.</p>
<p>I found personally that the overall &#8220;feel&#8221; of browsing various test sites, both dynamic and static, felt snappier or zippier which is an additional benefit to running LiteSpeed.  In the end if you know what you are doing and you have the RAM in your server to accomplish it you can match LightSpeed Web Server&#8217;s speed at the cost of efficiency.</p>
<p>LiteSpeed&#8217;s Web Server is a direct replacement for Apache and installation was a breeze.  LiteSpeed supports all of the popular control panels and all of the features of Apache <span style="text-decoration: line-through;">except for your old Server Side Includes but who uses those any more</span>?  In my experience on a cPanel based web server you can log into WHM and switch between LiteSpeed and Apache at any time and you can run LiteSpeed on an alternate port for testing any sites that you wish to make sure will function correctly before &#8220;making the switch.&#8221;  I have yet to run into any issues that are caused by LiteSpeed however I will post an update if I do run into any.</p>
<p>At the end of the day my advice is to spend the extra money you would be paying to add additional RAM into your server on a LiteSpeed Web Server license.</p>
<p>Edit: LiteSpeed 4.0 *does* support Server Side Includes even though the current FAQ on LiteSpeedTech.com says that it does not.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F22%2Flitespeed4-0-vs-apache2-2-in-my-eyes%2F&amp;linkname=LiteSpeed4.0%20vs%20Apache2.2%20In%20My%20Eyes"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/07/22/litespeed4-0-vs-apache2-2-in-my-eyes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Day Michael Jackson Slowed The Internet</title>
		<link>http://www.mikedvb.com/2009/07/07/the-day-michael-jackson-slowed-the-internet/</link>
		<comments>http://www.mikedvb.com/2009/07/07/the-day-michael-jackson-slowed-the-internet/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 18:39:58 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Comcast]]></category>
		<category><![CDATA[Dallas]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Jackson]]></category>
		<category><![CDATA[Level3]]></category>
		<category><![CDATA[Michael]]></category>
		<category><![CDATA[Michael Jackson]]></category>
		<category><![CDATA[RoadRunner]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Site down]]></category>
		<category><![CDATA[Slow]]></category>
		<category><![CDATA[SoftLayer]]></category>
		<category><![CDATA[SoftLayer Dallas]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=32</guid>
		<description><![CDATA[Many of my customers as well as many other individuals that have web sites of their own are finding out that the internet itself is running very slowly today.  When I contacted our datacenter that provides service for our servers here is the response that I received from the representative:
The issue is that the Michael [...]]]></description>
			<content:encoded><![CDATA[<p>Many of my customers as well as many other individuals that have web sites of their own are finding out that the internet itself is running very slowly today.  When I contacted our datacenter that provides service for our servers here is the response that I received from the representative:</p>
<blockquote><p>The issue is that the Michael Jackson funeral is the largest web event in history. This is causing sluggish response times everywhere.</p>
<p>David E<br />
SoftLayer CSA</p></blockquote>
<p><img class="alignleft size-thumbnail wp-image-35" style="border: 1px solid black; margin-left: 5px; margin-right: 5px;" title="michael_jackson" src="http://www.mikedvb.com/wp-content/uploads/2009/07/michael_jackson-150x150.jpg" alt="michael_jackson" width="150" height="150" />We have had several clients submit tickets saying things such as &#8220;My site is loading slowly or not at all&#8221; and in my testing I have found that it is difficult to make connections across the country depending on what backbone your internet service provider is using.  It seems that Level3 and RoadRunner are having some trouble with the amount of traffic being transferred across their backbones where as I am seeing beautiful performance out of the Comcast backbone myself.</p>
<p>Upon asking for further detail from our datacenter, SoftLayer, this is what the representative had to say:</p>
<blockquote><p>We are getting reports of sluggish response from all locations. There is no point of origin. It is internet wide.</p></blockquote>
<p>If you are browsing the internet right now and everything is running smoothly then you can consider yourself lucky.  If you do run your own web site and you are having trouble connecting to it or you are receiving reports from your clients that your site is down there isn&#8217;t much you can do but tell them that the internet is extraordinarily congested due to the Michael Jackson funeral today and that we will all just have to wait this out.</p>
<p>There is also a <a href="http://www.webhostingtalk.com/showthread.php?t=874170" target="_blank">thread</a> that has been started by a user having issues with the internet over at the good old <a href="http://www.webhostingtalk.com/showthread.php?t=874170" target="_blank">WebHostingTalk.com</a> discussing that they are having issues connecting to WebHostingTalk.com where as other users are reporting no issues at all.  There is no definite way to tell if you will or will not have problems and you may have problems visiting one site while not having problems connecting to another.</p>
<p>Are you having trouble connecting to your own site or a site that you frequent?  Post a comment and let us know!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F07%2Fthe-day-michael-jackson-slowed-the-internet%2F&amp;linkname=The%20Day%20Michael%20Jackson%20Slowed%20The%20Internet"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/07/07/the-day-michael-jackson-slowed-the-internet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Importance of Networking in Business</title>
		<link>http://www.mikedvb.com/2009/07/02/the-importance-of-networking-in-business/</link>
		<comments>http://www.mikedvb.com/2009/07/02/the-importance-of-networking-in-business/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 05:42:13 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[business networking]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=25</guid>
		<description><![CDATA[As an entrepreneur I very much understand the importance of networking with other individuals and companies in my industry.  Many people that try to start a business tend to operate in a very introverted way which often prevents them from making the networking connections that would be beneficial to their business in the long run.  [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-30" title="people_network" src="http://www.mikedvb.com/wp-content/uploads/2009/07/people_network-150x150.jpg" alt="people_network" width="150" height="150" />As an entrepreneur I very much understand the importance of networking with other individuals and companies in my industry.  Many people that try to start a business tend to operate in a very introverted way which often prevents them from making the networking connections that would be beneficial to their business in the long run.  Many fear that discussing their business with others in the same industry may open them up to issues where private company information is divulged but I have found that not to be an issue.  Individuals in the same industry can often discuss common issues that affect the industry and work together to resolve these issues faster than they could on their own.</p>
<p>A great example as to when business social networking helps is when an exploit is discovered and affects one company. Information about the exploit can spread across the social network and cause other providers to proactively protect themselves from the issue.  If you want a specific example of an issue you can Google for &#8220;HyperVM fsckVPS&#8221; and I am sure you will turn up loads of good results about the issue.</p>
<p>If you really want to run a successful business &#8211; talk to people who are already in the industry and listen closely to what they have to say.  Do your best to make business related social networking ties with other individuals and businesses in your industry as you may not need them now but I am sure at some point in time you will.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F02%2Fthe-importance-of-networking-in-business%2F&amp;linkname=The%20Importance%20of%20Networking%20in%20Business"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2009/07/02/the-importance-of-networking-in-business/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
