<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Design, Social Media and more &#187; Hosting</title>
	<atom:link href="http://www.justinrains.com/category/hosting/feed" rel="self" type="application/rss+xml" />
	<link>http://www.justinrains.com</link>
	<description>Blogging, social media, e-commerce, design</description>
	<lastBuildDate>Tue, 29 Jun 2010 19:11:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Properly Handle Web Errors</title>
		<link>http://www.justinrains.com/2008/04/how-to-properly-handle-web-errors</link>
		<comments>http://www.justinrains.com/2008/04/how-to-properly-handle-web-errors#comments</comments>
		<pubDate>Thu, 10 Apr 2008 14:27:10 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/?p=187</guid>
		<description><![CDATA[Every once in a while a search engine will index a page and that page may go away. When someone clicks on the link from the search engine and no efforts have been taken to handle the &#8220;Page not found&#8221; error visitors will hit the back button and move on. There is a way to [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while a search engine will index a page and that page may go away. When someone clicks on the link from the search engine and no efforts have been taken to handle the &#8220;Page not found&#8221; error visitors will hit the back button and move on. There is a way to customize the errors using a file called .htaccess. Within the file one simply adds these lines:<br />
<code><br />
ErrorDocument 400 /error.php?400<br />
ErrorDocument 403 /error.php?403<br />
ErrorDocument 404 /error.php?404<br />
ErrorDocument 500 /error.php?500<br />
</code></p>
<p>What that does is any web errors that are encountered are automatically sent to a page on your site called error.php . This file can be any valid file on your site or even to another site. Chances are great now that your error is properly handled that your visitor will not hit their back button and leave your site. One problem solved! More info on <a target="_blank" rel="nofollow" href="http://perl.apache.org/docs/2.0/user/handlers/http.html">apache http status codes</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2008/04/how-to-properly-handle-web-errors/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upcoming Server Upgrade</title>
		<link>http://www.justinrains.com/2008/03/upcoming-server-upgrade</link>
		<comments>http://www.justinrains.com/2008/03/upcoming-server-upgrade#comments</comments>
		<pubDate>Mon, 24 Mar 2008 19:39:33 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2008/03/24/upcoming-server-upgrade.html</guid>
		<description><![CDATA[On Tuesday April 1, 2008 the Portal Planet server will be upgraded to the latest stable version of the control panel, hsphere. Upgrade times usually begin around 8:00 EST and last for 2-3 hours. Please be aware that during this period certain services such as database, mail, web, control panel will go up and down. [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday April 1, 2008 the Portal Planet server will be upgraded to the latest stable version of the control panel, hsphere. Upgrade times usually begin around 8:00 EST and last for 2-3 hours. Please be aware that during this period certain services such as database, mail, web, control panel will go up and down. This is normal during the upgrade process. Please contact Portal Planet with any questions regarding this scheduled update.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2008/03/upcoming-server-upgrade/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Not Allow Directory Listings</title>
		<link>http://www.justinrains.com/2008/03/how-to-not-allow-directory-listings</link>
		<comments>http://www.justinrains.com/2008/03/how-to-not-allow-directory-listings#comments</comments>
		<pubDate>Fri, 14 Mar 2008 18:24:24 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2008/03/14/173.html</guid>
		<description><![CDATA[Some web hosts allow a directories contents to be displayed if there is no index file contained within that directory. This could cause a serious problem if that directory contained any sort of sensitive materials. If your hosting account is on a Unix or Linux server this problem is fairly easy to eliminate using a [...]]]></description>
			<content:encoded><![CDATA[<p>Some web hosts allow a directories contents to be displayed if there is no index file contained within that directory. This could cause a serious problem if that directory contained any sort of sensitive materials. If your hosting account is on a Unix or Linux server this problem is fairly easy to eliminate using a file called .htaccess. On my Windows PC I create a<br />
new text document called htaccess.txt and within that file I put the following line:</p>
<blockquote><p>Options -Indexes</p>
</blockquote>
<p>That tells the webserver not to allow directory listings. I then upload the htaccess.txt file into the root folder for my domain and go in through a web based file browser or shell and rename the file to .htaccess . Windows will not let a file not have a name and just an extension so this is the simplest way to do it.</p>
<p>Some webmasters will also create an index page for every directory but if there are alot of directories this could take time. Using the htaccess file protects every directory in the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2008/03/how-to-not-allow-directory-listings/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upcoming server maintenance schedule</title>
		<link>http://www.justinrains.com/2008/02/upcoming-server-maintenance-schedule-2</link>
		<comments>http://www.justinrains.com/2008/02/upcoming-server-maintenance-schedule-2#comments</comments>
		<pubDate>Mon, 04 Feb 2008 16:36:41 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2008/02/04/upcoming-server-maintenance-schedule-2.html</guid>
		<description><![CDATA[These are usually performed in the morning.
Monday, February 18, 2008
Monday, March 3, 2008
Monday, March 17, 2008
Monday, March 31, 2008








]]></description>
			<content:encoded><![CDATA[<p>These are usually performed in the morning.</p>
<p>Monday, February 18, 2008<br />
Monday, March 3, 2008<br />
Monday, March 17, 2008<br />
Monday, March 31, 2008</p>
</p>
<p><!--200638c1de42d87056b311d7689d1cee--></p>
</p>
<p><!--6ae9be2ae8ca7d71fecd57b35df6abe7--></p>
</p>
<p><!--2c6e5c1c1232ba7ca3a297a5d17fc7cb-->
</p>
<p><!--a6968711d9e3f17118a8b524a5cebcb2--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2008/02/upcoming-server-maintenance-schedule-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What happened on Saturday December 22</title>
		<link>http://www.justinrains.com/2007/12/what-happened-on-saturday-december-22</link>
		<comments>http://www.justinrains.com/2007/12/what-happened-on-saturday-december-22#comments</comments>
		<pubDate>Fri, 28 Dec 2007 19:39:26 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2007/12/28/what-happened-on-saturday-december-22.html</guid>
		<description><![CDATA[Early in the morning on Saturday December 22 the server locked up and had to have the power cycled. Everything came back up ok but after the reboot the site was slow to respond. What happened was the DNS service did not start properly. This effected the e-mails and also any e-commerce sites running or [...]]]></description>
			<content:encoded><![CDATA[<p>Early in the morning on Saturday December 22 the server locked up and had to have the power cycled. Everything came back up ok but after the reboot the site was slow to respond. What happened was the DNS service did not start properly. This effected the e-mails and also any e-commerce sites running or sites that use a database to store their data. Sites were brought back on line as quickly as possible and I apologize for the downtime.
</p>
<p><!--32f828c57b23c1ab2fc781c8c86dba85--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2007/12/what-happened-on-saturday-december-22/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NKY Web Hosting Uptime: Excellent</title>
		<link>http://www.justinrains.com/2007/09/nky-web-hosting-uptime-excellent</link>
		<comments>http://www.justinrains.com/2007/09/nky-web-hosting-uptime-excellent#comments</comments>
		<pubDate>Fri, 21 Sep 2007 17:19:01 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2007/09/21/nky-web-hosting-uptime-excellent.html</guid>
		<description><![CDATA[Check out this awesome PDF file I created from this web hosting uptime report. What does it reveal? It shows that Portal Planet has 99.99% uptime with many months having zero downtime. Use this link to view the NKY web hosting uptime report for Portal Planet (PDF).




]]></description>
			<content:encoded><![CDATA[<p>Check out this awesome PDF file I created from this <a target="_blank" title="Web hosting uptime report" href="http://www.webhostingstuff.com/uptime/PortalPlanet.html">web hosting uptime report</a>. What does it reveal? It shows that Portal Planet has 99.99% uptime with many months having zero downtime. Use this link to view the <a target="_blank" title="NKY Web Hosting Uptime Report" href="http://www.portalplanet.net/nky-web-hosting/nky-web-hosting-uptime.pdf">NKY web hosting uptime report for Portal Planet</a> (PDF).</p>
</p>
<p><!--f5f5a19556d1cac559ed45dd887855ec-->
</p>
<p><!--7a8e7bb04568b8d5b9bb5cc9d7efdb51--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2007/09/nky-web-hosting-uptime-excellent/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi-domain Webmaster Hosting</title>
		<link>http://www.justinrains.com/2007/02/multi-domain-webmaster-hosting</link>
		<comments>http://www.justinrains.com/2007/02/multi-domain-webmaster-hosting#comments</comments>
		<pubDate>Sat, 24 Feb 2007 21:50:12 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Did you know?]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2007/02/24/multi-domain-webmaster-hosting.html</guid>
		<description><![CDATA[Portal Planet is proud to offer three new hosting plans geared towards webmasters, or those who have multiple domains to host. Webmasters can host up to 20 domains for only $25.00 per month! Webmasters looking for advanced features or with more domains can use the Webmaster 2 package that includes up to 45 domain names [...]]]></description>
			<content:encoded><![CDATA[<p>Portal Planet is proud to offer three new hosting plans geared towards webmasters, or those who have multiple domains to host. Webmasters can host up to 20 domains for only $25.00 per month! Webmasters looking for advanced features or with more domains can use the Webmaster 2 package that includes up to 45 domain names plus mySQL database access for only $35.00 per month. There is also a Webmaster 3 plan that includes SSL capability for online stores. For more information or to sign up please use the <a target="_blank" title="Web Hosting Wizard" href="http://www.portalplanet.net/wizard/">Portal Planet Web Hosting Wizard</a>. For more information please use this page to <a target="_blank" title="How to contact Portal Planet" href="http://www.portalplanet.net/contact.html">contact Portal Planet</a>.</p>
</p>
<p><!--ac3817d4b53dbec1a8fab3e584e15a16-->
</p>
<p><!--59363063af8250757d2bddb28f1ad025--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2007/02/multi-domain-webmaster-hosting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Control Scan and Portal Planet Partner to Provide Greater Internet Security</title>
		<link>http://www.justinrains.com/2006/04/control-scan-and-portal-planet-partner-to-provide-greater-internet-security</link>
		<comments>http://www.justinrains.com/2006/04/control-scan-and-portal-planet-partner-to-provide-greater-internet-security#comments</comments>
		<pubDate>Mon, 17 Apr 2006 18:19:27 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Did you know?]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2006/04/17/control-scan-and-portal-planet-partner-to-provide-greater-internet-security.html</guid>
		<description><![CDATA[



ATLANTA, GA. and FLORENCE, KY &#8221; ControlScan, the internet&#8221;s first and only B2B third-party identity theft certification service, and Portal Planet today announced a partnership aimed at educating consumers to more easily recognize consumer friendly and safe e-commerce sites.  The partnership illustrates ControlScan and Portal Planet&#8221;s continued commitment to battling online thieves.  
&#8220;Online [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-7704677970652870";
/* JR468x15, created 5/4/08 */
google_ad_slot = "7528480463";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p class="MsoNormal"><span style="font-family: Arial">ATLANTA, GA. and FLORENCE, KY &#8221; ControlScan, the internet&#8221;s first and only B2B third-party identity theft certification service, and Portal Planet today announced a partnership aimed at educating consumers to more easily recognize consumer friendly and safe e-commerce sites.  The partnership illustrates ControlScan and Portal Planet&#8221;s continued commitment to battling online thieves.  </span></p>
<p class="MsoNormal"><span style="font-family: Arial">&#8220;Online identity theft remains the number one concern among consumers contacting the Federal Trade Commission,&#8221; says ControlScan President &#038; CEO Richard Stanton. &#8220;The best protection against this crime is knowledge and caution. ControlScan&#8221;s ID THEFT PROTECTION third-party certification helps alleviate the threat and provides for a safe e-business environment.&#8221; </span></p>
<p class="MsoNormal"><span style="font-family: Arial"> <span id="more-33"></span></span></p>
<p class="MsoNormal"><span style="font-family: Arial">Identity theft is the act of illegally obtaining and using another&#8221;s personal information without his/her knowledge or consent to commit fraud for financial gain or for another criminal purpose. The Internet has made it easy for criminals to steal credit card numbers, Social Security numbers, names, addresses and birthdates of online shoppers. ID Theft is a daily threat with miserable consequences that can happen to anyone regardless of age, race or status.  ControlScan and <strong>Portal Planet</strong> are committed to alleviating this threat and working towards protecting consumers from Online Identity Theft.</span></p>
<p class="MsoNormal"><span style="font-family: Arial">&#8220;As information about ID Theft becomes more rampant, consumers are learning that it is not safe to give just any business their personal information. Likewise, businesses owners understand that they must take precautions to protect themselves and their customers from these criminals,&#8221; said Justin Rains at <strong>Portal Planet</strong>.  &#8220;By using ControlScan&#8221;s ID THEFT PROTECTION we hope to give both parties the assurance that their transactions are secure.&#8221;</span></p>
<p class="MsoNormal"><span style="font-family: Arial">ControlScan&#8221;s security certifications are rapidly becoming the industry standard for privacy protection.  The ID THEFT PROTECTION certificate assists in meeting the criteria for mandates in Europe, Japan, Canada, ISO and the USA. By using business plans unlike any other Internet security solution companies, ControlScan is able to custom protect companies and their consumers. As a business is put through the certification process, ControlScan is able to show the company where its weaknesses lie. If a company does not pass the test, ControlScan&#8221;s experts work with the company to increase its security until they meet the standards. Therefore, customers who see a ControlScan ID THEFT PROTECTED certification on a website can shop with ease, knowing that the business is working towards ensuring consumer safety.</span></p>
<p class="MsoNormal"><span style="font-family: Arial">In addition to the ID THEFT PROTECTED, ControlScan offers a number of other certifications that protect businesses and consumers from security threats. &#8220;Every business is different, and therefore requires different combinations of security,&#8221; says Stanton. &#8220;ControlScan has addressed this by offering 6 distinct security certificates.&#8221; These certificates include HACKER DEFENDED, PRIVACY PROTECTED, BUSINESS BACKGROUND REVIEWED, PHISHING PROTECTED, and SPAM PROTECTED.</span></p>
<p class="MsoNormal"><strong><span style="font-family: Arial">About Portal Planet</span></strong></p>
<p class="MsoNormal"><strong><span style="font-family: Arial">Portal Planet</span></strong><span style="font-family: Arial"> provides web site design services such as e-commerce, marketing site, and the recently added &#8220;Content Management System&#8221; or CMS. CMS is a way to allow companies to manage their website online through their browser. No HTML knowledge is needed to manage the companies website. </span><strong><span style="font-family: Arial">Portal Planet</span></strong><span style="font-family: Arial"> also provides affordable website hosting services for small businesses. For more information about Portal Planet visit <a href="http://www.portalplanet.net/">www.portalplanet.net</a> or call 859-594-4678.</span></p>
<p align="center" class="MsoNormal" style="text-align: center"><span style="font-family: Arial"> </span></p>
<p class="MsoNormal"><strong><span style="font-family: Arial">About ControlScan</span></strong></p>
<p class="MsoNormal"><span style="font-family: Arial">ControlScan provides third party verification and services to identify, measure and prioritize security, privacy, quality, accessibility and compliance risks that exist on corporate web properties.  Our solutions provide the visibility and control necessary to evaluate a company&#8221;s web property risk exposure, and to put processes and procedures in place to effectively implement online governance strategies. For more information visit <u><span style="color: blue"><a href="http://www.controlscan.com/">www.controlscan.com</a></span></u> or call, toll free, at 1-800-825-3301.</span></p>
<p class="MsoNormal"><span style="font-family: Arial"> </span></p>
<p align="center" class="MsoNormal" style="text-align: center"><span style="font-family: Arial">#           #          #</span></p>
<p><!--382f8bd9de15a52206060b6a9a5385ea-->
</p>
<p><!--2c63bc99e3ec48af6dc7f6c625bea9b8--></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7704677970652870";
/* jr468x60, created 5/4/08 */
google_ad_slot = "9071947841";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2006/04/control-scan-and-portal-planet-partner-to-provide-greater-internet-security/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The hosting sale continues!</title>
		<link>http://www.justinrains.com/2006/02/the-hosting-sale-continues</link>
		<comments>http://www.justinrains.com/2006/02/the-hosting-sale-continues#comments</comments>
		<pubDate>Mon, 06 Feb 2006 18:40:18 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2006/02/06/the-hosting-sale-continues.html</guid>
		<description><![CDATA[Wow! January flew by! To celebrate being on my own I decided that one month is not enough. I am raising the price for hosting by $2.00 and making a February hosting sale! More info here: http://www.portalplanet.net/february-2006-hosting-sale.html


]]></description>
			<content:encoded><![CDATA[<p>Wow! January flew by! To celebrate being on my own I decided that one month is not enough. I am raising the price for hosting by $2.00 and making a February hosting sale! More info here: <a target="_blank" href="http://www.portalplanet.net/february-2006-hosting-sale.html">http://www.portalplanet.net/february-2006-hosting-sale.html</a>
</p>
<p><!--4b1b21ca7486ed288e2dfe2595fc814c--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2006/02/the-hosting-sale-continues/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>January 2006 Hosting Blowout!</title>
		<link>http://www.justinrains.com/2006/01/january-2006-hosting-blowout</link>
		<comments>http://www.justinrains.com/2006/01/january-2006-hosting-blowout#comments</comments>
		<pubDate>Tue, 03 Jan 2006 13:39:45 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.justinrains.com/2006/01/03/january-2006-hosting-blowout.html</guid>
		<description><![CDATA[As mentioned earlier my company, Portal Planet, is having a sale to celebrate being in business for 5 full years. Check out the details of the sale here: http://portalplanet.net/january_2006_hosting_sale.html




]]></description>
			<content:encoded><![CDATA[<p>As mentioned earlier my company, Portal Planet, is having a sale to celebrate being in business for 5 full years. Check out the details of the sale here: <a target="_blank" href="http://www.portalplanet.net/january_2006_hosting_sale.html">http://portalplanet.net/january_2006_hosting_sale.html</a></p>
</p>
<p><!--dd4633a5f832c1fe8009ca9ca8433911-->
</p>
<p><!--1db603d7fb68282d6e044d875eb1f081--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.justinrains.com/2006/01/january-2006-hosting-blowout/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
