<?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>Adam&#039;s Blog &#187; Web Development</title>
	<atom:link href="http://adam.stylo.name/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://adam.stylo.name</link>
	<description>The contents of my mind at random intervals. Thoughts, ideas, waffle and some rants thrown in for good measure.</description>
	<lastBuildDate>Wed, 05 Oct 2011 15:42:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Bye bye IPv4, bring on IPv6</title>
		<link>http://adam.stylo.name/web/bye-bye-ipv4-bring-on-ipv6/</link>
		<comments>http://adam.stylo.name/web/bye-bye-ipv4-bring-on-ipv6/#comments</comments>
		<pubDate>Thu, 06 May 2010 10:18:13 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[hillarious song]]></category>
		<category><![CDATA[IPv4]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://adam.stylo.name/?p=105</guid>
		<description><![CDATA[I got a Youtube link via email of a brilliant song on IPv6. It is hillarious and had me singing along in no time &#8211; much to the annoyance of a few innocent bystanders http://www.verboon.info/index.php/2009/02/ipv4-vs-ipv6-song/ Listen to this and your inner geek will have a ball!]]></description>
			<content:encoded><![CDATA[<p>I got a Youtube link via email of a brilliant song on IPv6. It is hillarious and had me singing along in no time &#8211; much to the annoyance of a few innocent bystanders <img src='http://adam.stylo.name/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.verboon.info/index.php/2009/02/ipv4-vs-ipv6-song/">http://www.verboon.info/index.php/2009/02/ipv4-vs-ipv6-song/ </a></p>
<p>Listen to this and your inner geek will have a ball!</p>
]]></content:encoded>
			<wfw:commentRss>http://adam.stylo.name/web/bye-bye-ipv4-bring-on-ipv6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8216;var&#8217; statement compulsory in JavaScript on IE</title>
		<link>http://adam.stylo.name/web/var-statement-compulsory-in-javascript-on-ie/</link>
		<comments>http://adam.stylo.name/web/var-statement-compulsory-in-javascript-on-ie/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 23:01:44 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[var statement]]></category>

		<guid isPermaLink="false">http://adam.stylo.name/?p=87</guid>
		<description><![CDATA[In theory you should be able to omit the &#8216;var&#8217; statement when declaring a variable. Most people use it, but it isn&#8217;t required. In IE, however, leaving &#8216;var&#8217; out has a side effect &#8211; if you use the variable name as an element id in your html, you are likely to get some vague errors [...]]]></description>
			<content:encoded><![CDATA[<p>In theory you should be able to omit the &#8216;var&#8217; statement when declaring a variable. Most people use it, but it isn&#8217;t required. </p>
<p>In IE, however, leaving &#8216;var&#8217; out has a side effect &#8211; if you use the variable name as an element id in your html, you are likely to get some vague errors form IE.</p>
<p>I recently spent some time trying to figure out why a very simple bit of test code was not working in IE, but worked fine in other (better?) browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://adam.stylo.name/web/var-statement-compulsory-in-javascript-on-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress automatic upgrade</title>
		<link>http://adam.stylo.name/web/wordpress-automatic-upgrade/</link>
		<comments>http://adam.stylo.name/web/wordpress-automatic-upgrade/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:49:44 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[automatic upgrade]]></category>
		<category><![CDATA[php version]]></category>
		<category><![CDATA[v2.8]]></category>
		<category><![CDATA[v2.8.1]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://adam.stylo.name/?p=64</guid>
		<description><![CDATA[The WordPress automatic upgrade seems to need PHP5. With PHP4 the upgrade hangs up.]]></description>
			<content:encoded><![CDATA[<p>I had trouble with upgrading WordPress from v2.8 to v2.8.1. The automatic updater would get as far as this:</p>
<pre>     Downloading update from <a href="http://wordpress.org/wordpress-2.8.1.zip" target="_blank">http://wordpress.org/wordpress-2.8.1.zip</a>.

     Unpacking the update.</pre>
<p>Then nothing.<span id="more-64"></span></p>
<p>To fix it I had to switch to PHP5. My cheapie 1and1 hosting account that this blog runs on uses PHP4 by default.</p>
<p>If you are running WordPress on a 1and1 shared hosting account, add this to your .htaccess file:</p>
<pre>     AddType x-mapp-php5 .php</pre>
<p>Fixed. Hope it helps anyone who runs into a similar problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://adam.stylo.name/web/wordpress-automatic-upgrade/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Easy tips to boost conversion</title>
		<link>http://adam.stylo.name/web/tips-to-boost-conversion/</link>
		<comments>http://adam.stylo.name/web/tips-to-boost-conversion/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:08:45 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[conversion ratio]]></category>
		<category><![CDATA[drop-off]]></category>

		<guid isPermaLink="false">http://adam.stylo.name/?p=51</guid>
		<description><![CDATA[All the money spent on promoting your site and product can go to waste if customers leave without completing the purchase. Make sure your website is user friendly and doesn't frustrate visitors.]]></description>
			<content:encoded><![CDATA[<p>All the money spent on promoting your site and products can go to waste if customers leave without completing the purchase. Many merchants throw money at advertising campaigns and SEO to attract visitors but don&#8217;t stop to critically evaluate the performance of their website.<br />
<span id="more-51"></span></p>
<p>Promotion is very important but is only one part of a complete strategy to make money as an online merchant. Conversion ratio is the proportion of website visitors that end up becoming paying customers. A typical conversion ratio can be around 1%. Some shops do much better, some do worse. The checkout is the final step in the customer&#8217;s journey through your online store but can account for large share of drop-offs (visitors that leave before paying).</p>
<p>Lets say your conversion is 1%. That means that for every 100 visitors you make one sale. All things being equal, to double your turnover you can do two things:</p>
<ul>
<li>Double the number of visitors</li>
<li>Double your conversion ratio</li>
</ul>
<p>Doubling the number of visitors is hard. It may mean increasing you advertising spend by more than 100%. And you may have to keep up that increased spend up consistently for a number of months before a sustained increase in visitor numbers is seen.</p>
<p>Some simple changes to your site, and in particular the checkout process can permanently boost your conversion ratio by lowering the number of customers that leave frustrated and without buying.</p>
<p>Here is a collection of tips that are easy to implement and can have a lasting impact on your shops performance:</p>
<ul>
<li>Build trust. Be open about your contact information, show off customer testimonials if you have any.</li>
<li>Don&#8217;t hide information. Be upfront about the total price including shipping. Your customers don&#8217;t like to be surprised by a hefty delivery charge after theyspent time navigating through most of the checkout process.</li>
<li>Make it easy to shop. Make the &#8216;Add to Cart&#8217; and &#8216;Checkout&#8217; buttons prominent.</li>
<li>Simplify the checkout process. Don&#8217;t test your customers&#8217; patience by collecting more information that is absolutely necessary. Ideally the checkout should be one or two pages at most.</li>
</ul>
<p>As the checkout pages can be the worst offenders in driving potential customers away, here are a few more tips specifically on that topic:</p>
<ul>
<li>Don&#8217;t force visitors to create an account. Make it an option</li>
<li>Offer assistance with form filling, add an address finder to speed up address capture</li>
<li>Give an option to use billing address for shipping, or make shipping address optional</li>
<li>Give assurance that your checkout pages are secure, display your SSL certificate</li>
<li>Give some thought as to what information must be collected, make everything else optional</li>
</ul>
<p>Hopefully you will find these quick tips useful. Making small tweaks to your website that improve conversion can drastically boost the return on your investment in advertising and promotion.</p>
]]></content:encoded>
			<wfw:commentRss>http://adam.stylo.name/web/tips-to-boost-conversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZenCart or osCommerce?</title>
		<link>http://adam.stylo.name/web/zencart-or-oscommerce/</link>
		<comments>http://adam.stylo.name/web/zencart-or-oscommerce/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:05:46 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[osCommerce]]></category>
		<category><![CDATA[shopping cart]]></category>
		<category><![CDATA[ZenCart]]></category>

		<guid isPermaLink="false">http://adam.stylo.name/?p=14</guid>
		<description><![CDATA[When people asked me how to go about setting up an online shop, my automatic response was always - "use osCommerce". Recently I had some time and browsed around looking for alternatives and I think that ZenCart might just be a better option for some people looking for a completly free shopping cart.]]></description>
			<content:encoded><![CDATA[<p>For a few years now I have been tinckering with online shops. When people asked me how to go about setting up an online shop, my automatic response was always &#8211; &#8220;use <a href="http://www.oscommerce.com" target="_blank">osCommerce</a>&#8220;. Recently I had some time and browsed around looking for alternatives and I think that <a href="http://zen-cart.com/" target="_blank">ZenCart</a> might just be a better option for some people looking for a completly free shopping cart.</p>
<p><span id="more-14"></span></p>
<p>osCommerce is possibly the most established open source cart. It has been around for years and is now a very stable and proven ecommerce platform. There are thousands of freely available <a href="http://addons.oscommerce.com/" target="_blank">contributions</a> to customise it. There is also a very active <a href="http://forums.oscommerce.com/" target="_blank">online community</a> ready and willing to support newbies. The only problem with osCommerce is its outdated software architecture &#8211; display and logic are intermixed and very tghtly coupled. Modifying the look and feel of an osCommerce site can quickly become a major effort. Templates are essentially complete new installations of the cart, so if you have any contributions installed moving to a new template can be a real pain in the proverbial.</p>
<p>There is a completely <a href="http://www.oscommerce.com/about/news,132" target="_blank">new version of osCommerce</a> in the pipeline which promises to be great, but it is currently still in alpha stages. I&#8217;ll keep an eye on it and when I have a bit of time I will experiment with it and maybe write up a bit more.</p>
<p>ZenCart traces its roots back to osCommerce, but is now a very different piece of software. Out the box it has very good support for templating which makes changing the look and feel of your store very easy. The downside of ZenCart is that there are far fewer <a href="http://www.zen-cart.com/index.php?main_page=index&amp;cPath=40" target="_blank">addons</a> available (all addons have to be pre-approved by moderators). For example &#8211; you may be limited in what payment methods you can support without having to do some PHP coding. There is a good <a href="http://www.zen-cart.com/forum" target="_blank">online community</a> where help can be found.</p>
<p>In summary:</p>
<p>I would go for osCommerce if you will design the look of your store upfront and are not likely to want to changed it drastically later. It is the more robust and time proven platform of the two.</p>
<p>I would go for ZenCart if the ability to tweak and update the design of your store is very important to you and you do not have the time/abilty to dive into PHP to do it.</p>
<p>Of course there are more choices for a free shopping cart, and there are a number of fairly low priced solutions too. But I think that for someone thinking of starting up an online shop on a shoe string budget osCommerce or ZenCart are possibly the best options right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://adam.stylo.name/web/zencart-or-oscommerce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

