<?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"
	>

<channel>
	<title>Silkstream Weblog: Website Design, Development and SEO</title>
	<atom:link href="http://www.silkstream.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.silkstream.net/blog</link>
	<description>Sharing experiences within the world of website design and Search Marketing</description>
	<pubDate>Fri, 14 Nov 2008 08:23:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>New Website? Redirect traffic with 301</title>
		<link>http://www.silkstream.net/blog/2008/11/new-website-redirect-old-traffic-with-301.html</link>
		<comments>http://www.silkstream.net/blog/2008/11/new-website-redirect-old-traffic-with-301.html#comments</comments>
		<pubDate>Thu, 13 Nov 2008 18:15:10 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[E-Commerce]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[301 redirects]]></category>

		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=189</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/seo.jpg" width="130" height="115" alt="" title="SEO" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/seo.jpg" width="130" height="115" alt="" title="SEO" /><br/><p>Launching a new website is exciting stuff: a re-designed, re-structured, compliant, search engine friendly website that unleashes a richer user experience upon your existing (and hopefully new) customers. This takes a lot of hard work!<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=New+Website%3F+Redirect+traffic+with+301&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2008%2F11%2Fnew-website-redirect-old-traffic-with-301.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/seo.jpg" width="130" height="115" alt="" title="SEO" /><br/><p>Launching a new website is exciting stuff: a re-designed, re-structured, compliant, search engine friendly website that unleashes a richer user experience upon your existing (and hopefully new) customers. This takes a lot of hard work! But just before you replace the old site with the new one, consider all the old site’s pages that have already been indexed by Google, Yahoo et al. And don’t forget about those all-important in-bound links!</p>
<p>The above consideration is especially important with large dynamic websites, such as e-commerce stores. It may have taken years for search engines to index all your site’s content and by changing the URLs these indexed pages would now become dead links, causing the user to see a 404 error page – not the best sales incentive. It really isn’t that hard to redirect old URLs to new ones.</p>
<p>For example, your old URLs may look like this:</p>
<ul>
<li>www.yoursite.co.uk/shop.php?category_id=10&amp;product_id=20</li>
</ul>
<p>And your new ones like this:</p>
<ul>
<li>www.yoursite.co.uk/sports-equipment/tennis-rackets.html</li>
</ul>
<p>For those who won’t glaze over at the site of some code, here’s a couple of examples using Apache’s mod_rewrite and php:</p>
<p><code><br />
RewriteCond %{QUERY_STRING} category_id=10<br />
RewriteRule ^/?shop\.php$ http://www.yoursite.co.uk/sports-equipment/? [R=301,L]<br />
</code><br />
In the above example (created within an .htaccess file) we are looking for any query strings (anything after shop.php?) that contain the category ID of 10, which in this example is referring to sports equipment. If the condition is met then send a 301 (permanently moved) header and rewrite the new URL to the location: /sports-equipment/. All of your indexed pages within the category will now be redirected to the sports equipment page.</p>
<ul>
<li>www.yoursite.co.uk/shop.php?category_id=10&amp;product_id=20</li>
<li>www.yoursite.co.uk/shop.php?category_id=10&amp;product_id=30</li>
<li>www.yoursite.co.uk/shop.php?category_id=10&amp;product_id=40</li>
</ul>
<p>The problem with the above example is that it will only take the user to the main category page and not the actual product page – it’s really just a “catch all” method. Furthermore, you might end up with writing hundreds of lines of code, depending on how may categories are within your online store. However, in many cases it’s often best to try and capture and redirect each individual indexed page to the equivalent page, within the new site. One way of doing this is illustrated in the example below.</p>
<p><code>RewriteRule ^shop.php /redirect.php [QSA]</code></p>
<p>In this example (also written within an .htaccess file) we are looking for any page that begins with shop.php and passing the query string (using Apache’s QSA flag) to the redirect.php page (shown below).</p>
<p><code><br />
$product_id = (int) (isset($_GET['product_id'])) ? $_GET['product_id'] : 0;<br />
$query = “SELECT product_name,category<br />
FROM products<br />
INNER JOIN categories<br />
ON products.category_id = categories.category_id<br />
WHERE product_id = &#8216;$product_id&#8217; LIMIT 1”;<br />
$row = mysql_fetch_array($this-&gt;db-&gt;getquery($query));<br />
$new_url = “&#8217;Location: http://www.yoursite.co.uk/”.$row[‘category’].”/”.$row[‘product_name’].”.html’&#8221;;<br />
header(&#8217;HTTP/1.1 301 Moved Permanently&#8217;);<br />
header($new_url);<br />
exit;<br />
</code></p>
<p>In the above example we have a php page which retrieves the unique product id and performs a query to lookup the related category and product name. This is then used to build the new URL path and send a 301 redirect. This is just a basic example and can be elaborated upon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2008/11/new-website-redirect-old-traffic-with-301.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tackling Information Governance</title>
		<link>http://www.silkstream.net/blog/2008/10/tackling-information-governance.html</link>
		<comments>http://www.silkstream.net/blog/2008/10/tackling-information-governance.html#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:34:06 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[Information Systems]]></category>

		<category><![CDATA[Website design]]></category>

		<category><![CDATA[data storage]]></category>

		<category><![CDATA[information management]]></category>

		<category><![CDATA[management information systems]]></category>

		<category><![CDATA[mis]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=176</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/cat_design.jpg" width="130" height="115" alt="" title="Website design" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/cat_design.jpg" width="130" height="115" alt="" title="Website design" /><br/><p><strong>Too many companies have ignored this problem for too long</strong></p>
<p>Accurate, reliable and up-to-date management information is the lifeblood of any successful business, yet most companies do a poor job of making sure the flow of critical data doesn’t dry up.</p>
<p>The IT department might keep on top of the core information systems, making sure they stay up and running, but companies often fail to manage these systems within a wider structure of information governance.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Tackling+Information+Governance&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2008%2F10%2Ftackling-information-governance.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/cat_design.jpg" width="130" height="115" alt="" title="Website design" /><br/><p><strong>Too many companies have ignored this problem for too long</strong></p>
<p>Accurate, reliable and up-to-date management information is the lifeblood of any successful business, yet most companies do a poor job of making sure the flow of critical data doesn’t dry up.</p>
<p>The IT department might keep on top of the core information systems, making sure they stay up and running, but companies often fail to manage these systems within a wider structure of information governance. Usually, that’s because they don’t think the issue is important.</p>
<p>This is a big mistake, and a symptom of the fact that too few businesses give their IT director a seat on the main board. Without a top-table voice, IT becomes a back-office issue, not the strategic concern that it should be.</p>
<p>A recent survey by the Economist Intelligence Unit shows the extent to which companies, globally, lack information governance strategies. Only sixty-two percent of the companies in its study had a formal governance strategy in place; fewer than half felt that information governance was important to their company’s success today.</p>
<p>This is a complacent and high-risk approach. People are less likely to make the right business decisions if they are using potentially unreliable data. And in the current climate regulators and investors will be tough on companies that release data that turns out to be wrong.</p>
<p>The majority of the respondents in the EIU study realised that their lack of a proper governance strategy would soon become untenable; getting governance right would be very important to their company’s success over the next three years, they said.</p>
<p>They were looking to adopt policies on issues such as information storage and sharing and how information is distributed inside and outside the company (not surprising given the series of recent scandals over the lack of security around personal information).</p>
<p>This is progress, but companies need to get a move on. Information governance issues will only become more complex in future.</p>
<p>Obstacles in the way to better governance include the difficulty of identifying information risks and the cost of managing them, a lack of support from company management, and the difficulty of enforcing policies over multiple locations, said respondents in the EIU survey. True, information governance is not easy, but too many companies have ignored the challenge for too long.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2008/10/tackling-information-governance.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>15 simple and effective email marketing tips</title>
		<link>http://www.silkstream.net/blog/2008/08/15-simple-and-effective-email-marketing-tips.html</link>
		<comments>http://www.silkstream.net/blog/2008/08/15-simple-and-effective-email-marketing-tips.html#comments</comments>
		<pubDate>Sun, 24 Aug 2008 10:28:19 +0000</pubDate>
		<dc:creator>Brooke</dc:creator>
		
		<category><![CDATA[E-marketing]]></category>

		<category><![CDATA[email]]></category>

		<category><![CDATA[Online marketing]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=145</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/email.jpg" width="130" height="115" alt="" title="E-marketing" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/email.jpg" width="130" height="115" alt="" title="E-marketing" /><br/><p><strong>1.</strong> <strong>Avoiding the Spam Filters</strong></p>
<p>The majority of large Internet service providers now use rigerous spam protection mechanisms to trap unsolicited email before it gets into their customer&#8217;s inboxes.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=15+simple+and+effective+email+marketing+tips&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2008%2F08%2F15-simple-and-effective-email-marketing-tips.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/email.jpg" width="130" height="115" alt="" title="E-marketing" /><br/><p><strong>1.</strong> <strong>Avoiding the Spam Filters</strong></p>
<p>The majority of large Internet service providers now use rigerous spam protection mechanisms to trap unsolicited email before it gets into their customer&#8217;s inboxes. Spam filters generally &#8220;rank&#8221; each email by a number of different criteria, and, if that email rates above a certain level (such as 10 spam points), then it is flagged as spam and deleted.</p>
<p>To make sure your emails don&#8217;t get flagged as spam - and deleted before they even get to your subscribers - avoid using words such as &#8216;Free&#8217;, &#8216;£££&#8217;, &#8216;Save&#8217;, &#8216;Discount&#8217;, etc., in both the subject line and the content of your email.</p>
<p><strong>2. Maximising Click-Thru Rates</strong></p>
<p>Both web pages and emails can contain a lot of text and graphics, and this sometimes makes it harder to get your subscribers to perform a certain task, such as clicking on a link to see your special offers.</p>
<p>Numerous research papers tell us that the majority of Internet users respond better to a plain, bold, blue text link - <strong><span style="color: blue;">such as this</span></strong> - as opposed to a banner or button. So, if you&#8217;re going to include links in your emails, make sure they are bold, blue and underlined. This will mean that more subscribers click through, meaning more conversions/sales for you.</p>
<p><strong>3. The Power of Personalisation</strong></p>
<p>If you were standing in a crowded street, which of these would get your attention: &#8220;Hi, YOU!&#8221; or &#8220;Hi JOHN&#8221; (assuming your name is John). The power of personalisation can and should be used in your emails. In fact, by simply starting your email with &#8220;Hi [subscriber_name]&#8221; instead of the boring &#8220;Hi there&#8221;, you can increase both your reading and click-thru rates by up to 650%. Why? Put simply, it&#8217;s because your subscribers feel like they already have a relationship with you as you&#8217;ve addressed them by their first name.</p>
<p><strong>4. One-Click Unsubscription</strong></p>
<p>If you want to grow your mailing list, then there&#8217;s 2 things that you absolutely must have: a double opt-in process, and a quick way to unsubscribe. In some countries, it&#8217;s actually mandatory by law that every email has an unsubscribe link in it. The unsubscribe link should take the recipient directly to a page where they are then removed - courteously - from your mailing list.</p>
<p><strong>5. Signup Confirmation</strong></p>
<p>Don&#8217;t get accused of spamming - always, and I mean always use a double opt-in confirmation process. Double opt-in means that after your visitor initially enters their email address to subscribe to your list, you should then send them a &#8220;confirmation&#8221; email. This email should contain a special link back to your email marketing program, which will then verify that this visitor did indeed sign up to your mailing list.</p>
<p><strong>6. Tuesday / Wednesday = Increased Response</strong></p>
<p>Studies conducted by online research analysts have shown that the best days to perform a mail-out to your list are Tuesday and Wednesday, as this is when people are more receptive to communication. This means that they are more likely to read your content and click on links, meaning more sales.</p>
<p>On Mondays, everyone is still recovering from a hectic weekend. On Thursday and Friday, people are already too busy looking forward to the weekend. We&#8217;ve actually experimented with this, and received the best results by sending out emails at around 2-3pm (GMT) on a Wednesday.</p>
<p><strong>7. Repeat Email Communication</strong></p>
<p>An autoresponder is an email that is scheduled to be sent at a certain time interval after someone subscribes to your mailing list. Autoresponders are a great way to automatically follow up with your subscribers or provide them with more information on your products/services.</p>
<p>For example, if you provide a free newsletter, you could setup 3 autoresponders for new subscribers: the first is sent 1 hour after they subscribe. It contains a thank you message and a link to get 10% off your newly released eBook.</p>
<p>The second is sent 24 hours after they subscribe, telling them about your community message boards, and the third is sent 72 hours after they subscribe, in which you can offer them a special deal on becomming a paid member of your site.</p>
<p>Autoresponders help your subscribers build trust in both your company and your brand, and this can help make it easier when trying to close sales in the future.</p>
<p><strong>8. Consistency is the Key</strong></p>
<p>If you&#8217;re running a newsletter or frequent email publication, make sure you keep the look and feel consistent from issue to issue. By keeping the look and feel consistent, you help to maintain and strengthen your brand and your image to your subscribers, which again will make it easier to close sales when you need to.</p>
<p>vCreate a template for your newsletter and whenever you need to create a new issue, use that template as the basis for each issue.</p>
<p><strong>9. On Time, Every Time</strong></p>
<p>When sending an email to your subscribers, always make sure that it&#8217;s sent on the same day, at the same time. For example, every Wednesday at 3pm. Your subscribers will come to &#8220;expect&#8221; your email to arrive in their inbox on the same day at the same time every week, meaning that they want to read your content and are generally more receptive to any special offers or promotions you may include.</p>
<p><strong>10. The Half-a-Second Subject Line</strong></p>
<p>When your email arrives in your subscribers inbox, you generally have about half a second to catch their attention with the subject line of your email. After this, they will either delete your email or ignore it. In your subject line, try and specify a benefit that the subscriber can expect by reading your email. For example, instead of using &#8216;OurSite Newsletter Issue #1&#8242;, use &#8216;OurSite Newsletter: 10 Tips for Financial Freedom&#8217;.</p>
<p><strong>11. The Free Bonus Hook-In</strong></p>
<p>Free is overused these days, especially on the Internet. However, if you&#8217;re looking to grow your subscriber list, then create or source a product of value to your visitors (such as an eBook or discount coupon) and offer it to them for free when they signup to receive your newsletter.</p>
<p>To make sure they don&#8217;t simply type any email address into your subscription form, setup an autoresponder to send them the free bonus 1 hour after they subscribe.</p>
<p><strong>12. The Preview Pane</strong></p>
<p>Popular email clients such as MS Outlook show a preview of an email when it&#8217;s selected in your inbox. Always have some interesting content at the very top of your email, as this is the part that will show in the preview window of your subscribers email program. If it&#8217;s interesting enough, then your subscriber will open your email and continue on reading.</p>
<p><strong>13. Link-Click Testing</strong></p>
<p>When creating marketing emails, try using different text for both content and links. Also try re-positioning images such as logos and buttons. After sending about 3 different emails, compare the click-thru stats and see which one worked best. Now, when you need to send marketing emails in the future, you know that you will be sending the right mix of content and images that will attract the most click-thrus, and ultimately the most sales.</p>
<p><strong>14. Email-Based Learning</strong></p>
<p>Add value to your website, build trust in your visitors, establish your credibility and collect more subscriptions to your mailing list by setting up an email-based learning course. To do this, simply create a series of autoresponders (for example, 5) containing unique content. Then, schedule the first one to be sent after 24 hours, the second after 48 hours, etc.</p>
<p><strong>15. Always Sign on the Dotted Line</strong></p>
<p>Always include a signature at the bottom of your emails, as it&#8217;s one of the easiest ways to attract more traffic to your website. This signature should include your personal details, your company details, and an unsubscribe link. You can use your signature to link back to your website, and even to other products.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2008/08/15-simple-and-effective-email-marketing-tips.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>SEO: Striving for traffic may compromise usability?</title>
		<link>http://www.silkstream.net/blog/2008/08/seo-striving-for-traffic-may-compromise-usability.html</link>
		<comments>http://www.silkstream.net/blog/2008/08/seo-striving-for-traffic-may-compromise-usability.html#comments</comments>
		<pubDate>Thu, 14 Aug 2008 10:57:32 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<category><![CDATA[E-Commerce]]></category>

		<category><![CDATA[website usability]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=5</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/seo.jpg" width="130" height="115" alt="" title="SEO" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/seo.jpg" width="130" height="115" alt="" title="SEO" /><br/><p>I recently had the pleasure of collaborating with one of the World&#8217;s leading search marketing agencies. Our role was to re-design and develop one of our existing clients websites (a printing company selling business cards, leaflets, stationery etc.) and the agency&#8217;s role to was provide the SEO (search engine optimisation).<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=SEO%3A+Striving+for+traffic+may+compromise+usability%3F&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2008%2F08%2Fseo-striving-for-traffic-may-compromise-usability.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/seo.jpg" width="130" height="115" alt="" title="SEO" /><br/><p>I recently had the pleasure of collaborating with one of the World&#8217;s leading search marketing agencies. Our role was to re-design and develop one of our existing clients websites (a printing company selling business cards, leaflets, stationery etc.) and the agency&#8217;s role to was provide the SEO (search engine optimisation). I have chosen not to reveal the identity of the SEO company (for professional reasons) but shall refer to them throughout the rest of this post simply as &#8220;the SEO experts&#8221;.</p>
<p>I must admit, I was quite exited with the prospect of working with the SEO experts; they&#8217;re at the top of their game, have a very impressive client list and we would gain great insight into their SEO strategy and implementation process, both on-site and off-site.</p>
<p><strong>Some Background Info<br />
</strong></p>
<p>We first designed and built our client&#8217;s website over two years ago and, at the time, we didn&#8217;t place too much emphasis on SEO - back then we knew a lot less about SEO and it wasn&#8217;t such a hot topic! Having said that, since the site launched in July 2006, our client&#8217;s company went from strength to strength; winning multiple awards and increasing their turnover four-fold, to around four million (GBP) per year.</p>
<p>I believe that a large part of the old site&#8217;s success was due to the ease of use; simple navigation, clearly defined products and a straightforward, no-fuss, checkout process. However, in order to constantly entice large volumes of traffic to the site, our client was spending a jaw-dropping amount on their Google AdWord campaigns. As competition increased, so did their &#8220;pay per click&#8221; (PPC) charges and now our client is seeking to reduce some of their AdWord budget and boost site traffic with a good organic ranking. It makes perfect sense. And I&#8217;m sure that many businesses will be able to relate to this problem.</p>
<p><strong>The New Website Structure<br />
</strong></p>
<p>So after all of the above, obviously one of the main objectives for the new website was to be search engine friendly. The other main objective was <strong>not</strong> to dramatically move away from the current site&#8217;s ordering process, but rather make subtle improvements. From a usability standpoint, the site had been tried and tested and had a proven track record - not only from the multitude of orders the site had received, but we had accumulated just under <strong>10,000 individual feedback responses</strong> from the site and were given some great ideas on how to improve the site, from a customer&#8217;s perspective.</p>
<p>After conducting their keyword and competitor analysis the SEO experts drew up their site-plan, which was sent to us for implementation. The main structure consisted of:</p>
<ol>
<li>a new site navigation structure, including hierarchal product organisation (e.g. Home &gt; Business Cards &gt; Matt Laminated Business Cards);</li>
<li>segmentation of the existing, non product related, navigation (e.g. about us, terms and conditions, FAQs);</li>
<li>a new naming convention consisting of new URLs, page names and navigation anchor text; and</li>
<li>new product blurb (keyword-rich), including an HTML tagging structure (e.g. &lt;h1&gt;Product Title&lt;/h1&gt;&lt;p&gt;product &lt;strong&gt;keywords&lt;/strong&gt; go here&lt;/p&gt;)</li>
</ol>
<p>All in all, very concise.</p>
<p>However, something troubled me with the new site structure. On closer inspection, the new product page titles were very keyword-rich, to the point where it wasn&#8217;t representative of the product they were describing. Furthermore, there were now more products available to choose from, within the product menu. For example, the old website had 1 type of printed Leaflet, accessible directly from the product menu:</p>
<ul>
<li>Leaflets</li>
<li>Folders</li>
<li>Banners</li>
</ul>
<p>The new site had expanded the Leaflet menu to 3 types, underneath the Leaflet&#8217;s landing page:</p>
<ul>
<li>Leaflets
<ul>
<li>Folded Leaflets</li>
<li>Double sided Leaflets</li>
<li>Single Sided Leaflets</li>
</ul>
</li>
<li>Folders</li>
<li>Banners</li>
</ul>
<p>I can see why the SEO experts have done this; Increasing page volume and copy, including high-traffic key words/phrases within the anchor text etc. etc. However, on the old website the user could compare the Leaflet prices at a glance:</p>
<div id="attachment_48" class="wp-caption alignnone" style="width: 410px"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/prices_example.jpg" rel="lightbox[5]"><img class="size-full wp-image-48" title="leaflet price example" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/prices_example.jpg" alt="old site example" width="400" height="282" /></a><p class="wp-caption-text">The old website&#39;s Leaflet page - prices change dynamically (using Ajax) when an option is selected.</p></div>
<p>To view the same information on the new site the user would choose &#8220;Leaflets&#8221;, from the menu, and then select &#8220;single-sided leaflets&#8221;. To then view &#8220;double-sided leaflets&#8221; the user would need to navigate away from that page and onto the double sided leaflet&#8217;s page. From my experience, this decreases usability and increases complexity - not something an ecommerce site, or any other website should appear.</p>
<p>What raised my concerns even higher, were each Leaflet&#8217;s new page title:</p>
<ul>
<li>Leaflet Printers</li>
<li>Leaflet Design</li>
<li>Cheap Leaflet Printing</li>
</ul>
<p>Once again, I understood the rationale behind this, but will the product description affect the user&#8217;s confidence when choosing to buy a product? Say you were looking to buy &#8220;1,000 folded leaflets&#8221;, if the product is being described as <strong>&#8220;Leaflet Design&#8221; </strong>wouldn&#8217;t this<strong> </strong>cause confusion? What about when the product is described as <strong>&#8220;Cheap Leaflet Printing&#8221;</strong> when the leaflets are actually high quality?  In fact our client wouldn&#8217;t want to describe their products as anything less.</p>
<p>My point is that the old site worked. So would it be necessary to increase the site&#8217;s traffic to change the way in which the user selects, views and buys products? I believed there was a compromise to be found. In my view, an understanding of our client&#8217;s product range and how customers like to choose those products didn&#8217;t appear to have been considered by the SEO experts.</p>
<p>Another point that raised my concern was the SEO expert&#8217;s decision to split part of the old site menu and place it further down the page, quite out of view from the user. We were told that these links were to receive the &#8220;no follow&#8221; attribute, in order the divert PageRank and increase the quality of the page. Some of these menu items were:</p>
<ul>
<li>FAQs</li>
<li>Terms &amp; Conditions</li>
<li>Delivery Information</li>
</ul>
<p>From our own user-interaction analysis, taken from a number of ecommerce websites, we have found that to increase conversion rates, the potential customer must be able to easily find key information in order assure themselves of any uncertainties prior to the sale. Browsing FAQs, T&amp;Cs, returns policy and delivery information are absolutely essential to bolster confidence about both the product and the merchant&#8217;s service.</p>
<p>We were overruled! After all, they are the SEO experts! I guess the proof will be in the eating of the pudding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2008/08/seo-striving-for-traffic-may-compromise-usability.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Top 10 tips for selling on-line</title>
		<link>http://www.silkstream.net/blog/2008/08/top-10-tips-for-selling-on-line.html</link>
		<comments>http://www.silkstream.net/blog/2008/08/top-10-tips-for-selling-on-line.html#comments</comments>
		<pubDate>Thu, 14 Aug 2008 07:59:30 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[E-Commerce]]></category>

		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=65</guid>
		<description><![CDATA[<br/><br/><p><strong>1. Know the law</strong><br />
If you are selling online there&#8217;s an abundance of legislation that you should be familiar with to ensure that personal data is kept secure, goods and services meet quality and suitability standards, and online contracts are legally binding. See <a title="External Link to business Link" href="http://www.businesslink.gov.uk" target="_blank">www.businesslink.gov.uk</a> for some basic advice.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Top+10+tips+for+selling+on-line&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2008%2F08%2Ftop-10-tips-for-selling-on-line.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<br/><p><strong>1. Know the law</strong><br />
If you are selling online there&#8217;s an abundance of legislation that you should be familiar with to ensure that personal data is kept secure, goods and services meet quality and suitability standards, and online contracts are legally binding. See <a title="External Link to business Link" href="http://www.businesslink.gov.uk" target="_blank">www.businesslink.gov.uk</a> for some basic advice. If you need any advice with e-commerce legislation, please feel free to contact us or take a peek at our <a title="Link to Silkstream Forums" href="http://www.silkstream.net/forums/" target="_self">forums</a> for question and answers.</p>
<p><strong> 2. Let people browse and BUY without having to register</strong><br />
Don’t force people into registering their details on your site prior to buying products; you will collect their details naturally at checkout. Collecting this information is beneficial as it enables you to be proactive with your customers. You can also give your customers friendly recognition without being too forward.</p>
<p><strong> 3. List your prices clearly</strong><br />
Be up-front about any charges, as unhappy surprises at checkout can be off putting. Clearly state whether prices are inclusive or exclusive of VAT and whether the price includes delivery.</p>
<p><strong>4. Use good clear images and concise product descriptions</strong><br />
A clear image of the product encourages buyers - everyone likes to see what they’re buying! Your site is probably not the only one a potential customer has looked at before making their final decision, so a concise description may swing the sale.</p>
<p><strong> 5. Have a ‘best selling’ or ‘most popular’ listing</strong><br />
This often boosts sales and is similar to putting products near a checkout area of a shop. It also provides you with an opportunity to tell your customers about other products you offer.</p>
<p><strong> 6. Keep it simple</strong><br />
Make sure adding items to a basket and checking out is obvious and simple, if not people will just drop the basket and run!</p>
<p><strong> 7. Keep your site up to date</strong><br />
If a product is out of stock, mark it as ‘temporarily out of stock’ and give customers the option to receive notification when it is back in stock.</p>
<p><strong>8. Search Marketing</strong><br />
If your not promoting your website and it can&#8217;t be found within search engines, customers will not be able to find you, let alone buy from you! Contact Silkstream for search marketing advice.</p>
<p><strong> 9. Confirm and Thank</strong><br />
After-sale service is what can make a good service into an excellent one. A simple call or email a short period after the sale will enlighten the customer experience. Furthermore customers are entitled to written confirmation under the Distance Selling Regulations 2000 (www.businesslink.gov.uk). You can combine <a title="Link to our ecommerce shopping cart software" href="http://www.silkstream.net/ecommerce-products/ecommerce-shopping-cart.html" target="_self">SEL</a> (our off-the-shelf e-commerce package) with <a title="Link to our email marketing software" href="http://www.silkstream.net/ecommerce-products/email-marketing-software.html" target="_self">SEND</a> (our email marketing product) allowing you to create auto-responders, newsletters or monthly promotions to loyal customers.</p>
<p><strong> 10. Communication is key</strong><br />
A common pitfall when trading online is miscommunication or lack of communication. Be clear about your policies (e.g. delivery and return promises) and always maintain good contact with your customers. As in point 9 SEND can be a simple and effective tool for communicating with both new and existing customers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2008/08/top-10-tips-for-selling-on-line.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ethernet</title>
		<link>http://www.silkstream.net/blog/2006/08/ethernet.html</link>
		<comments>http://www.silkstream.net/blog/2006/08/ethernet.html#comments</comments>
		<pubDate>Tue, 15 Aug 2006 07:56:13 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[Tech Terms]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=128</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>Ethernet is a technology that specifies how data is transferred from one computer or device to another. It was developed in the late &#8217;70s by Xerox Park Laboratories, USA and has been specified in the Institute of Electrical and Electronic Engineers (IEEE) 802.3 LAN Standards Model.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Ethernet&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2006%2F08%2Fethernet.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>Ethernet is a technology that specifies how data is transferred from one computer or device to another. It was developed in the late &#8217;70s by Xerox Park Laboratories, USA and has been specified in the Institute of Electrical and Electronic Engineers (IEEE) 802.3 LAN Standards Model. <div id="attachment_86" class="wp-caption alignright" style="width: 310px"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/ethernet.gif" rel="lightbox[128]"><img class="size-full wp-image-86" title="ethernet" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/ethernet.gif" alt="Example Bus Topology" width="300" height="130" /></a><p class="wp-caption-text">Example Bus Topology</p></div></p>
<p>Ethernet cards or network interface cards are commonly supplied with all newly manufactured PC&#8217;s and are the interface between the computer and the transmission medium or cable.</p>
<p>The Ethernet card controls the data being transmitted and received from the computer, Some of its many functions include fragmenting the data into manageable chunks called frames, to prepare it for transmission and to reassemble the received frames upon arrival. The card holds a unique address so that computers can locate each other on the network. Data carried on an Ethernet network conforms to a protocol called Carrier Sense Multiple Access with Collision Detection (CSMA/CD).</p>
<p>Older Ethernet networks would conform to a standard known as 10 Base 5 - which consisted of a half inch 50 -ohm coaxial cable sometimes referred to as &#8216;thick&#8217; Ethernet. The 10 indicated the 10Mbps data transfer rate, Base refers to the Baseband transmission mode and 2 indicates a 185 (rounded to 200) metre recommended bus segment length or cable run.</p>
<p>It was possible to add additional length to an Ethernet bus, simply by adding a device called a repeater, which amplifies the signal, allowing the it to reach greater distances and prevent attenuation or weakening. Also, separate networks could be linked together by connecting a device called a Bridge. A Bridge would hold a small database of computers and their corresponding addresses, which after examination of the frame would determine whether or not the data is transmitted onto the linked network or stay on the source network.</p>
<p>There were many problems with this older style network configuration, mainly because each computer on the network had to contend with every other computer to send its data, as a result many collisions would occur and the network would become extremely slow.</p>
<p>Today, most Ethernet installations conform to a standard known as 100/1000 Base T. The numbers refer to the maximum data transfer rate - 100 Mbps or 1000Mbps (1 Gbps). The Base is the Baseband signal and T refers to the Twisted pair medium or wire that carries the data.</p>
<div id="attachment_85" class="wp-caption alignright" style="width: 310px"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/ethernet2.gif" rel="lightbox[128]"><img class="size-full wp-image-85" title="ethernet2" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/ethernet2.gif" alt="Example Star Topology" width="300" height="130" /></a><p class="wp-caption-text">Example Star Topology</p></div>
<p>When using twisted pair cabling, a star topology is commonly used. Instead of each computer having to contend with other devices to send its signal, each computer can have a direct connection with a device called a switch (smaller networks may use a hub) which creates a virtual circuit with the destination device.</p>
<p>In the above configuration each each computer can potentially achieve its maximum data rate of 100 or 1000 Mbps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2006/08/ethernet.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Current</title>
		<link>http://www.silkstream.net/blog/2006/08/current.html</link>
		<comments>http://www.silkstream.net/blog/2006/08/current.html#comments</comments>
		<pubDate>Tue, 15 Aug 2006 07:55:13 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[Tech Terms]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=124</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>Current is the flow of electrons forced into motion by voltage (electrical pressure).<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Current&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2006%2F08%2Fcurrent.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>Current is the flow of electrons forced into motion by voltage (electrical pressure). Current can                  only flow in closed loops or circuits, which are usually made from materials that are good conductors                  such as copper (Cu).</p>
<p>As discussed in the electrons &#8216;tech terms&#8217;, the electromagnetic force dictates that all like charges repel and all opposite charges attract. Following this law, when voltage is applied to a conductor and there is a path for the current, electrons will move from the negative terminal (which repels them) to the positive terminal (which attracts them).</p>
<dl id="attachment_125" class="wp-caption alignright" style="width: 140px;">
<dt class="wp-caption-dt"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/current.gif" rel="lightbox[124]"><img class="size-full wp-image-125" title="current" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/current.gif" alt="Current - the flow of electrons" width="130" height="130" /></a></dt>
</dl>
<p>Each electron moves only a relatively short distance to its neighbouring atoms&#8217; orbit. But the movement occurs at near on the speed of light (300,000,000 metres per second), the process of the flowing electrons acts like a shunting effect.</p>
<p>Current can flow in different ways, Alternating current (AC) and voltages vary with time. By changing the polarity of the negative and positive terminals, so the negative becomes the positive and                  the positive becomes the negative, the current will flow one way and then reverse its flow to the opposite direction. The process is repeated at timed intervals.</p>
<p>Direct current (DC) always flows in the same direction and DC voltages always have the same polarity.</p>
<p>The amount of current in a circuit is measured in amperes (amps). An ampere is the amount of electrons that move past a certain point in the circuit every second.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2006/08/current.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Electrons</title>
		<link>http://www.silkstream.net/blog/2006/08/electrons.html</link>
		<comments>http://www.silkstream.net/blog/2006/08/electrons.html#comments</comments>
		<pubDate>Tue, 15 Aug 2006 07:22:54 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[Tech Terms]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=100</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>To understand how computers store, perform arithmetic, and display the data on this page, you must have a basic understanding of the principles of Electron theory and Atoms.</p>
<p>All matter is comprised of molecules, which in turn are comprised of atoms.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Electrons&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2006%2F08%2Felectrons.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>To understand how computers store, perform arithmetic, and display the data on this page, you must have a basic understanding of the principles of Electron theory and Atoms.</p>
<p>All matter is comprised of molecules, which in turn are comprised of atoms. Some ancient Greeks believed that atoms were indivisible, hence the name &#8216;atom&#8217; (Greek for &#8216;indivisible&#8217;). We now know that atoms are not indivisible. They are made up of a number of electrons orbiting a central nucleus made up of protons and neutrons.</p>
<p>Protons and electrons are electrical particles, protons are said to be positively charged and electrons negatively charged. They are both surrounded by an electrical force called the electromagnetic force.</p>
<div id="attachment_104" class="wp-caption alignleft" style="width: 140px"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/electrons1.gif" rel="lightbox[100]"><img class="size-medium wp-image-104" title="electrons1" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/electrons1.gif" alt="Electrons" width="130" height="130" /></a><p class="wp-caption-text">Electrons</p></div>
<p>The force between two positive charges is repulsive, as is the force between two negative charges, but the force is attractive between a positive and a negative charge. This force keeps an electron in its orbit around the nucleus.</p>
<p>What has all this got to do with computers? Well I will try and explain the importance of electrons in modern technology.</p>
<p>Of the one hundred or so various atoms or elements, each has its own quantity of protons, neutrons and electrons. Some atoms have large amounts of electrons that orbit the nucleus in different layers. The various layers can hold only a maximum amount of electrons, for example, the inner most layer will only ever have a maximum of two electrons, the next layer can accommodate eight and a third layer is complete when eighteen electrons are whizzing around.</p>
<p>The ten inner most electrons are known as core electrons and the outermost are called valence electrons. These valence electrons are loosely bound to their parent nucleus and can be easily dislodged, allowing them to become &#8216;free&#8217; electrons.</p>
<div id="attachment_102" class="wp-caption alignright" style="width: 140px"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/electrons2.gif" rel="lightbox[100]"><img class="size-full wp-image-102" title="electrons2" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/electrons2.gif" alt="Silicon Atom" width="130" height="130" /></a><p class="wp-caption-text">Silicon Atom</p></div>
<p>When atoms are bound together in elements such as silver (Ag) or gold (Au), the &#8216;free&#8217; electrons can move from one atoms orbit into another. This movement of electrons causes a flow of electrically charged particles known as current or electricity.</p>
<p>Some elements consist of atoms that do not contain many &#8216;loose&#8217; electrons and are not considered good conductors of electricity. Other elements such as copper (Cu) have a large amount of &#8216;loose&#8217; electrons and as such are used in electrical wiring to carry the electric current.</p>
<p>The discovery of electric current gave way to the birth of electronics and modern technology as we know it. Devices such as computers rely on electric current to flow through circuits from one place to another and store the charge in various combinations that represent data.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2006/08/electrons.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Circuits</title>
		<link>http://www.silkstream.net/blog/2006/08/circuits.html</link>
		<comments>http://www.silkstream.net/blog/2006/08/circuits.html#comments</comments>
		<pubDate>Tue, 15 Aug 2006 07:21:17 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[Tech Terms]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=97</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>Electrons can flow only when a circuit is complete. The diagram below displays a simple circuit (similar to how an electric torch would work). The chemical process within the battery causes a charge                  to be separated which provides a voltage, or electrical pressure, enabling electrons to flow.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Circuits&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2006%2F08%2Fcircuits.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>Electrons can flow only when a circuit is complete. The diagram below displays a simple circuit (similar to how an electric torch would work). The chemical process within the battery causes a charge                  to be separated which provides a voltage, or electrical pressure, enabling electrons to flow. The negatively charged electrons are attracted to the positive charge in the battery. This provokes the electrons into traversing the copper wire, through the switch, through the bulbs filament and towards the positive charge which will complete the circuit.</p>
<div id="attachment_98" class="wp-caption alignnone" style="width: 310px"><a href="http://www.silkstream.net/blog/wp-content/uploads/2008/08/circuit.gif" rel="lightbox[97]"><img class="size-full wp-image-98" title="circuit" src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/circuit.gif" alt="Example Circuit" width="300" height="130" /></a><p class="wp-caption-text">Example Circuit</p></div>
<p>The circuits within computer chips use the same concepts as this very simple circuit. Although one main difference is that computers use electrical switches as opposed to a manual or mechanical switches (as seen in the above diagram). The development of the electrical switch, or transistor, led to the mass development of integrated circuits found in today&#8217;s microprocessors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2006/08/circuits.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Redundant Array of Independent Disks (RAID)</title>
		<link>http://www.silkstream.net/blog/2006/08/redundant-array-of-independent-disks-raid.html</link>
		<comments>http://www.silkstream.net/blog/2006/08/redundant-array-of-independent-disks-raid.html#comments</comments>
		<pubDate>Tue, 15 Aug 2006 07:20:40 +0000</pubDate>
		<dc:creator>Leigh</dc:creator>
		
		<category><![CDATA[Tech Terms]]></category>

		<guid isPermaLink="false">http://www.silkstream.net/blog/?p=95</guid>
		<description><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>RAID is a method of storing data by using fault tolerant devices. There are many different RAID techniques, but essentially the concept is to store the same data on multiple hard disks resulting                  in the redundancy of information.<p><a href="http://sharethis.com/item?&#038;wp=2.6&#38;publisher=d584242b-4fa8-4a03-abfc-aea23df72a8e&#38;title=Redundant+Array+of+Independent+Disks+%28RAID%29&#38;url=http%3A%2F%2Fwww.silkstream.net%2Fblog%2F2006%2F08%2Fredundant-array-of-independent-disks-raid.html">ShareThis</a></p>]]></description>
			<content:encoded><![CDATA[<img src="http://www.silkstream.net/blog/wp-content/uploads/2008/08/tech-terms.jpg" width="130" height="115" alt="" title="Tech Terms" /><br/><p>RAID is a method of storing data by using fault tolerant devices. There are many different RAID techniques, but essentially the concept is to store the same data on multiple hard disks resulting                  in the redundancy of information. RAID uses a technique known as striping, which involves partitioning each drive&#8217;s storage space into units or sectors.</p>
<p>There are at least nine types of RAID plus a non-redundant array (RAID 0):</p>
<ul>
<li>RAID 0 - Stripes data across multiple disks, no parity, no redundancy.</li>
<li>RAID 1 - Disk mirroring, writes data to two identical partitions on separate hard disks creating a full backup. Separate controllers are used.</li>
<li>RAID 2 - Writes data across multiple disks with error checking.</li>
<li>RAID 3 - Stripes data one byte at a time and has a dedicated parity drive (for error checking).</li>
<li>RAID 4 - Stripes data one sector at a time and has a dedicated parity drive (for error checking).</li>
<li>RAID 5 - Stripes data and parity across multiple disks (at least 3). By mixing the parity across multiple disks a separate parity disk is not required and yet full data redundancy is achieved.</li>
</ul>
<p>*Note with RAID 5 on an NT box the BOOT and SYSTEM partitions cannot be located on a RAID 5 disk array.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.silkstream.net/blog/2006/08/redundant-array-of-independent-disks-raid.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
