<?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>Anchor Web Hosting Blog</title>
	<atom:link href="http://www.anchor.com.au/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anchor.com.au/blog</link>
	<description>A view into the Anchor Engineroom</description>
	<lastBuildDate>Tue, 15 May 2012 05:02:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Ninja migrations from VMware to KVM using vmdksync</title>
		<link>http://www.anchor.com.au/blog/2012/05/ninja-migrations-from-vmware-to-kvm-using-vmdksync/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/ninja-migrations-from-vmware-to-kvm-using-vmdksync/#comments</comments>
		<pubDate>Tue, 15 May 2012 00:20:58 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[FTW]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[lvmsync]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3393</guid>
		<description><![CDATA[We recently made the decision to pay off some of our technical debt by eliminating the VMware servers we built when we first started our Virtual Private Server (VPS) offering. VMware is a commercial vendor platform so it&#8217;s not exactly trivial to jump ship, but it is possible with some time and effort. Forcing a [...]]]></description>
			<content:encoded><![CDATA[<p>We recently made the decision to pay off some of our <a href="http://queue.acm.org/detail.cfm?id=2168798">technical debt</a> by eliminating the VMware servers we built when we first started our Virtual Private Server (VPS) offering. VMware is a commercial vendor platform so it&#8217;s not exactly trivial to jump ship, but it <em>is</em> possible with some time and effort. <strong>Forcing a few hours downtime on our customers for business reasons is not cool</strong>, so we had to find a better way.</p>
<h1>Background and rationale</h1>
<p>When we first started offering virtual servers the software landscape was very different. After comparing what was available at the time we settled on VMware ESX for our virtual private server product &#8211; the right features, suitable for a VPS product, secure and manageable enough, sufficiently mature and reliable, and a nominal level of support.</p>
<p>Things changed over time and VMware wasn&#8217;t doing what we needed, and we&#8217;ve since switched to using <a href="http://en.wikipedia.org/wiki/Kernel-based_Virtual_Machine">KVM</a> for our new VPS deployments. The VMware servers are still ticking over but they&#8217;re not without issues, particularly with the dedicated Windows machine we&#8217;re forced to use to access the console and management tools.</p>
<p>Thus, the (rather easy) decision was made to migrate all the VMs to our KVM-based infrastructure. As a bonus we get to move them to shinier Dell hardware. The only question was <em>how?</em></p>
<h1>Challenges</h1>
<p>We&#8217;ve done plenty of migrations between VPS servers before, it&#8217;s really just swapping one set of virtual hardware for another. Linux doesn&#8217;t mind, but Windows will frequently have a fit, and that&#8217;s where a bunch of the problems lie.</p>
<p>In addition, downtime needs to be kept to a minimum. You can mount up a VMware disk image and pump data across the network, but that&#8217;s slow. At least if we were dealing with a Xen or KVM system as the source then we could use <a href="http://www.anchor.com.au/blog/2011/10/why-you-should-use-lvm-part-1319755409-in-an-infinite-series/" title="Why you should use LVM: part 1319755409 in an infinite series">lvmsync</a> to dodge the problem, but no such luck here.</p>
<h1>Enter vmdksync</h1>
<p>This last point is what made our Matt Palmer itchy &#8211; <em>why can&#8217;t we apply a binary diff of disk images?</em> VMware has snapshots just like LVM after all.</p>
<p>VMware looks mostly like an RHEL3 system when you login, and VM data is stored in a <em><a href="http://en.wikipedia.org/wiki/VMware_VMFS">VMFS</a></em> filesystem with some special access semantics. The VM disks are just raw files, so far so good, but the filesystem doesn&#8217;t show up when you run <tt>df</tt> or <tt>mount</tt>, and VMware seems to hold exclusive locks on the <tt>.vmdk</tt> files. You can&#8217;t even use <tt>file</tt> or <tt>hexdump</tt> on an in-use image.</p>
<p>With some experimentation, Matt found that locks only apply to files opened for writing &#8211; taking a snapshot releases the lock on the original (&#8220;flat&#8221;) file, and locks the snapshot (&#8220;delta&#8221;) instead. Hallelujah! We can make a baseline copy of the disk from the unlocked flat file while the VM is running, then apply the changes in the delta file, which should be very quick.</p>
<p>That&#8217;s exactly what <a href="http://hezmatt.org/~mpalmer/blog/2012/05/13/vmdksync-helps-you-escape-from-vmware.html">vmdksync</a> does. After nutting out the perverse description of sparse extents in the <a href="http://www.vmware.com/support/developer/vddk/vmdk_50_technote.pdf">Virtual Disk Format 5.0 Technote</a>, Matt put together a little ruby script to merge a VMware snapshot over a target device. That&#8217;s an LVM logical volume in our case, but it could be any sort of disk image that you like.</p>
<h1>Step by step</h1>
<p>End-to-end, the procedure looks something like the following. Depending on how you prefer to manhandle VMware, Matt has some convenient command-line examples in his README over at <a href="https://github.com/mpalmer/vmdksync">the repo</a>.</p>
<ol>
<li>Tell puppet to setup a blank VPS on your new KVM server</li>
<li>Take a snapshot of the victim on the VMware host</li>
<li>Use dd and netcat to copy the flat file across the network and onto the empty logical volume (LV) on the new server</li>
<li>Shutdown the victim on the VMware host, releasing the locks on the snapshot delta file</li>
<li>Push the delta across the network to the KVM server</li>
<li>Use vmdksync to apply the delta to the LV</li>
<li>Fire up the VPS on the KVM server, you&#8217;re done!</li>
</ol>
<p>With judicious use of scripting and quick hands, you can do all this with as little as <strong>about 90 seconds of observed downtime</strong>. That&#8217;s not much longer than it takes for a reboot.</p>
<h1>Dealing with Windows</h1>
<p>It&#8217;s not all kittens and rainbows when it comes to Windows, as mentioned earlier. The massive changes in (virtual) hardware often cause problems when booting after migrating the VPS, so we use a commercial tool called ShadowProtect to inject the necessary drivers into the installation before bringing it to life again.</p>
<div id="attachment_3443" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/windows_shadowprotect_broken_bootloader.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/windows_shadowprotect_broken_bootloader.jpg" alt="" title="windows_shadowprotect_broken_bootloader" width="490" height="368" class="size-full wp-image-3443" /></a><p class="wp-caption-text">Sometimes you have a problem with the bootloader... Yep, that&#039;s broken!</p></div>
<p>ShadowProtect is also a very fast way to fix bootloader issues that sometimes crop up during migrations. Once successfully booted, the network interfaces will need to be reconfigured and the system reactivated, thanks to the hardware changes.</p>
<p>Start-to-finish, <strong>a Windows systems takes about 20-30min</strong> to get up and running again, which is quite respectable when you consider that regular Windows Updates can take as long to apply. We also remove the remnants of VMware tools and drivers to keep things tidy.</p>
<h1>Wrap up</h1>
<p>This was an overwhelmingly successful process that saw us sweep several dozen VMs onto new servers over the course of a couple of weekends. Planning the work and contacting all the affected customers probably took more time than actually doing the hands-on work.</p>
<p>If you&#8217;ve run into similar sorts of fun when dealing with VMware we&#8217;d love to hear about it. Likewise, if you have any questions just leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/ninja-migrations-from-vmware-to-kvm-using-vmdksync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting a lead on Phil</title>
		<link>http://www.anchor.com.au/blog/2012/05/getting-a-lead-on-phil/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/getting-a-lead-on-phil/#comments</comments>
		<pubDate>Mon, 14 May 2012 23:15:25 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[FTW]]></category>
		<category><![CDATA[anchorite]]></category>
		<category><![CDATA[employee]]></category>
		<category><![CDATA[q&a]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3411</guid>
		<description><![CDATA[You&#8217;ve read about some of our fresh sales blood at Anchor, now meet one of our salty dogs, Phil Pace. Been here since the dawn of time eh? I started as the first person in a sales role here. I&#8217;m now an Account Manager. When I first started it was Keiran (now CEO) and Andrew [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/phil.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/phil.jpg" alt="" title="Phil Pace" width="200" height="151" class="alignright size-full wp-image-3463" /></a></p>
<p>You&#8217;ve read about some of our fresh sales blood at Anchor, now meet one of our salty dogs, Phil Pace.</p>
<p><strong>Been here since the dawn of time eh?</strong></p>
<p>I started as the first person in a sales role here. I&#8217;m now an Account Manager. When I first started it was Keiran (now CEO) and Andrew (co-founder) doing the sales, and pretty much everything else.</p>
<p><strong>Most of the people at Anchor seem to be from a technical background, no matter what they do at Anchor, is that true of you?</strong></p>
<p>Anchor is my first sales role; prior to this I was working as a lead developer for a digital agency in London. Not many companies will give a developer a chance in sales, but a developer background comes in handy in all sorts of ways &#8211; when I started working at Anchor, one of the first things I did was write my own application to track my sales leads.</p>
<p><strong>How did you come to be in the UK?</strong></p>
<p>My dad was in IT sales at Microsoft and we moved there when I was 17, after I finished high school.</p>
<p><strong>And then you studied computer science?</strong></p>
<p>No, I’m a self-taught developer. I spent some time with ISPs at first, learning basic server admin and early CMS products. Now I like to work with the LAMP stack when I can.</p>
<p><strong>So why sales?</strong></p>
<p>I wanted to get out of that developer mindset, didn’t want to become introverted with my head full of code all the time. I wanted to challenge myself a bit and learn to do new things.</p>
<p><strong>Your skin is a strange colour, is that pigmentation due to&#8230; exposure to the sun?</strong></p>
<p>I like the outdoors. I like to snorkel and fish, at Clovelly or Narrawallee down the coast. I get in a few gym sessions a week, and do a bit of golf, tennis, squash and indoor climbing.</p>
<p><strong>Last movie seen:</strong> Puss In Boots 2</p>
<p><strong>Best album ever:</strong> AC/DC’s Back In Black</p>
<p><strong>Playing:</strong> Metallica, on my black Ibanez R90 3 pickup electric guitar</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/getting-a-lead-on-phil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AR Drone flys away!</title>
		<link>http://www.anchor.com.au/blog/2012/05/ar-drone-flys-away/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/ar-drone-flys-away/#comments</comments>
		<pubDate>Thu, 10 May 2012 23:46:49 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[ARdrone]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[prize]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3402</guid>
		<description><![CDATA[A home has been found for our AR Drone, drawn from entries taken at The Internet Show in Melbourne &#8211; congratulations to Ben Crowe from XCOM Media, you&#8217;ll be hearing from us shortly. By which we mean you might hear the buzzing of the drone as it comes to find you&#8230;]]></description>
			<content:encoded><![CDATA[<p>A home has been found for our AR Drone, drawn from entries taken at <a href="http://www.anchor.com.au/blog/2012/05/back-from-the-internet-show-in-melbourne/" title="Back from The Internet Show in Melbourne">The Internet Show in Melbourne</a> &#8211; congratulations to Ben Crowe from XCOM Media, you&#8217;ll be hearing from us shortly.</p>
<p>By which we mean you might hear the buzzing of the drone as it comes to find you&#8230; <img src='http://www.anchor.com.au/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/ar-drone-flys-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sachi King: Our woman in America</title>
		<link>http://www.anchor.com.au/blog/2012/05/sachi-king-our-woman-in-america/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/sachi-king-our-woman-in-america/#comments</comments>
		<pubDate>Thu, 10 May 2012 01:56:26 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[FTW]]></category>
		<category><![CDATA[anchorite]]></category>
		<category><![CDATA[employee]]></category>
		<category><![CDATA[q&a]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3384</guid>
		<description><![CDATA[We took a big step forward recently with the appointment of Sachi King, our first full-time support person based in the US. This follows the recent launch of our Los Angeles point of presence early in the year and growth of the US client base, which includes Testflight and Bang the Table. Our US beachhead [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/sachi.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/sachi.jpg" alt="" title="Sachi King" width="200" height="267" class="alignright size-full wp-image-3394" /></a></p>
<p>We took a big step forward recently with the appointment of Sachi King, our first full-time support person based in the US. This follows the recent launch of our Los Angeles point of presence early in the year and growth of the US client base, which includes Testflight and Bang the Table.</p>
<p>Our US beachhead is growing fast, so Sachi will be on the ground providing Level 2 support during US business hours. Based in Lawrence, Kansas, she&#8217;s an experienced networking and support professional and is an important addition to our team. </p>
<p><strong>What’s your key role at Anchor?</strong></p>
<p>I’m there to keep an eye on the servers overnight Australian time, so we can give better support to our growing base of United States customers. It’s really exciting to be a part of this expansion by Anchor &#8211; I’m helping them go global!</p>
<p><strong>How has the training been?</strong></p>
<p>It’s been great. They flew me over here <em>[Sydney]</em> for a month while I go through the full Anchor training, and there’s certainly a lot to take in. I’m hoping to start taking phone calls soon.</p>
<p><strong>What’s your background?</strong></p>
<p>I’ve been a Linux person since I was like, 14, and so networking and technology has always been a passion of mine. Before Anchor I was working for a company that was a turnkey provider for clusters, and I did everything from assembly of parts, to software set-up and support, to actually putting the servers in the rack and wiring them.</p>
<p>I think it’s been a good grounding for working at Anchor. </p>
<p><strong>What do you do in your spare time?</strong></p>
<p>I’m a bit of a motoring enthusiast. I bought a Honda Civic a few months ago and I’m looking forward to playing with it and doing it up. </p>
<p>I’ve also got a motorcycle, a Kawasaki Ninja 500R, which I really enjoy riding on weekends. It’s a sweet bike!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/sachi-king-our-woman-in-america/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backups for Postgres that don&#8217;t suck</title>
		<link>http://www.anchor.com.au/blog/2012/05/backups-for-postgres-that-dont-suck/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/backups-for-postgres-that-dont-suck/#comments</comments>
		<pubDate>Wed, 09 May 2012 08:32:25 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[FTW]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[postgres]]></category>
		<category><![CDATA[wal]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3309</guid>
		<description><![CDATA[PostgreSQL is awesome in many, many ways. One of these ways is in its use of a write-ahead log, or WAL, that enables: Atomicity Durability Replication (that isn&#8217;t insane, like MySQL&#8217;s) Backups And much much more! &#60;/televisionSalesman&#62; We&#8217;re interested in backups today, because textual dumps for backups (the lowest common denominator for mysql and pgsql) [...]]]></description>
			<content:encoded><![CDATA[<p>PostgreSQL is awesome in many, many ways. One of these ways is in its use of a write-ahead log, or WAL, that enables:</p>
<ul>
<li>Atomicity</li>
<li>Durability</li>
<li>Replication (that isn&#8217;t insane, like MySQL&#8217;s)</li>
<li>Backups</li>
<li>And much much more! &lt;/televisionSalesman&gt;</li>
</ul>
<p>We&#8217;re interested in backups today, because textual dumps for backups (the lowest common denominator for mysql and pgsql) puts a lot of load on the server and tends to be very slow.</p>
<p>We started looking into something like mylvmbackup for postgres, but then discovered that there was no need &#8211; it&#8217;s already built in!</p>
<p>We&#8217;ve made a easy guide to trying it out for yourself. It&#8217;s fairly detailed and hands-on, so we&#8217;ve split things out to a separate page:</p>
<p><a href="http://www.anchor.com.au/blog/documentation/better-postgresql-backups-with-wal-archiving/" title="Better PostgreSQL backups with WAL archiving">Better PostgreSQL backups with WAL archiving</a></p>
<p>If you&#8217;re a Postgres user, we&#8217;d love to know what you think. If you&#8217;re still using MySQL, why not make the switch to greener pastures? <img src='http://www.anchor.com.au/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/backups-for-postgres-that-dont-suck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back from The Internet Show in Melbourne</title>
		<link>http://www.anchor.com.au/blog/2012/05/back-from-the-internet-show-in-melbourne/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/back-from-the-internet-show-in-melbourne/#comments</comments>
		<pubDate>Tue, 08 May 2012 02:27:36 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[talk]]></category>
		<category><![CDATA[the internet show]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3279</guid>
		<description><![CDATA[A quick shout to everyone who dropped by to see us last week, thanks for coming along and saying Hi. The Anchor Squad is now home and returns to work in full force. We hope you all had fun, we certainly did! Look out for a post in the near future for the lucky winner [...]]]></description>
			<content:encoded><![CDATA[<p>A quick shout to everyone who <a href="http://www.anchor.com.au/blog/2012/04/the-internet-show-melbourne-scalability-in-ecommerce/" title="The Internet Show in Melbourne – The importance of scalability in e-commerce">dropped by to see us last week</a>, thanks for coming along and saying Hi. The Anchor Squad is now home and returns to work in full force.</p>
<div id="attachment_3311" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/DSC01084.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/DSC01084.jpg" alt="" title="DSC01084" width="490" height="111" class="size-full wp-image-3311" /></a><p class="wp-caption-text">Keiran presenting his talk on scaling for e-commerce sites</p></div>
<p>We hope you all had fun, we certainly did! Look out for a post in the near future for the lucky winner of our ARdrone quadrotor.</p>
<div id="attachment_3312" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/DSC01047.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/DSC01047.jpg" alt="" title="DSC01047" width="490" height="325" class="size-full wp-image-3312" /></a><p class="wp-caption-text">Minh demonstrating one of the quadrotors</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/back-from-the-internet-show-in-melbourne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcement of PHP security vulnerability (CVE-2012-1823)</title>
		<link>http://www.anchor.com.au/blog/2012/05/announcement-of-php-security-vulnerability-cve-2012-1823/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/announcement-of-php-security-vulnerability-cve-2012-1823/#comments</comments>
		<pubDate>Mon, 07 May 2012 03:19:21 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[WTF]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3272</guid>
		<description><![CDATA[One of our sysadmins picked up the disclosure of this PHP vulnerability last week. It&#8217;s kind of important, so we thought we&#8217;d share it with you. Eindbazen PHP-CGI advisory (CVE-2012-1823) It&#8217;s interesting because a default mod_php installation isn&#8217;t vulnerable, but a fairly common deployment technique using php-cgi is (because it&#8217;s sane and not a gaping [...]]]></description>
			<content:encoded><![CDATA[<p>One of our sysadmins picked up the disclosure of this PHP vulnerability last week. It&#8217;s kind of important, so we thought we&#8217;d share it with you.</p>
<p><a href="http://eindbazen.net/2012/05/php-cgi-advisory-cve-2012-1823/">Eindbazen PHP-CGI advisory (CVE-2012-1823)</a></p>
<p>It&#8217;s interesting because a default mod_php installation isn&#8217;t vulnerable, but a fairly common deployment technique using php-cgi <em>is</em> (because it&#8217;s sane and not a gaping security hole the size of a hallway).</p>
<p>Details are still up in the air. There&#8217;s a couple of official updates for PHP, but it&#8217;s been shown that they <em>do not</em> fix the problem. As a result, people have come up with a few <a href="http://www.php-security.net/archives/11-Mitigation-for-CVE-2012-1823-CVE-2012-2311.html">mitigation techniques</a> that will dodge this bullet until it&#8217;s properly fixed.</p>
<p>To clarify our position, <strong>Anchor uses php-cgi and immediately took steps to mitigate the threat</strong>. We&#8217;ve written about our use of php-cgi in the past, you should <a href="http://www.anchor.com.au/blog/documentation/how-and-why-anchor-runs-php-as-cgi-with-suexec-on-shared-hosting-servers/" title="How and why Anchor runs PHP as CGI with suexec on shared hosting servers">have a read</a> if you&#8217;re interested in the how-and-why.</p>
<p>If you have any questions about your hosting and what this means for you, feel free to drop us a mail at <a href="mailto:support@anchor.net.au">support@anchor.net.au</a>, or call us on 1300-883-979 (+61-2-8296-5111 from outside Australia).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/announcement-of-php-security-vulnerability-cve-2012-1823/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We have an iPad winner!</title>
		<link>http://www.anchor.com.au/blog/2012/05/we-have-an-ipad-winner/</link>
		<comments>http://www.anchor.com.au/blog/2012/05/we-have-an-ipad-winner/#comments</comments>
		<pubDate>Thu, 03 May 2012 08:12:36 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[prize]]></category>
		<category><![CDATA[survey]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3263</guid>
		<description><![CDATA[Congratulations to James, he&#8217;s the winner of our recent customer support feedback survey. Many thanks to everyone who responded. We got some great answers from the feedback, which we&#8217;ll be using to decide how to improve our offerings, and create fantastic new ones.]]></description>
			<content:encoded><![CDATA[<p>Congratulations to James, he&#8217;s the winner of our recent <a href="http://www.anchor.com.au/blog/2012/03/we-want-your-feedback-or-how-to-win-a-shiny-new-ipad/" title="We want your feedback, or “How to win a shiny new iPad”">customer support feedback survey</a>.</p>
<div id="attachment_3273" class="wp-caption aligncenter" style="width: 490px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/DSC01049.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/05/DSC01049.jpg" alt="" title="Our iPad winner" width="480" height="320" class="size-full wp-image-3273" /></a><p class="wp-caption-text">James dropped into our booth at The Internet Show in Melbourne to pick up his prize, it&#039;s always great to meet face-to-face.</p></div>
<p>Many thanks to everyone who responded. We got some great answers from the feedback, which we&#8217;ll be using to decide how to improve our offerings, and create fantastic new ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/05/we-have-an-ipad-winner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We don&#8217;t usually post puns&#8230;</title>
		<link>http://www.anchor.com.au/blog/2012/04/we-dont-usually-post-puns/</link>
		<comments>http://www.anchor.com.au/blog/2012/04/we-dont-usually-post-puns/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 06:43:19 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[WTF]]></category>
		<category><![CDATA[puns]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3249</guid>
		<description><![CDATA[&#8230;but when we do, it&#8217;s like getting smacked in the face by a tsunami. Noone&#8217;s owned up to posting these on the beer fridge. It&#8217;s probably for the best, lest they receive a terrible punishment.]]></description>
			<content:encoded><![CDATA[<p>&#8230;but when we do, it&#8217;s like getting smacked in the face by a tsunami.</p>
<p><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/puns.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/puns.jpg" alt="" title="These Are Tearable Puns" width="300" height="400" class="aligncenter size-full wp-image-3265" /></a></p>
<p>Noone&#8217;s owned up to posting these on the beer fridge. It&#8217;s probably for the best, lest they receive a terrible punishment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/04/we-dont-usually-post-puns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DHL? Shoulda flown itself here instead</title>
		<link>http://www.anchor.com.au/blog/2012/04/dhl-shoulda-flown-itself-here-instead/</link>
		<comments>http://www.anchor.com.au/blog/2012/04/dhl-shoulda-flown-itself-here-instead/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 05:01:40 +0000</pubDate>
		<dc:creator>Barney Desmond</dc:creator>
				<category><![CDATA[FTW]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[prize]]></category>
		<category><![CDATA[quadrotor]]></category>
		<category><![CDATA[the internet show]]></category>
		<category><![CDATA[turns on a dime]]></category>

		<guid isPermaLink="false">http://www.anchor.com.au/blog/?p=3239</guid>
		<description><![CDATA[Ooh, a package from Amazon! That must be the 100 copies of Unix Network Programming that we ordered to give away to underprivileged children. Aww man, it&#8217;s just an AR Drone. This must be the one we&#8217;re giving away at The Internet Show next week. That&#8217;s pretty cool I guess. As a bonus, Amazon also [...]]]></description>
			<content:encoded><![CDATA[<p>Ooh, a package from Amazon! That must be the 100 copies of <a href="http://www.amazon.com/Unix-Network-Programming-Volume1/dp/0131411551">Unix Network Programming</a> that we ordered to give away to underprivileged children.</p>
<div id="attachment_3251" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/amazon_box_unopened.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/amazon_box_unopened.jpg" alt="" title="amazon_box_unopened" width="490" height="653" class="size-full wp-image-3251" /></a><p class="wp-caption-text">It&#039;s huge! We also ordered a few CR2032 batteries, but this box is too small to be them.</p></div>
<hr />
<p>Aww man, it&#8217;s just an AR Drone. <img src='http://www.anchor.com.au/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   This must be the one we&#8217;re <a href="http://www.anchor.com.au/blog/2012/04/the-internet-show-melbourne-scalability-in-ecommerce/" title="The Internet Show in Melbourne – The importance of scalability in e-commerce">giving away at The Internet Show</a> next week.</p>
<div id="attachment_3252" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/ARdrone.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/ARdrone.jpg" alt="" title="ARdrone" width="490" height="325" class="size-full wp-image-3252" /></a><p class="wp-caption-text">Minh tells me this thing can turn on a dime, Macross Zero-style!</p></div>
<hr />
<p>That&#8217;s pretty cool I guess. As a bonus, Amazon also include nine metres of packing paper. Our Windows sysadmins are going to paint it up into a giant <a href="http://nyan.cat/">nyancat</a> and string it around the office.</p>
<div id="attachment_3256" class="wp-caption aligncenter" style="width: 500px"><a href="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/paper.jpg"><img src="http://www.anchor.com.au/blog/wp-content/uploads/2012/04/paper.jpg" alt="" title="paper" width="490" height="719" class="size-full wp-image-3256" /></a><p class="wp-caption-text">Too short to make a good Longcat <img src='http://www.anchor.com.au/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.anchor.com.au/blog/2012/04/dhl-shoulda-flown-itself-here-instead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

