<?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>Website Hosting &#8211; YUMMY WAKAME Blog</title>
	<atom:link href="https://yummy-wakame.com/weblog/category/articles/website-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>https://yummy-wakame.com/weblog</link>
	<description>UX Designer + Full-Stack Dev</description>
	<lastBuildDate>Tue, 09 Jul 2019 04:06:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://yummy-wakame.com/weblog/wp-content/uploads/2018/07/cropped-square-icon-2-150x150.png</url>
	<title>Website Hosting &#8211; YUMMY WAKAME Blog</title>
	<link>https://yummy-wakame.com/weblog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to add custom Virtual Hosts to WAMP</title>
		<link>https://yummy-wakame.com/weblog/2017/10/how-to-add-custom-virtual-hosts-to-wamp/</link>
					<comments>https://yummy-wakame.com/weblog/2017/10/how-to-add-custom-virtual-hosts-to-wamp/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Wed, 18 Oct 2017 02:05:24 +0000</pubDate>
				<category><![CDATA[nifty hacks and tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<guid isPermaLink="false">http://yummy-wakame.com/?p=20101</guid>

					<description><![CDATA[(Refers to WAMPSERVER 3.0.6 64-bit) If you&#8217;re developing a site in WordPress or similar on your local machine and want to run your site from //customsitename instead of //localhost&#160;in WAMP every time you test, or even have a bunch of virtual hosts like //sitename1 //sitename2 etc, here&#8217;s how to do set them all up: Open [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><em>(Refers to WAMPSERVER 3.0.6 64-bit)</em></p>
<p>If you&#8217;re developing a site in WordPress or similar on your local machine and want to run your site from <em><strong>//customsitename</strong></em> instead of <strong><em>//localhost</em></strong>&nbsp;in WAMP every time you test, or even have a bunch of virtual hosts like <strong>//sitename1</strong> <strong>//sitename2</strong> etc, here&#8217;s how to do set them all up:</p>
<p>Open <em><strong>wamp64/bin/apache/apachex.x.xx/conf/extra/http-vhosts.conf</strong></em> and make a duplicate of the Virtual host entry for your localhost, paste it <strong>below</strong> localhost&#8217;s and change the <em>ServerName</em>, <em>DocumentRoot</em> and <em>Directory</em>&nbsp;to your own names and locations. DO NOT replace localhost, copy and paste it below. Change the names like for example:</p>
<p><code>&lt;VirtualHost *:80&gt;<br />
ServerName yoursitename<br />
DocumentRoot C:/wamp64/www/yourfolder<br />
&lt;Directory&nbsp; "C:/wamp64/www/yourfolder/"&gt;<br />
Options +Indexes +Includes +FollowSymLinks +MultiViews<br />
AllowOverride All Require local<br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;<br />
</code></p>
<p>Save.</p>
<p>Then, open <strong><em>C:\Windows\System32\drivers\etc\hosts</em></strong> in administrator mode and below:</p>
<p><code>127.0.0.1       localhost<br />
::1             localhost</code></p>
<p>add</p>
<p><code>127.0.0.1       yoursitename<br />
::1             yoursitename</code></p>
<p>Save and restart WAMP. Go to your localhost page and you will see it show up as a clickable virtual host.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2017/10/how-to-add-custom-virtual-hosts-to-wamp/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to fix WAMP&#8217;s missing localhost in URLs</title>
		<link>https://yummy-wakame.com/weblog/2017/09/how-to-fix-wamps-missing-localhost-in-urls/</link>
					<comments>https://yummy-wakame.com/weblog/2017/09/how-to-fix-wamps-missing-localhost-in-urls/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Thu, 14 Sep 2017 21:41:47 +0000</pubDate>
				<category><![CDATA[D&D Articles]]></category>
		<category><![CDATA[nifty hacks and tips]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<guid isPermaLink="false">http://yummy-wakame.com/?p=20096</guid>

					<description><![CDATA[Applies to: WAMPSERVER 3.0.6 64-bit You&#8217;ve probably run into this problem a bunch, where you have a few projects located in the www folder, and when you go to http://localhost/ or http://127.0.0.1/ and click on your project name it just points to http://mysite/ instead of http://localhost/mysite/. Super annoying to be manually typing it in every [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><em>Applies to: WAMPSERVER 3.0.6 64-bit</em><br />
You&#8217;ve probably run into this problem a bunch, where you have a few projects located in the www folder, and when you go to http://localhost/ or http://127.0.0.1/ and click on your project name it just points to http://mysite/ instead of http://localhost/mysite/. Super annoying to be manually typing it in every time. But with the latest version of WAMP Server (3.0.6 at the time of writing this, there&#8217;s a setting you can turn on to easily change this:</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-20097" src="https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings.png" alt="" width="580" height="440" srcset="https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings.png 580w, https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings-300x228.png 300w, https://yummy-wakame.com/weblog/wp-content/uploads/2017/09/wamp-localhost-settings-540x410.png 540w" sizes="(max-width: 580px) 100vw, 580px" /></p>
<p><strong>It is now configurable from the Wamp Aestan Tray menu.</strong></p>
<ol>
<li>Right-click on wamp icon in your system tray on the right.</li>
<li>Go to &#8220;wamp settings&#8221;</li>
<li>Enable &#8220;Add localhost in URL&#8221;</li>
<li>If you see the green tick mark, it is enabled.</li>
</ol>
<p>Now refresh your localhost home page and check URLs. It should be working perfectly.</p>
<p><strong>In older versions of WAMP:</strong></p>
<p>Open wamp/www/index.php</p>
<p>Change this line:</p>
<pre><code>$suppress_localhost = true;
</code></pre>
<p>To :</p>
<pre><code>$suppress_localhost = false;</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2017/09/how-to-fix-wamps-missing-localhost-in-urls/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Are you paying through the nose for Domain Name Registrations?</title>
		<link>https://yummy-wakame.com/weblog/2013/03/are-you-paying-through-the-nose-for-domain-name-registrations/</link>
					<comments>https://yummy-wakame.com/weblog/2013/03/are-you-paying-through-the-nose-for-domain-name-registrations/#respond</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Wed, 20 Mar 2013 23:48:28 +0000</pubDate>
				<category><![CDATA[Entrepeneurial spirit]]></category>
		<category><![CDATA[nifty hacks and tips]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<category><![CDATA[hacks & tips]]></category>
		<category><![CDATA[hosting]]></category>
		<guid isPermaLink="false">http://www.yummy-wakame.com/?p=14006</guid>

					<description><![CDATA[You don&#8217;t have to anymore. I used to pay $15 &#8211; $30 a year every year per domain. It never occurred to me to look around. Register your domains from $3.99 a year including under $2 WhoisGuard Privacy Protection with my favourite and only registrar NameCheap and help the fight against CISPA &#8211; Protect your [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>You don&#8217;t have to anymore.</strong></p>
<p><a href="http://goo.gl/C7zeQ" rel="external"><img decoding="async" class="pic_100px" alt="cheap .com .net .org domain registration through namecheap" src="https://yummy-wakame.com/weblog/wp-content/uploads/2013/03/namecheap_logo-100x100.jpg" width="100" height="100" /></a>I used to pay $15 &#8211; $30 a year every year per domain. It never occurred to me to look around. Register your domains from $3.99 a year including <a href="http://goo.gl/C7zeQ" target="_blank">under $2 WhoisGuard Privacy Protection</a> with my favourite and only registrar <a href="http://goo.gl/C7zeQ" target="_blank">NameCheap</a> and help the fight against CISPA &#8211; Protect your internet freedom! Namecheap donates to EFF.org and the fight against CISPA. Please raise awareness!<span id="more-14006"></span></p>
<p><a href="http://goo.gl/C7zeQ" rel="external"><img decoding="async" class="max-width" alt="namecheap fights against CISPA" src="https://yummy-wakame.com/weblog/wp-content/uploads/2013/03/namecheap.gif" width="916" height="270" /></a></p>
<p class="notice">More about <a title="Cheap Reliable Domain Name Registration" href="/expertise/cheap-reliable-domain-name-registration">Affordable Domain Name Registration</a> and <a title="Website Hosting" href="/expertise/website-hosting">Cheap, Reliable Website Hosting</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2013/03/are-you-paying-through-the-nose-for-domain-name-registrations/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>LunarPages vs AN Hosting (MidPhase)</title>
		<link>https://yummy-wakame.com/weblog/2006/11/update-moved-hosts/</link>
					<comments>https://yummy-wakame.com/weblog/2006/11/update-moved-hosts/#comments</comments>
		
		<dc:creator><![CDATA[olivia]]></dc:creator>
		<pubDate>Wed, 15 Nov 2006 00:27:53 +0000</pubDate>
				<category><![CDATA[Blogalog]]></category>
		<category><![CDATA[Website Hosting]]></category>
		<category><![CDATA[hosting]]></category>
		<guid isPermaLink="false">http://www.yummy-wakame.com/archives/2006/11/15/3435</guid>

					<description><![CDATA[PLEASE NOTE: This article has expired. For a full host comparison please go to the unlimited host comparison page. After loads of research over the weekend to find the perfect host, I finally moved my site today. What started off as a honeymoon romance a few years ago with LunarPages quickly soured over the last [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong class="color8">PLEASE NOTE: This article has expired. For a full host comparison please go to the <a href="/expertise/website-hosting" title="Unlimited Website Hosting">unlimited host comparison</a> page.</strong></p>
<p>After loads of research over the weekend to find the perfect host, I finally moved my site today. What started off as a honeymoon romance a few years ago with LunarPages quickly soured over the last year as their tech support is now virtually non-existent and my site has frequent outages.</p>
<p><strong>After careful and thorough research I finally decided on <a href="http://www.midphase.com/newaff/redir.pl?a=0.206146693862141&amp;c=2&amp;creative=Banners|ANHosting|TextLinks|TextLink&amp;redirURL=" rel="external">AN Hosting</a> as my new host.</strong> They are a division of the more famous <a href="http://www.midphase.com/newaff/redir.pl?a=0.206146693862141&amp;c=1&amp;creative=Banners|midPhase|TextLinks|TextLink&amp;redirURL=" rel="external">MidPhase</a>, but they offer outstanding value for money. For less than half the price of LunarPages package I get loads more disk space, more bandwidth, my site loads faster, 24-hour tech support that really supports (I thoroughly tested this overnight during the move), and trusty cPanel. And for all intents and purposes, they are MidPhase.</p>
<p>When I grow out of their shared hosting, I can move over to one of their dedicated plans. They even offer Windows hosting with all the usual components.</p>
<p>Lets compare the two:<span id="more-3435"></span></p>
<table border="0" cellspacing="0" cellpadding="2" style="border: none;">
<tr>
<td align="left" valign="top">&nbsp;</td>
<td width="110" align="left" valign="top" bgcolor="#F8F8F8" class="boldtext"><a href="http://www.lunarpages.com" rel="external">LunarPages</a> Business  Plan </td>
<td width="110" align="left" valign="top" bgcolor="#EFEFEF" class="boldtext"><a href="http://www.midphase.com/newaff/redir.pl?a=0.206146693862141&amp;c=2&amp;creative=Banners|ANHosting|TextLinks|TextLink&amp;redirURL=" rel="external">AN Hosting</a> MEGA Plus </td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Monthly fee: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">$21.95</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">$9.95</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Storage:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">50GB</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom"> 100GB</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Monthly bandwidth:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">1000 GB</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">1.5TB</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Support:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">24 hour (slow)</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">24 hour (responsive) </td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Addon domains:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">3 (additionals at $2.50 per month each) </td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">20</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Parked domains:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">unlimited</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unlimited</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Subdomains:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">unlimited</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unlimited</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">FTP accounts:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">unlimited</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unlimited</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Email accounts: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">unlimited</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unlimited</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">FTP accounts: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">unlimited</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unlimited</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">PHP:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">v4</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">v4 or 5 </td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">MySQL databases: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">unlimited</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unlimited</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext"> Ruby on Rails (RoR):</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">yes</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">yes</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Perl:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">yes</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">yes</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Python:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">yes</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">yes</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">CGI-BIN:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">yes</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">yes</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Full .htaccess control:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">yes</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">yes</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">cPanel Build: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">10.8.2-RELEASE 83</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">10.9.0-STABLE 58</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Dedicated IP: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">$2.50/month</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">$2.50/month </td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">Chillisoft ASP: </td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">$1.00/month/domain</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom">unavailable</td>
</tr>
<tr>
<td align="left" valign="top" class="boldtext">SSL Certificate:</td>
<td align="left" valign="top" bgcolor="#F8F8F8" class="borderbottom">Shared @ $49.00/year</td>
<td align="left" valign="top" bgcolor="#EFEFEF" class="borderbottom"> Free Self-Signed SSL Certificates</td>
</tr>
</table>
]]></content:encoded>
					
					<wfw:commentRss>https://yummy-wakame.com/weblog/2006/11/update-moved-hosts/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
	</channel>
</rss>
