<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>marramgrass</title>
	
	<link>http://www.marramgrass.org.uk</link>
	<description>unexpected, and a little spiky</description>
	<lastBuildDate>Thu, 26 Jan 2012 12:26:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/marramgrass" /><feedburner:info uri="marramgrass" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Running multiple Magento stores on one install.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/7o9R-A47R1g/</link>
		<comments>http://www.marramgrass.org.uk/2012/01/26/running-multiple-magento-stores-on-one-install/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 12:24:26 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1046</guid>
		<description><![CDATA[References Overview: How Multiple Websites &#38; Stores Work MultiStore and Multiple Domains problem &#8211; /app/Mage.php was not found How To Setup Multiple Magento Stores Magento for Designers: Multi-Store Functionality Notes This assumes a standard LAMP setup. In our case, Ubuntu 10.04 LTS, Apache 2, MySQL 5 and PHP 5.3. It&#8217;s necessary to create some symlinks [...]]]></description>
			<content:encoded><![CDATA[<h3 id="references">References</h3>
<ul>
<li><a href="http://www.magentocommerce.com/knowledge-base/entry/overview-how-multiple-websites-stores-work">Overview: How Multiple Websites &amp; Stores Work</a></li>
<li><a href="http://www.magentocommerce.com/boards/viewthread/15003/">MultiStore and Multiple Domains problem &#8211; /app/Mage.php was not found</a></li>
<li><a href="http://www.crucialwebhost.com/blog/how-to-setup-multiple-magento-stores/">How To Setup Multiple Magento Stores</a></li>
<li><a href="http://net.tutsplus.com/tutorials/php/magento-for-designers-multi-store-functionality/">Magento for Designers: Multi-Store Functionality</a></li>
</ul>
<h3 id="notes">Notes</h3>
<ul>
<li>This assumes a standard LAMP setup. In our case, Ubuntu 10.04 LTS, Apache 2, MySQL 5 and PHP 5.3.</li>
<li>It&#8217;s necessary to create some symlinks on the filesystem, so you&#8217;ll need access to do that. You don&#8217;t really want to be trying to run Magento<br />
on a shared host anyway, so this shouldn&#8217;t be a problem.</li>
<li>The stores are on different domains, although the principles are the same if it&#8217;s a subdomain, subfolder or other configuration.</li>
</ul>
<p>Magento is powerful and flexible, but not terribly well documented, so figuring out the best way to accomplish something can take some digging<br />
and some experimentation. I needed to set up two stores to run off the same Magento installation as two catalogues (one a subset of the other)<br />
from the same retailer.</p>
<p>There are two broad approaches:</p>
<ul>
<li>A single <code>VirtualHost</code> with aliases for the various domains, with logic added to the root <code>index.php</code> to decide which store to load.</li>
<li>A <code>VirtualHost</code> for each domain, linked to one core Magento installation.</li>
</ul>
<p>I took the multiple <code>VirtualHost</code>s approach, as it seemed a little more logical to me (a matter of taste, really). It has the advantage of each<br />
domain having its own <code>.htaccess</code>, which might be handy if you&#8217;re doing other things alongside Magento.</p>
<p>When running multiple stores from one Magento instance, they all share the same back office and catalogue. Once you set up a second website,<br />
store or view then anywhere they need to differentiate the option appears to use the default config or to apply a site- store- or view-specific<br />
setting. This means that themes and extensions for the various stores all live together.</p>
<h3 id="asidenote:websitesstoresandviews">A side note: websites, stores and views</h3>
<p>You&#8217;ll need to decide whether your new store is a whole new website or a new store of the same website. Broadly<br />
speaking, from the point of view of what the customer sees:</p>
<ul>
<li>Websites are separate entities</li>
<li>Stores are distinct but share customer accounts and shopping carts</li>
<li>Views may be the same store in a different language or layout</li>
</ul>
<p>Although that&#8217;s pretty configurable. Websites can be set to share customer accounts, for example. And, again, they&#8217;ll all share the same admin and<br />
catalogue.</p>
<p>In this case, we went for two distinct websites.</p>
<h3 id="themethod">The method</h3>
<ol>
<li>
<p>Create a new root category for your new website. You can put a full category tree under it and add products to the categories.</p>
</li>
<li>
<p>In the control panel, go to <em>System &gt; Manage Shops</em> and create a new website, then shop for that website and view for that shop. Take note of the<br />
code you assign to the website &#8211; you&#8217;ll need it later. Assign your newly-created root category to the new store.</p>
</li>
<li>
<p>Create a new <code>VirtualHost</code> for the new website. Note that the Magento files will need to be accessible to PHP from this <code>VirtualHost</code>,<br />
so pay attention to any restrictions on your server.</p>
</li>
<li>
<p>In the new <code>VirtualHost</code> block, you need to set two environmental variables:<br/><br />
<code>SetEnv MAGE_RUN_CODE &quot;your_new_website_code&quot;</code><br/><br />
<code>SetEnv MAGE_RUN_TYPE &quot;website&quot;</code><br/><br />
If doing this in the <code>VirtualHost</code> is a problem, your server configuration may allow you to do it in the <code>.htaccess</code> file below.</p>
</li>
<li>Copy <code>index.php</code> from the document root of the existing site to the document root of the new site. Find and modify the following variables to point<br />
to the files in the Magento installation:</p>
<ul>
<li><code>$compilerConfig</code></li>
<li><code>$mageFilename</code></li>
</ul>
</li>
<li>
<p>Copy <code>.htaccess</code> from the existing document root to that of the new site. Check it for any hostname-specific rules that have been added, and<br />
modify them as necessary.</p>
</li>
<li>Create symlinks of the following folders in the existing site&#8217;s document root to the same locations in the new site&#8217;s document root:
<ul>
<li><code>app</code></li>
<li><code>errors</code></li>
<li><code>includes</code></li>
<li><code>js</code></li>
<li><code>lib</code></li>
<li><code>media</code></li>
<li><code>skin</code></li>
<li><code>var</code></li>
</ul>
<p>For example, <code>ln -s /path/to/existing/document/root/app /path/to/new/document/root/app</code>.</p>
</li>
<li>
<p>In the control panel, go to <em>System &gt; Configuration &gt; Web</em>, select hte new website from the dropdown in the top-left corner, uncheck<br />
<em>Use Default</em> by the <em>Unsecure</em> and <em>Secure</em> <em>Base URL</em>s, then correct the URLs set to those of your new website.</p>
</li>
<li>
<p>Reindex everything.</p>
</li>
<li>
<p>Optionally set the theme for the new site under <em>System &gt; Configuration &gt; Design</em>.</p>
</li>
<li>
<p>Job done.</p>
</li>
</ol>
<p>If, after doing this, the home page of the new website is showing a default Magento 404, then check that the code for the new website<br />
is set exactly the same in the control panel and in the server environment variable. A typo in the control panel setting lost me 45 minutes.<br />
That was frustrating.</p>
<p>Also note that as we&#8217;ve edited a core file or two (<code>index.php</code> and maybe <code>.htaccess</code>), keep an eye on them if you upgrade your Magento instance.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/7o9R-A47R1g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2012/01/26/running-multiple-magento-stores-on-one-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2012/01/26/running-multiple-magento-stores-on-one-install/</feedburner:origLink></item>
		<item>
		<title>Ten.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/gpL4idMCLJw/</link>
		<comments>http://www.marramgrass.org.uk/2011/12/28/ten/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 00:00:01 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Any Other Business]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1040</guid>
		<description><![CDATA[Ten years ago today I married the best person I&#8217;d ever met. Ten years later, she still is. I don&#8217;t expect that to change. Ten years includes some of the best times in my life, and some of the most difficult. At the highest and at the lowest, I haven&#8217;t been alone. The person I [...]]]></description>
			<content:encoded><![CDATA[<p>Ten years ago today I married the best person I&#8217;d ever met.</p>
<p>Ten years later, she still is. I don&#8217;t expect that to change.</p>
<p>Ten years includes some of the best times in my life, and some of the most difficult. At the highest and at the lowest, I haven&#8217;t been alone. The person I have most wanted to have there to share the joys and to help me through the sadnesses has always been there. No exceptions.</p>
<p>Ten years ago, I felt like a child pretending to grow up. I still do. I don&#8217;t expect that to change, either.</p>
<p>I have ten years&#8217; more knowledge and experience of the fact that nobody&#8217;s perfect. Especially me.</p>
<p>Ten years have proved to me what I believed then: life is hard, but worth it.</p>
<p>After ten years, there are now <a href="http://www.marramgrass.org.uk/2009/05/02/new-today/">four</a> of <a href="http://www.marramgrass.org.uk/2011/08/04/joel-ian-james-goody/">us</a>. And a <a href="http://www.marramgrass.org.uk/2009/05/18/hound/">dog</a>.</p>
<p>Ten years ago I couldn&#8217;t have imagined what life would be like now. And I love it.</p>
<p>Ten years ago, I loved her.</p>
<p>Ten years into this, I love her, but I understand better than I did then what that means.</p>
<p>Ten years have been spent realising and marvelling at how lucky I am.</p>
<p>Ten years is a long time. Ten years is no time at all. It&#8217;s the beginning.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/gpL4idMCLJw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/12/28/ten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/12/28/ten/</feedburner:origLink></item>
		<item>
		<title>Prose.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/PFMvJzYSJyI/</link>
		<comments>http://www.marramgrass.org.uk/2011/11/13/prose/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 21:53:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1038</guid>
		<description><![CDATA[The man holding a sword near Barnes&#8217;s throat was a creature worn down almost to the nub, like a pencil eraser with just enough pink rubber left to make one final correction. Yikes.]]></description>
			<content:encoded><![CDATA[<blockquote><p>The man holding a sword near Barnes&#8217;s throat was a creature worn down almost to the nub, like a pencil eraser with just enough pink rubber left to make one final correction.</p></blockquote>
<p><a href="http://www.amazon.co.uk/Night-Eternal-Strain-Trilogy/dp/0007319525/">Yikes.</a></p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/PFMvJzYSJyI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/11/13/prose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/11/13/prose/</feedburner:origLink></item>
		<item>
		<title>Our house, this afternoon.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/6aIXvwdcaSo/</link>
		<comments>http://www.marramgrass.org.uk/2011/11/12/our-house-this-afternoon/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 23:50:07 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Any Other Business]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1034</guid>
		<description><![CDATA[Mother: &#8220;What are you eating?&#8221; Child: &#8220;A little bit of snot.&#8221;]]></description>
			<content:encoded><![CDATA[<p>Mother: &#8220;What are you eating?&#8221;</p>
<p>Child: &#8220;A little bit of snot.&#8221;</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/6aIXvwdcaSo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/11/12/our-house-this-afternoon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/11/12/our-house-this-afternoon/</feedburner:origLink></item>
		<item>
		<title>Stationery.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/Gy6I_WMQbho/</link>
		<comments>http://www.marramgrass.org.uk/2011/11/01/stationery/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 22:46:50 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1028</guid>
		<description><![CDATA[A birthday, and the attendant (generously given, gratefully received) gifts have led to a few new things to feed my not-so-modest stationery addiction. Pictured here, a hint of the Field Notes subscription and the new most stealthy and gruntingly manly fountain pen to join my pen case, the limited edition, all matte black Pilot Capless [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/marramgrass/6304152360/" title="Stationery by Marramgrass, on Flickr"><img src="http://farm7.static.flickr.com/6037/6304152360_8f3f5d4092_m.jpg" width="240" height="240" alt="Stationery"></a></p>
<p>A birthday, and the attendant (generously given, gratefully received) gifts have led to a few new things to feed my not-so-modest stationery addiction. Pictured here, a hint of the <a href="http://fieldnotesbrand.com/">Field Notes subscription</a> and the new most stealthy and gruntingly manly fountain pen to join my pen case, the limited edition, all matte black Pilot Capless (Namiki Vanishing Point in some markets) retractable, clicky goodness. It&#8217;s very nice, and really needs to be seen in person. Black as black as black.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/Gy6I_WMQbho" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/11/01/stationery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/11/01/stationery/</feedburner:origLink></item>
		<item>
		<title>Joel Ian James Goody</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/ryRCpHfKqr0/</link>
		<comments>http://www.marramgrass.org.uk/2011/08/04/joel-ian-james-goody/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 22:14:57 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Network News]]></category>
		<category><![CDATA[Photoblog]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1025</guid>
		<description><![CDATA[Born on Monday morning, all 6lb 2oz of him.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/marramgrass/6009481619/" title="Joel by Marramgrass, on Flickr"><img src="http://farm7.static.flickr.com/6008/6009481619_a6114a1a3f.jpg" width="374" height="500" alt=""></a></p>
<p>Born on Monday morning, all 6lb 2oz of him.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/ryRCpHfKqr0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/08/04/joel-ian-james-goody/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/08/04/joel-ian-james-goody/</feedburner:origLink></item>
		<item>
		<title>On having chosen a DNS host.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/Z_YE1gcp1OQ/</link>
		<comments>http://www.marramgrass.org.uk/2011/07/27/on-having-chosen-a-dns-host/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:32:05 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1023</guid>
		<description><![CDATA[Further to my previous post, I ended up going with Nettica. A friendly enough control panel, and a quick and easy to base service makes for sufficient happiness. I did have my first experience with their support team today (I should clarify that it wasn&#8217;t a problem needing solved; rather, it was to do with [...]]]></description>
			<content:encoded><![CDATA[<p>Further to my <a href="http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/">previous post</a>, I ended up going with <a href="http://www.nettica.com/">Nettica</a>. A friendly enough control panel, and a quick and easy to base service makes for sufficient happiness.</p>
<p>I did have my first experience with their support team today (I should clarify that it wasn&#8217;t a problem needing solved; rather, it was to do with transferring DNS for a domain between two Nettica accounts), and they were quick and helpful. Happy there for now, then.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/Z_YE1gcp1OQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/07/27/on-having-chosen-a-dns-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/07/27/on-having-chosen-a-dns-host/</feedburner:origLink></item>
		<item>
		<title>On choosing a DNS host.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/gF32Din3_6Y/</link>
		<comments>http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:48:39 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1018</guid>
		<description><![CDATA[There can be several moving parts to a website. Three big ones are the domain name (the .com address), the hosting (the space on a hard disk somewhere where the website lives, from which your web browser will download it) and the DNS (the Domain Name System which translates the human-friendly .com address to the [...]]]></description>
			<content:encoded><![CDATA[<p>There can be several moving parts to a website. Three big ones are the <i>domain name</i> (the <i>.com</i> address), the <i>hosting</i> (the space on a hard disk somewhere where the website lives, from which your web browser will download it) and the <i>DNS</i> (the <i>Domain Name System</i> which translates the human-friendly <i>.com</i> address to the string of numbers &mdash; <a href="http://en.wikipedia.org/wiki/Ipv6">soon numbers and letters</a> &mdash; that computers need to find the hosting).</p>
<p>From a management point of view it&#8217;s often easiest to have all three of these handled by the same company, and that&#8217;s a very common setup. I&#8217;m not too keen on the &ldquo;eggs in one basket&rdquo; feel of that, though, and I tend to have the domain name and the hosting for any given website in different places, with the DNS taken care of by one or the other.</p>
<p>I have domains registered all over the place, so keeping track and making updates takes a little bit of doing. I was also thinking about getting in a complete separation, with DNS taken care of by a third provider.</p>
<p>So, I <a href="https://twitter.com/marramgrass/status/83465574381920256">tweeted</a>:</p>
<blockquote><p>Contemplating a specialist DNS host, rather than scattering amongst domains&#8217; registrars. DNSMadeEasy, DNSimple, who else should I look at?</p>
</blockquote>
<p>I got quite a response back, both from friends and colleagues and from DNS hosts who were watching the tweets go by. My research into possible hosts, partly informed by the twitterly response, turned up a number of possibilities.</p>
<h3>DNS Made Easy</h3>
<p>The first of the two I was vaguely aware of, <a href="http://www.dnsmadeeasy.com/">DNS Made Easy</a> comes recommended by <a href="http://twitter.com/aarpol">Aaron</a>, who is a difficult man to please. They also sent me a friendly, not too pushy, tweet or two. For my needs, I&#8217;d be looking at US$60 a year, probably plus a few US$2s per year for domains beyond the 25 included in that price.</p>
<h3>DNSimple</h3>
<p><a href="https://dnsimple.com/">DNSimple</a> was the other one I kind of knew about, although I can&#8217;t remember who recommended them to me. A bit more expensive than DNS Made Easy, at US$10 per month. However, that&#8217;s for 50 domains and they have a bunch of other useful features and offer a broader range of records for the DNS. They, too, sent me a friendly <a href="https://twitter.com/dnsimple/status/83493866585591808">tweet</a>.</p>
<h3>Dyn</h3>
<p><a href="http://twitter.com/mjsmitty1383">Two</a> <a href="http://twitter.com/Ryohara">separate</a> <a href="http://dyn.com/">Dyn</a> reps jumped on my tweet. The second one was a little intense. I emailed the first guy to see which of their offerings would suit my needs. They offer a few nice features, especially around import and export of sets of records, but US$95 per month is a fair bit more than I was planning on spending. (Dyn are the folks behind <a href="http://www.dyndns.com/">DynDNS</a>, which I have a paid account with as well. That&#8217;s a good service, but not quite the same thing as I&#8217;m looking for.)</p>
<h3>Nettica</h3>
<p><a href="http://twitter.com/djlowry">David</a> chimed in with a recommendation for <a href="http://www.nettica.com/">Nettica</a>. Their <a href="http://www.nettica.com/Domain/Bulk.aspx">Bulk DNS service</a> sounds pretty great, especially the template setup and the straightforward-as-a-straightforward-thing US$50/50 domains/year pricing.</p>
<h3>Hover</h3>
<p><a href="http://twitter.com/stuartgibson">Stuart</a>, <a href="https://twitter.com/ryangadams/status/83466444892934144">supported by</a> <a href="http://twitter.com/ryangadams">Ryan</a>, <a href="http://tweetlibrary.com/marramgrass/hover"><em>really</em> likes</a> <a href="http://www.hover.com/">Hover</a>. It&#8217;s not really what I&#8217;m looking for, though, as it&#8217;s a registrar with good DNS management. I&#8217;m not looking to shift domain registration at the moment, and it misses the separation I&#8217;m after.</p>
<h3>Amazon Route 53</h3>
<p>Amazon&#8217;s <a href="http://aws.amazon.com/route53/">Route 53</a> is part of the Amazon Web Services lineup, and I kind of half expected it to be the answer I was after. Pricing of US$1/domain/month, plus low per-request charges, place it at the higher end of the mid-price range. However, there&#8217;s no control panel &mdash; everything is done with straight API calls by feeding a little Perl script with XML. While I may be intrigued by the possibility of writing a decent client, I don&#8217;t want to have to faff about with that in the meantime.</p>
<h3>Conclusions, then</h3>
<p>I have none solid, yet. Hover&#8217;s out, as it&#8217;s not really what I&#8217;m after. Dyn is too expensive and Route 53 is too fiddly. That leaves DNS Made Easy, DNSimple and Nettica. All the services make nice, reassuring promises about uptime, with a couple of solid guarantees in there, but everyone has downtime sometimes. I&#8217;m working on the basis that a reputable provider will manage it acceptably.</p>
<p>My decision would be an approximate toss up between the first two, with a slight bias to DNSimple for their wider range of services, but I am intrigued by Nettica&#8217;s Bulk DNS service. A little more research is in order, then. Shifting a whole bunch of domains around is too painful to want to do it more than once.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/gF32Din3_6Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/06/22/on-choosing-a-dns-host/</feedburner:origLink></item>
		<item>
		<title>Credit where due.</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/UlKVzrjUw74/</link>
		<comments>http://www.marramgrass.org.uk/2011/05/13/credit-where-due/#comments</comments>
		<pubDate>Fri, 13 May 2011 22:33:10 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[G33k]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1016</guid>
		<description><![CDATA[Some industries get a bad reputation; telecoms, including ISPs, is one of them. For almost five years we got our broadband from Zen. They aren&#8217;t the cheapest out there, but they provided us with a solid service that I can only recall flickering once or twice in all that time. When necessary, their staff were [...]]]></description>
			<content:encoded><![CDATA[<p>Some industries get a bad reputation; telecoms, including <a href="http://en.wikipedia.org/wiki/Internet_Service_Provider">ISPs</a>, is one of them.</p>
<p>For almost five years we got our broadband from <a href="http://www.zen.co.uk/">Zen</a>. They aren&#8217;t the cheapest out there, but they provided us with a solid service that I can only recall flickering once or twice in all that time. When necessary, their staff were helpful and pleasant.</p>
<p>When <a href="http://www.productsandservices.bt.com:80/consumerProducts/displayTopic.do?topicId=29017&#038;s_cid=con_FURL_infinity">fibre</a> hit our area we ended up moving away from Zen (BT seem to offer the best balance of cost and features on the service). I expected to be paying an extra month&#8217;s charges for the 30 day notice period on our contract. Instead, they sent me a statement saying I was £16 in credit with them. Today I received another letter, asking for bank details so that they could send the £16.</p>
<p>I suppose it shouldn&#8217;t be remarkable that a company is offering to refund a customer money that they overpaid, but it is. So, well done to Zen.</p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/UlKVzrjUw74" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/05/13/credit-where-due/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/05/13/credit-where-due/</feedburner:origLink></item>
		<item>
		<title>Tuesday Tunes: I Am The Doctor</title>
		<link>http://feedproxy.google.com/~r/marramgrass/~3/CuxRSSbDYa4/</link>
		<comments>http://www.marramgrass.org.uk/2011/04/05/tuesday-tunes-i-am-the-doctor/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 20:07:27 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Tuesday Tunes]]></category>

		<guid isPermaLink="false">http://www.marramgrass.org.uk/?p=1012</guid>
		<description><![CDATA[For an SF nut, I never really got Doctor Who. I remember watching Peter Davison and Sylvester McCoy when I was a kid, but don&#8217;t remember them as being very good. The current, eleventh, Doctor has really grabbed my attention, though. I&#8217;ve been well and truly sucked in, and it&#8217;s some cracking TV. The BBC [...]]]></description>
			<content:encoded><![CDATA[<p>For an SF nut, I never really got <i>Doctor Who</i>. I remember watching Peter Davison and Sylvester McCoy when I was a kid, but don&#8217;t remember them as being very good.</p>
<p>The current, <a href="http://en.wikipedia.org/wiki/The_Eleventh_Doctor">eleventh</a>, Doctor has really grabbed my attention, though. I&#8217;ve been well and truly sucked in, and it&#8217;s some cracking TV. The BBC has been making some interesting science fiction over the last few years. Russell T Davies, the showrunner for the previous two modern Doctor Whos (<a href="http://en.wikipedia.org/wiki/The_Ninth_Doctor">Eccleston</a> and <a href="http://en.wikipedia.org/wiki/The_tenth_doctor">Tennant</a>) seems to have had something to do with bringing the genre back into the mainstream, landing Doctor Who on Saturday evenings, then getting  more mature with <a href="http://en.wikipedia.org/wiki/Torchwood"><i>Torchwood</i></a> (<a href="http://en.wikipedia.org/wiki/Children_of_Earth"><i>Children of Earth</i></a> was a stormer).</p>
<p>Today&#8217;s tune (the first here in quite some time) is from the soundtrack of last year&#8217;s series of <i>Doctor Who</i>. It&#8217;s from the first episode, and introduces the Eleventh Doctor&#8217;s theme. The soundtrack for the series is very high quality, and this is probably its high point.</p>
<p><a href="http://open.spotify.com/track/1gDJQKYYyQvGjCvvWwSXi5">&ldquo;I Am The Doctor&rdquo; [Spotify]</a></p>
<img src="http://feeds.feedburner.com/~r/marramgrass/~4/CuxRSSbDYa4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.marramgrass.org.uk/2011/04/05/tuesday-tunes-i-am-the-doctor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.marramgrass.org.uk/2011/04/05/tuesday-tunes-i-am-the-doctor/</feedburner:origLink></item>
	</channel>
</rss>

