<?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 &#187; Hosting</title>
	<atom:link href="http://www.mikedvb.com/tag/hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikedvb.com</link>
	<description>Technology, Hosting, Software, and more!</description>
	<lastBuildDate>Wed, 19 Oct 2011 01:35:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Avoid &#8220;Hotlink Protection&#8221; feature in cPanel 11.25, 11.26</title>
		<link>http://www.mikedvb.com/2010/09/12/avoid-hotlink-protection-feature-in-cpanel-11-25-11-26/</link>
		<comments>http://www.mikedvb.com/2010/09/12/avoid-hotlink-protection-feature-in-cpanel-11-25-11-26/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 20:33:37 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[11.25]]></category>
		<category><![CDATA[11.26]]></category>
		<category><![CDATA[control panel]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[cPanel 11.25]]></category>
		<category><![CDATA[cPanel 11.26]]></category>
		<category><![CDATA[cPanel/WHM]]></category>
		<category><![CDATA[hotlink protection]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[WHM]]></category>
		<category><![CDATA[WHM 11.25]]></category>
		<category><![CDATA[WHM 11.26]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=347</guid>
		<description><![CDATA[In cPanel 11.25 and 11.26 (not tested earlier versions) when you add &#8220;Hotlink Protection&#8221; in cPanel it will add the appropriate mod_rewrite code to all domains, subdomains, add-on domains. It looks similar to this: Code: RewriteEngine on RewriteCond %{HTTP_REFERER} !^http://test-cpanel.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://test-cpanel.com$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.test-cpanel.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http://www.test-cpanel.com$ [NC] RewriteRule .*\.(jpg&#124;jpeg&#124;gif&#124;png&#124;bmp)$ [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mikedvb.com/wp-content/uploads/2010/09/cPanel-Logo.gif" rel="lightbox[347]"><img class="alignleft size-full wp-image-352" title="cPanel-Logo" src="http://www.mikedvb.com/wp-content/uploads/2010/09/cPanel-Logo.gif" alt="" width="167" height="75" /></a>In cPanel 11.25 and 11.26 (not tested earlier versions) when you add &#8220;Hotlink Protection&#8221; in cPanel it will add the appropriate mod_rewrite code to all domains, subdomains, add-on domains.  It looks similar to this:</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Code:</div>
<pre class="alt2" style="margin: 0px; padding: 6px; border: 1px inset; width: 640px; height: 114px; text-align: left; overflow: auto;" dir="ltr">RewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://test-cpanel.com/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://test-cpanel.com$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.test-cpanel.com/.*$      [NC]
RewriteCond %{HTTP_REFERER} !^http://www.test-cpanel.com$      [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC]</pre>
</div>
<p>It actually checks for the line &#8220;RewriteEngine on&#8221; and does not add it a second time into the .htaccess which is smart&#8230; The problem comes when you <em>remove</em> hotlink protection.</p>
<p>cPanel goes through all domains, subdomains, add-on domains once again this time and removes the code but it removes <strong><em><span style="text-decoration: underline;">all instances of &#8220;RewriteEngine On&#8221;</span></em></strong> in every .htaccess.  The problem that comes with this is that if you&#8217;re running something such as WordPress, vBulletin, IPB, or any other script that uses mod_rewrite, as most do, suddenly all of your rewrite rules no longer work.<span id="more-347"></span></p>
<p>I contacted cPanel about this issue and the technician confirmed that this was a bug and this is what I got back:</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border: 1px inset;">
<div>Originally Posted by <strong>cPanel Tech</strong></p>
</div>
<div style="font-style: italic;">This is a known issue, there is already an internal bug report for it. I do not have an ETA for fix, or work around available at this time though unfortunately.</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>I responded back asking a simple curious question:</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border: 1px inset;">
<div>Originally Posted by <strong>MikeDVB</strong></p>
</div>
<div style="font-style: italic;">Is this not something that would have been caught in edge?</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>Their response (same technician):</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border: 1px inset;">
<div>Originally Posted by <strong>cPanel Tech</strong></p>
</div>
<div style="font-style: italic;">
<p>Unfortunately, management forbids me from giving out that information. When it was reported, what has been done already, when it will hit production releases, are all bits of info I cannot give out.</p>
<p>I sincerely apologize.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>Now don&#8217;t get me wrong &#8230; I fully understand why a large organization would take such a stance on issues with their software, but that doesn&#8217;t stop me from disagreeing with this stance.</p>
<p>Being fairly irritated with this issue (and others in the past) that I have reported and seen it take 6+ months to resolve I responded with this:</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border: 1px inset;">
<div>Originally Posted by <strong>MikeDVB</strong></p>
</div>
<div style="font-style: italic;">
<p>So you&#8217;re telling me that you can tell me there is a bug, but to save cPanel any potential bad PR management forbids giving out this sort of information&#8230; I hope that they realize keeping people in the dark tends to lead to more negative PR than simply being straightforward and honest about what is or is not going on.</p>
<p>It seems to me that there is some <strong>serious</strong> disconnect between cPanel developers and the end-user.  There have been <span style="text-decoration: underline;"><em><strong>numerous</strong></em></span> &#8220;new features&#8221; that have been nothing but trouble over the last year that have all made me scratch my head thinking &#8220;Why did they think this was a good idea? Did they test this at all?&#8221;  cPanel is the king of control panels at this time but if things keep going the way they are going eventually somebody is going to develop a control panel that actually performs the way it should, is tested properly, where the developers have some sort of link with the end users.</p>
<p>What really baffles me is that when an issue is reported it can <em>easily</em> take 6 months or longer for that issue to be resolved, and that&#8217;s <span style="text-decoration: underline;"><em>if it ever gets resolved</em></span>&#8230;  I&#8217;d venture to <em>guess</em> that your response if you were &#8220;allowed&#8221; to tell me would be something along the lines of &#8220;It was caught during edge however it&#8217;s not yet been fixed,&#8221; at least from what little and hollow response you did give me.</p>
<p>Now don&#8217;t get me wrong &#8211; I&#8217;m not making any sort of threats or bashing cPanel (intentionally).  These are just my views on the subject.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>The tech did go ahead and pass my message on to management:</p>
<div style="margin: 5px 20px 20px;">
<div class="smallfont" style="margin-bottom: 2px;">Quote:</div>
<table border="0" cellspacing="0" cellpadding="6" width="100%">
<tbody>
<tr>
<td class="alt2" style="border: 1px inset;">
<div>Originally Posted by <strong>cPanel Tech</strong></p>
</div>
<div style="font-style: italic;">
<p>This will be forwarded to management for review.</p>
<p>Please allow up to 48 hours for reply.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>I won&#8217;t be holding my breath.</p>
<p>Point of the story: be careful with &#8220;Hotlink Protection.&#8221;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.mikedvb.com%2F2010%2F09%2F12%2Favoid-hotlink-protection-feature-in-cpanel-11-25-11-26%2F&amp;title=Avoid%20%26%238220%3BHotlink%20Protection%26%238221%3B%20feature%20in%20cPanel%2011.25%2C%2011.26" id="wpa2a_2"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2010/09/12/avoid-hotlink-protection-feature-in-cpanel-11-25-11-26/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sales Ticket with an [Interesting Character]</title>
		<link>http://www.mikedvb.com/2010/03/31/sales-ticket-with-an-interesting-character/</link>
		<comments>http://www.mikedvb.com/2010/03/31/sales-ticket-with-an-interesting-character/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 04:42:15 +0000</pubDate>
		<dc:creator>MikeDVB</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[maxmind]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[Sales]]></category>
		<category><![CDATA[Scam]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://www.mikedvb.com/?p=148</guid>
		<description><![CDATA[At MDDHosting today we received an order which our sales department reviewed and determined was likely fraud and marked the order as such.  We shortly there after received an email from the individual who will hence forth be known as &#8220;Interesting Character&#8221; to protect their identity.  While they may not actually be a fraudster &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>At MDDHosting today we received an order which our sales department reviewed and determined was likely fraud and marked the order as such.  We shortly there after received an email from the individual who will hence forth be known as &#8220;Interesting Character&#8221; to protect their identity.  While they may not actually be a fraudster &#8211; their order details and actions all indicated that they most likely were.</p>
<p>The individual signed up using a first name and last initial only, their mailing address was a mail forwarding address, and many other red flags were sent up when this individual attempted to order services.</p>
<p>Here is a complete view of the email conversation with all personally identifying information redacted and by all means read it over and let me know what you think in the comments.</p>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</td>
<td bgcolor="#f4f4f4"> 03/31/2010 20:39 </td>
</tr>
<tr>
<td bgcolor="#f4f4f4"> hello,<br />
      it seems like there is an issue with my order. can you please review it   and approve it?<br />
      thank you<br />
      [Interesting Character]</td>
</tr>
</table>
<p><span id="more-148"></span></p>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 20:46 </td>
</tr>
<tr>
<td id="26066_box" bgcolor="#f4f4f4">
<p>Is [address here] a home or business location?</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 20:48 </td>
</tr>
<tr>
<td id="26067_box" bgcolor="#f4f4f4"> my fault i forgot [additional address details]</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 20:52 </td>
</tr>
<tr>
<td id="26071_box" bgcolor="#f4f4f4">
<p>The address is showing up as a forwarding address and the phone number   isn&#8217;t listed in the same zip code as the one provided.  Is the address   you provided the one that is set on your PayPal account?</p>
<p>I&#8217;m sorry to make you jump through hoops but if this order is fraudulent   the owner of the PayPal account I am sure would appreciate us taking   these steps and if the order is not fraudulent I am sure you can   appreciate our desire to verify your order.</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 20:58 </td>
</tr>
<tr>
<td id="26073_box" bgcolor="#f4f4f4"> the address is my business address, the phone number is my cell which i   have had for 15 years, i have moved a few times and always kept the same   number, now i live out of the [area code] area code but i use my cell for work   and am self employed thats why the number has stayed the same for that   long, my paypal and this e-mail address are the same, my wife set up my   paypal account so i am not sure if its business or home address. it is   not fraud and i thought you cant even do fraud with paypal thats why i   started using it. not sure what else i can provide to you??<br />
      thank you<br />
      [Interesting Character]</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:01 </td>
</tr>
<tr>
<td id="26074_box" bgcolor="#f4f4f4">
<p>PayPal accounts are stolen all the time and when an order comes up as a   forwarding address for mail it sends up a flag.</p>
<p>If you can send us a scan of a valid government issued photo   identification (Driver&#8217;s License, Passport, State ID, Military ID,   etc&#8230;) I&#8217;ll be able to approve the order but without that we&#8217;ll have to   leave it set as fraud.  This is about the easiest way for you to verify   your order.</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:06 </td>
</tr>
<tr>
<td id="26075_box" bgcolor="#f4f4f4"> wow, i never knew that about paypal,<br />
      i have never had a problem with any other order<br />
      i really dont feel comfortable sending out my drivers license or my   passport<br />
      do you think if i register again and put in my home number and the suite   number in the address the order will go through? that way my area code   and my address will be in the same area? </td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:09 </td>
</tr>
<tr>
<td id="26076_box" bgcolor="#f4f4f4">
<p>You won&#8217;t be able to place another order using that coupon code.  We&#8217;re   not going to store your ID we&#8217;re just going to use it to make sure you   are who you say you are.  Think of it as showing the cashier at the   store your ID when you try to use your credit card.</p>
<p>If you don&#8217;t trust us to view and delete your photo ID then perhaps you   don&#8217;t trust us enough to host your site as the Client&lt;-&gt;Provider   relationship is one of trust.</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:23 </td>
</tr>
<tr>
<td id="26079_box" bgcolor="#f4f4f4"> my ID has my home address, not the business address.<br />
      how will that prove that i am who i am, the reason i used the business   address is that i really don&#8217;t want people knowing where i live. the   reason i use paypal is because i thought its safer than a credit card.   isn&#8217;t it good enough that my paypal account and my e-mail match?  why   would i sign up for a year with you using a stolen account, i am not   sure how paypal works but wouldnt you find out real quick that its a   stolen account and cancel my account? it just doesn&#8217;t make sense. i   would try to set up another account with home phone number and adding in   the suite number but then my e-mail wouldn&#8217;t match my paypal ;-( </td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:27 </td>
</tr>
<tr>
<td id="26080_box" bgcolor="#f4f4f4">
<p>Without the photo ID I won&#8217;t be able to activate your order and that is   entirely up to you.  If you choose not to comply with our request to   verify your identity which is ultimately for your own protection [if   this order isn't fraudulent] then you are more than welcome to go with   another host who cares less about you and your identity and preventing   identity theft and fraud.</p>
<p>You may say &quot;Why would I sign up for a year if it is fraud?&quot; and to that   I say &quot;Because fraudsters tend to think that makes the order look less   like fraud.&quot;  We&#8217;ve seen hundreds of orders from 6 months to 24 months   that were fraud over the years and we have become quite good at sensing   fraud.</p>
<p>Your next update needs to be a scan of valid government issued ID or   there is no need to continue this discussion.</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:37 </td>
</tr>
<tr>
<td id="26081_box" bgcolor="#f4f4f4"> ok, before i do that<br />
      can you answer a few more questions for me please?<br />
      how will my id prove that its me? do you get my name from my paypal   acount or what will you match my id with because like i said earlier,   its my home address on my id?<br />
      i am coming from [old provider], been with them since sometime in 2008,<br />
      [Old provider's support] was able to open a few ports for me, 8222 and 3306 and/or 1221 not   sure which one but he somehow figured it out for me, will you be able   to do the same for me?<br />
      thank you for your time </td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:39 </td>
</tr>
<tr>
<td id="26082_box" bgcolor="#f4f4f4">
<p>It depends on what you need the ports for, 3306 is MySQL but I don&#8217;t   know what 8222 and 1221 are for so you would just need to provide some   justification.</p>
<p>As for the ID, I can&#8217;t tell you how we will verify your order using it   as that is a proprietary process but I can tell you that we will use the   image to verify the order and then remove the image.  We will likely   have to set your address on file to the one shown on your ID before we   can approve the account either way.</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:55 </td>
</tr>
<tr>
<td id="26083_box" bgcolor="#f4f4f4"> This is [Interesting Character]&#8216;s wife, as I am the one that set up the account through   paypal and have been using paypal for several years, he asked that I   review your correspondence. I do not understand at all what the need is   for his physical ID.  The address he provided is not inactive and is not   a forwarding address.  It is a business address.  Never, in the 8 years   that I have been using paypal has a vendor requested my physical ID.   Where you wrote &quot; &#8230; request to verify your identity which is   ultimately for your own protection [if this order isn't fraudulent] then   you are more than welcome to go with another host who cares less about   you and your identity and preventing identity theft and fraud.&quot; &#8211; my   reply is to protect my husband&#8217;s identity and financial information, I   believe it is in his best interest to not provide a scan of his   government issued photo identification to a source over the internet.    What guarantee does he have that you yourself are not attempting   fraudulent  activity???? </td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f8f8f8" valign="top" width="200"><strong>Michael   Denney</strong><br />
      Staff</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:56 </td>
</tr>
<tr>
<td id="26084_box" bgcolor="#f4f4f4">
<p>I&#8217;m sorry but we&#8217;re not going to be able to approve your order and we&#8217;re   going to end this conversation.  Good luck with your next provider.</p>
<p>Thank you,</p>
<p>Michael Denney<br />
      MDDHosting &#8211; Professional Hosting<br />
      <a href="http://www.mddhosting.com/" target="_blank">http://www.mddhosting.com/</a><br />
      Follow us on Twitter! <a href="http://twitter.com/MDDHosting" target="_blank">http://twitter.com/MDDHosting</a></p>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td rowspan="2" bgcolor="#f4f4f4" valign="top" width="200"><strong>Interesting Character</strong><br />
      Potential Client</p>
</td>
<td bgcolor="#f4f4f4"> 03/31/2010 21:59 </td>
</tr>
<tr>
<td id="26085_box" bgcolor="#f4f4f4"> Good luck with your business and please read my review about &quot;account   setup with mddhosting&quot; on webhosting.com</td>
</tr>
</table>
<p>This individual came to us from WebHostingTalk.com so I&#8217;m curious how they are going to portray this email conversation.  I guess we&#8217;ll just have to wait and see what they have to say.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.mikedvb.com%2F2010%2F03%2F31%2Fsales-ticket-with-an-interesting-character%2F&amp;title=Sales%20Ticket%20with%20an%20%5BInteresting%20Character%5D" id="wpa2a_4"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.mikedvb.com/2010/03/31/sales-ticket-with-an-interesting-character/feed/</wfw:commentRss>
		<slash:comments>3</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>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F08%2F05%2Fstarting-and-running-a-web-hosting-business-part-one%2F&amp;title=Starting%20and%20Running%20a%20Web%20Hosting%20Business%20%26%238211%3B%20Part%20One" id="wpa2a_6"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></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>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F26%2Fanother-day-another-dos%2F&amp;title=Another%20Day%2C%20Another%20DoS" id="wpa2a_8"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></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>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. [...]]]></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>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.mikedvb.com%2F2009%2F07%2F22%2Flitespeed4-0-vs-apache2-2-in-my-eyes%2F&amp;title=LiteSpeed4.0%20vs%20Apache2.2%20In%20My%20Eyes" id="wpa2a_10"><img src="http://www.mikedvb.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></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>
	</channel>
</rss>

