<?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>Artiss.co.uk &#187; Copy+</title> <atom:link href="http://www.artiss.co.uk/tag/copy/feed" rel="self" type="application/rss+xml" /><link>http://www.artiss.co.uk</link> <description>Geek up your life</description> <lastBuildDate>Fri, 10 Feb 2012 13:24:33 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel='hub' href='http://www.artiss.co.uk/?pushpress=hub'/> <cloud
domain='www.artiss.co.uk' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' /><link
rel="http://api.friendfeed.com/2008/03#sup" xmlns="http://www.w3.org/2005/Atom" type="application/json" href="http://friendfeed.com/api/public-sup.json#0f8212437d"/> <item><title>Copying to clipboard in WordPress</title><link>http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=copying-to-clipboard-in-wordpress</link> <comments>http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress#comments</comments> <pubDate>Tue, 25 Oct 2011 09:07:19 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Clipboard]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Flash]]></category> <category><![CDATA[JavaScript]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Script]]></category> <category><![CDATA[ZClip]]></category> <category><![CDATA[ZeroClipboard]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=6518</guid> <description><![CDATA[I was recently asked, as a commercial request, to create a WordPress plugin that would allow users to click a button and copy text the clipboard. It seemed an easy enough thing to do &#8211; 2 weeks later, though, and I&#8217;ve thrown in the towel. Using JavaScript to capture contents is the easy bit &#8211; [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/10/add-filehippo-updates-to-your-wordpress-sidebar' rel='bookmark' title='Add FileHippo Updates to your WordPress Sidebar'>Add FileHippo Updates to your WordPress Sidebar</a> <small>Ok, you can add this wherever you want, but it looks particularly nice in your sidebar. FileHippo provide a handy way to return a list...</small></li><li><a
href='http://www.artiss.co.uk/2010/08/simple-content-reveal-wordpress-plugin-updated' rel='bookmark' title='Simple Content Reveal – WordPress Plugin Updated'>Simple Content Reveal – WordPress Plugin Updated</a> <small>Two new versions of Simple Content Reveal have been released this week. Version 1.1 improved the way that the JavaScript was added to your blog...</small></li></ol>]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-full wp-image-6675" title="Clipboard" src="http://www.artiss.co.uk/wp-content/uploads/2011/10/Clipboard.png" alt="" width="250" height="176" />I was recently asked, as a commercial request, to create a WordPress plugin that would allow users to click a button and copy text the clipboard. It seemed an easy enough thing to do &#8211; 2 weeks later, though, and I&#8217;ve thrown in the towel.</p><p>Using JavaScript to capture contents is the easy bit &#8211; adding it to the clipboard is a lot more difficult. IE has a JavaScript command built in, other browsers vary. Unfortunately, other browsers (e.g. Firefox) also restrict this ability for security reasons. This is because the ability to write to the clipboard also comes with the ability to read from it as well &#8211; quite why this functionality can&#8217;t be detached and restrict just the reading I don&#8217;t know.</p><p>So, using JavaScript is problematic.</p><p>Thankfully I&#8217;m not the first to come across this problem and a third party script named <a
title="ZeroClipboard" href="http://code.google.com/p/zeroclipboard/" target="_blank">ZeroClipboard</a> is available. This uses Flash to update the clipboard, which doesn&#8217;t have the same security limitations. Of course if you&#8217;re viewing from a device that doesn&#8217;t support Flash (cough, splutter, iPad, iPhone, cough) then you&#8217;re still out of luck. None-the-less this seemed a perfect solution.</p><p>Unfortunately, my limited JavaScript skills failed me &#8211; I found the program to be over-complex for what I needed and failed to be able to get it to work.</p><p>At this point I found an alternative &#8211; <a
href="http://code.google.com/p/zeroclipboard/" target="_blank">ZClip</a> uses ZeroClipboard but is controlled via <a
title="JQuery" href="http://jquery.com/" target="_blank">JQuery</a> (which is built into WordPress) and provide a much easier and friendly method of access.</p><p>I was now in a position where I had a working plugin. Until I used Admin Bar. That seemed to affect the positioning of the Flash overlay so you had to click slightly above the &#8220;Copy to clipboard&#8221; button to get it to work.</p><p>The customer, though, didn&#8217;t have an issue with this and I could only hope that they didn&#8217;t have anything else within their theme or plugins that could affect it in this way (I did try contacting the developer of Zclip but got no response).</p><p>What really ended it all though was the limited way of capturing text in zclip, which I hadn&#8217;t appreciated earlier on. ZClip can capture in 2 ways &#8211; from static fields (e.g. the text between a SPAN) or dynamic (e.g. from a field). The first doesn&#8217;t capture any formatting, even paragraph breaks &#8211; returning everything as one long line of text. The second did, but by capturing the HTML.</p><p>The customer wanted the customer to be able to copy to the clipboard long paragraphs of text &#8211; neither offered a neat solution to this.</p><p>Then I gave up. One day I may return to it &#8211; certainly ZeroClipboard will probably allow me to do what I need it to, but I&#8217;ll have to get my head around how to first.</p><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=6518&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Copying%20to%20clipboard%20in%20WordPress&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2011%2F10%2Fcopying-to-clipboard-in-wordpress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress&amp;title=Copying+to+clipboard+in+WordPress" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/10/add-filehippo-updates-to-your-wordpress-sidebar' rel='bookmark' title='Add FileHippo Updates to your WordPress Sidebar'>Add FileHippo Updates to your WordPress Sidebar</a> <small>Ok, you can add this wherever you want, but it looks particularly nice in your sidebar. FileHippo provide a handy way to return a list...</small></li><li><a
href='http://www.artiss.co.uk/2010/08/simple-content-reveal-wordpress-plugin-updated' rel='bookmark' title='Simple Content Reveal – WordPress Plugin Updated'>Simple Content Reveal – WordPress Plugin Updated</a> <small>Two new versions of Simple Content Reveal have been released this week. Version 1.1 improved the way that the JavaScript was added to your blog...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2011/10/copying-to-clipboard-in-wordpress/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Streamline Hosting</title><link>http://www.artiss.co.uk/2011/07/streamline-hosting-2?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=streamline-hosting-2</link> <comments>http://www.artiss.co.uk/2011/07/streamline-hosting-2#comments</comments> <pubDate>Wed, 27 Jul 2011 11:34:14 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Reviews]]></category> <category><![CDATA[Web Development]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Customer Service]]></category> <category><![CDATA[Email]]></category> <category><![CDATA[Host]]></category> <category><![CDATA[Hosting]]></category> <category><![CDATA[HostPapa]]></category> <category><![CDATA[Mail]]></category> <category><![CDATA[Site]]></category> <category><![CDATA[skycopyplus]]></category> <category><![CDATA[SMTP]]></category> <category><![CDATA[Streamline]]></category> <category><![CDATA[Streamline.net]]></category> <category><![CDATA[support]]></category> <category><![CDATA[Website]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=6034</guid> <description><![CDATA[Somebody once described NTL (now, Virgin Media)  to me as “excellent, until you need any help”, due to their poor support. When it comes to Streamline.net hosting I wouldn’t even go that far. Their hosting is quite cheap and that’s the only good word I can give them. The Copy+ website, owned by the software [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/08/uk2-net-hosting' rel='bookmark' title='UK2.net Hosting'>UK2.net Hosting</a> <small>While I was moving  something else happened – this site’s bandwidth limit was reached and the site went down. As you can imagine, I didn’t...</small></li><li><a
href='http://www.artiss.co.uk/2011/04/hosting-sites-reviews' rel='bookmark' title='Hosting Sites Reviews'>Hosting Sites Reviews</a> <small>Hosting Sites Reviews is a new site &#8211; it appears to have only been around for a matter of weeks &#8211; dedicated to, yes you...</small></li><li><a
href='http://www.artiss.co.uk/2012/01/moving-hosts-goodbye-memset-hello-tsohost' rel='bookmark' title='Moving Hosts &#8211; Goodbye Memset, Hello Tsohost'>Moving Hosts &#8211; Goodbye Memset, Hello Tsohost</a> <small>I&#8217;ve been hosting this site with Memset for some time. They&#8217;ve provided an excellent, quick and stable service throughout. With a change in emphasis towards...</small></li></ol>]]></description> <content:encoded><![CDATA[<div
id="attachment_6126" class="wp-caption alignright" style="width: 310px"><a
href="http://www.dobrytato.pl" target="_blank"><img
class="size-full wp-image-6126" title="Website Hosting" src="http://www.artiss.co.uk/wp-content/uploads/2011/07/Website-Hosting.png" alt="" width="300" height="225" /></a><p
class="wp-caption-text">Image courtesy of Michal Koralewski</p></div><p>Somebody once described NTL (now, Virgin Media)  to me as “excellent, until you need any help”, due to their poor support.</p><p>When it comes to Streamline.net hosting I wouldn’t even go that far. Their hosting is quite cheap and that’s the only good word I can give them.</p><p>The Copy+ website, owned by the software author Stuart, are hosted by Streamline, but I manage the site. As huge profits aren’t made from the Copy+ site we stuck with cheap hosting. We also needed a big bandwidth due to the size of the software being downloaded – it’s often only the lower end of the hosting market that offers this.</p><p>Apart from site speed issues it’s been, okay-ish. But when we have needed support it’s not been brilliant. They also have a lot of restrictions – e.g. .htaccess files can only consist of redirects – everything else (including caching) is ignored. I was never able to upgrade phpBB 2 to phpBB 3 due to “out of memory” issues. Instead, I installed it on my own personal site (hosted elsewhere) and transferred over the resulting files and database, which worked.</p><p>However, we started being told by customers at the beginning of the year that they had problems signing up for the forum. Over time it got worse and some testing by myself showed that emails sent from the site simply weren’t turning up at their destination.</p><p>On the 22<sup>nd</sup> March I sent them a support request, asking them to investigate why email was not been sent via my site scripts. I sent them a very basic piece of code using the PHP mail facility to send a mail, so that they had an example (and wouldn’t simply assume it’s my code that’s wrong).</p><p>The response was…</p><blockquote><p>To ensure that no spam messages are sent from our network, Streamlinenet filters all outgoing e-mail. These must have a &#8216;From&#8217; or &#8216;To&#8217; address that is a domain hosted with Streamlinenet. Any e-mail not fulfilling these criteria is stopped.</p><p>For more details, please refer to the link below:</p><p>http://www.streamlinesupport.net/index.php?page=show&#038;id=150</p><p>We would recommend that you change the destination email on your mailer script to an email address hosted with us.</p></blockquote><p>Ok, so the FROM or TO field needs to be one that is from our domain name – in this case skycopyplus.co.uk. Except the code I sent them had a FROM email from that domain.</p><p>I pointed this out.</p><blockquote><p>Can you please provide us the password of the email account support@navpoint.co.uk, so that we can check if it was able to received the test email that we are going to do with the php form on your website?</p></blockquote><p>Quite blatantly they hadn’t looked at the example code as it was using the <a
href="mailto:support@navpoint.co.uk">support@navpoint.co.uk</a> email address as the FROM address, not TO. I pointed this out to them too.</p><blockquote><p>We are already aware with the issue that you are encountering right now, this is because of the SMTP server (authsmtp.streamline.net) intermittent overloading issue. The symptoms of the issue is you are going to encounter delays in sending out emails and sometimes you are going to received bounced back emails.</p><p>In order for us to further check the issue, can you please provide us the bounced back emails that you received?</p><p>As an alternative solution you can use the outgoing server of your local ISP (internet service provider) or use webmail.domain URL (http://webmail.phit-consultancy.co.uk) in sending out emails, because this is not encountering any issues in sending out emails to any types of email accounts.</p><p>Our deepest apologies about this matter. Rest assured that we are working on this issue to solve it soon as possible, as we already received lots of complaints from our customers.</p><p>With regards with the issue of the form with your website, we found out that the contact.php and sendmail.php file does not contain any action script to send out emails. Please double check the script of your website and create an action script to send the emails.</p><p>Note: We would like to remind you that scripting issue is already beyond of our scope of support.</p></blockquote><p>So, they now wanted bounced emails. Except there weren’t any – they simply didn’t turn up at their destination. They now suggesting this was a problem with my coding too. None-the-less they were now admitting they had a problem with their SMTP server.</p><p>My response begins to show my frustration…</p><blockquote><p>We are not recieving any bounced mail responses, so are unable to forward these onto you.</p><p>Using an alternative outgoing SMTP server is not a solution for PHP mail, which will use your own SMTP server &#8211; as per the code example I sent you.</p><p>It would appear that the outgoing mail issue has been going on for weeks &#8211; I do not see an open support ticket for this and I am dismayed that you still do not have any ETA for a fix.</p><p>At the end of the day I need PHP mail to work. Not to lose mails when I use the correct email structure, as per your demands (i.e. using a FROM or TO mail from our domain).</p><p>If you have no intentions to fix this, please let me know now and I will make arrangements to move to another company who can provide the most basic of functions, such as working SMTP.</p></blockquote><p>Their response didn’t help…</p><blockquote><p>We are very sorry, we don&#8217;t have the ETA of the sending emails using the main SMTP server which is authsmtp.streamline.net</p><p>Please use the alternative SMTP below:</p><p>authsmpt1.streamline.net</p></blockquote><p>As I pointed out to them – again – I can’t change the SMTP server that PHP uses without changing the PHP configuration, which they don’t allow me to do.</p><p>They responded by ignoring this but instead creating another test program which they told me worked. It worked, but only because the TO address was going to a navpoint.co.uk domain email address. As soon as you change this to go elsewhere it fails.</p><p>They then pointed out that they had alternative SMTP servers available. I blew…</p><blockquote><p>Did you read my last message when I clearly explained this?</p><p>I am using the PHP mail command, which you cannot configure to use a different SMTP server. That can only be done via the PHP configuration file, which I am unable to change &#8211; that is something you have to do.</p><p>Have you thought to change this in config.php?</p><p>Please stop asking me questions that I keep answering and you ignore.</p></blockquote><p>The response, though, finally told us what we wanted to know…</p><blockquote><p>The destination email on your mailer script (test.php) is still showing as [REMOVED] which is an external email address. Please be reminded that the &#8216;From&#8217; and &#8216;To&#8217; fields should be Streamline hosted email addresses else it will be stopped. We have changed this to support@navpoint.co.uk and it now appears to be working fine.</p></blockquote><p>So what they’re telling me is that I have to send mails to the navpoint domain. Which is no good for website contact forms or running a forum which requires users to validate their email address.</p><blockquote><p>Unfortunately, there is no other way around it as these limits exist is so we don&#8217;t open ourselves up to abuse.</p></blockquote><p>At this point the Copy+ owner, Stuart, not a web expert in any way, responded. He’d got it, why couldn’t Streamline?</p><blockquote><p>With respect, your statement that BOTH the TO and FROM addresses must be streamline hosted is clearly nonsense. Our own tests (and also direct experience of this mainly working most of the time over many years) have proved this.</p><p>The reason for the INTERMITTENT problems we are currently experiencing is it seems, by your own admission, due to an issue with authsmtp.streamline.net.</p><p>In Ticket Number: 639751 you kindly provide us with a workaround for this issue &#8211; specifically to use authsmtp1.streamline.net.</p><p>However the configuration required to do this is part of the PHP server configuration and so outside of our direct control!</p><p>We simply ask that you configure our sites at navpoint.co.uk and skycopyplus.co.uk to use the alternative SMTP server of authsmtp1.streamline.net.</p></blockquote><p>They responded back to pointing us to 2 pages on their site which mentions the limitations of their mail system. Except it states the from OR to email fields must have the owners domain and, at no point, makes mention that the TO field must have.</p><p>Stuart responded back to ask them – again- if they could configure our site to use their altnerative SMTL server. They responded by saying that they didn’t write scripts for users.</p><p>To say we are dealing with IT illiterate imbeciles would be an understatement.</p><p>It was now the 31<sup>st</sup> March. Between Stuart and I we decided to switch hosts – the hosting was due to finish in August. Unfortunately,  Streamline still had something in store for us when we requested for the hosting not to auto-renew (there is no option in their provided control panel to stop it).</p><blockquote><p>So we can complete the closure please confirm the following:</p><p>-That the package you wish to cancel is: skycopyplus.co.uk</p><p>- That you have taken all required backups of your website and hosting space, including emails. Please reply to this ticket to confirm this has been done in order that we can proceed to cancellation for you.</p><p>- Also if you are able to provide any feedback on why you moved this away would be appreciated</p><p>We will close the account on receipt of your confirmation, so please ensure that you complete any backups before replying to this mail, as we are unable to schedule cancellations for a future date.</p><p>Please be aware that closure of a hosting account does not entitle you to a refund of any charges already applied to that particular service, including any additional service charges already incurred</p></blockquote><p>In other words, they would close it there and then, with no option to simply cancel the auto-renew. Even this pushed the patience of Stuart.</p><blockquote><p>I am sorry, but that is totally unacceptable. I have paid for my hosting on this account up until the renewal date of 15/08/2011, and I should be entitled to receive the remainder without having to cancel early or run the risk of automatically being charged for a further 2 years at £119.76 as a result. Which appears to be what you are telling me will happen if I fail to cancel exactly on time?</p><p>If I wait until the renewal date to cancel (as you seem to imply I need to), how I am supposed to know on what exact date you will have taken the payment, or indeed how long it might take you to respond to my support request so that I can cancel in a timely fashion beforehand to avoid further charges?</p><p>I notice that my card payment details that you hold on file have expired. I trust this is sufficient to ensure that I will not be charged on this card? However should you attempt to submit a payment to my card anyway, I will have no hesitation in contacting my card company and demanding a charge back for my card issuer of any monies so taken.</p><p>As you happen to ask &#8211; one reason for cancelling is that we have been unable to get a reliable service for sending mail via your SMTP servers and a total lack of any coherent responses from your support department regarding this long standing issue on the last 2 tickets we raised. In fact we were totally going round in circles with you as nobody seemed to be reading the history of the ticket before replying. So we are moving our hosting elsewhere where we can get decent support and they do not have ongoing SMTP mail server issues.</p><p>But I shall now add to my list of reasons for cancelling your completely inflexible approach to a polite and entirely reasonable request to opt not to renew one of our accounts.</p></blockquote><p>I don’t think a huge amount now needs to be said. The site has been moved to <a
title="HostPapa" href="http://tracking.opienetwork.com/aff_c?offer_id=12&amp;aff_id=1274" target="_blank">HostPapa</a> who are also cheap and offer unlimited bandwidth. However, their email appears to work and, so far, their support seems a lot, lot better. In time I’ll publish a review about them. Meantime, they hosting is quite a bargain with many features above those that Streamline offer.</p><p>My intention for the site is to install WordPress and a brand new forum – a nice bit of stress testing. Next year we have another site to potentially move to a new host so HostPapa may be a possibility there too.</p><p>Whatever happens, they surely can’t be worse than Streamline.</p><p>A few more &#8220;reviews&#8221;&#8230;</p><ul><li><a
title="My legal battle with Streamline.net" href="http://www.vinylonthe.net/blah/my-legal-battle-with-streamlinenet/" target="_blank">My legal battle with Streamline.net</a></li><li><a
title="Streamline.net taking money from my account " href="http://www.consumeractiongroup.co.uk/forum/showthread.php?128159" target="_blank">Streamline.net taking money from my account</a></li><li><a
title="streamline.net are crap" href="http://pieceoplastic.com/index.php/1739/streamlinenet-are-crap/" target="_blank">streamline.net are crap</a></li><li><a
title="streamline.net are still incompetant" href="http://www.dayinpictures.co.uk/2008/04/01/note-streamlinenet-are-still-incompetant/" target="_blank">streamline.net are still incompetant</a></li></ul><p><strong>Update (02/02/2012):</strong></p><p>Because of the above policy and the fact that the only card details Streamline were aware of was an expired one, Stuart decided to simply let the hosting expire. Once it had he asked them to close his account. The response was&#8230;</p><blockquote><p>Further to your request to close the account I am sorry but I am not able to do this whilst there is a payment outstanding on the account.</p><p>If you did not wish to renew the account for a further period you would have needed to contact us to request the closure before the renewal date. As you did not do this you would need to clear the payment.</p><p>Please note you can use this package with any domain name that you wish to so if there is another website that you need to host we can help you with adding the domain to this package. I would be happy to cover the initial cost of a new .uk or .com domain name (or one of equivalent value).</p><p>Should you still wish to proceed with the closure please let us know once you have cleared the payment and we will contact you regarding this.</p></blockquote><p>Basically, they now believe Stuart owes them money for the hosting since his details expired. It took them a week to respond and Stuart&#8217;s response was straightforward&#8230;</p><blockquote><p>Sorry, but it has taken you over a WEEK to reply to this ticket.  Given that I informed you that I wished to cancel as soon as I became aware that this account was up for renewal (you hadn&#8217;t bothered to send me any reminders prior to this), and we then moved our hosting away from your site from that very date, this really isn&#8217;t fair at all.</p><p>Also I notice from my past dealings with you that it is impossible to inform you in ADVANCE that I wish to cancel, and that my account will be suspended from the date I inform you without any recompense for the lost hosting time.  So really is a total catch 22, and the most atrocious cancellation policy of any company I think I have ever dealt with.  Most require some days notice (for example 1 month) of cancellation with continued service up until that date, which is fair enough.  But it seems you can not even offer that basic courtesy.</p><p>In light of this, and as a sign of good will on my part, I am prepared to offer you pro-rata payment of 1 weeks extra hosting &#8211; the exact same time it has taken you to reply to this ticket and a whole 5 days more than we actually effectively used.  Please let me know how I can pay that.  Alternatively good luck with collecting the full £143.71 from my cancelled credit card.</p></blockquote><p>Brilliant!</p><p><strong>Update (03/02/2012):</strong></p><blockquote><p>A response from Streamline&#8230;</p><p>I am sorry I am not able to accept anything other than the full outstanding fee.</p><p>If you do not wish to clear this then I am not able to close the package at this time.</p></blockquote><div
class="hreview"><h2>Summary of <span
class="item"><span
class="fn">Streamline.net hosting</span></span></h2><div
class="reviewbox"> <span
class="summary">Cheap but not cheerful. They don&#8217;t seem to be able to grasp the most basic of customer requirements and have all the technical savvy of my 2 year old. Avoid at all costs.</span><br/><div
class="rating"> <span
class="value-title" title="0"></span> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/></div></div><p>Reviewed by <span
class="reviewer">David Artiss</span> on <span
class="dtreviewed">27th July 2011.<span
class="value-title" title="2011-07-27"></span></span></p></div><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=6034&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Streamline%20Hosting&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2011%2F07%2Fstreamline-hosting-2" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2011/07/streamline-hosting-2&amp;title=Streamline+Hosting" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/08/uk2-net-hosting' rel='bookmark' title='UK2.net Hosting'>UK2.net Hosting</a> <small>While I was moving  something else happened – this site’s bandwidth limit was reached and the site went down. As you can imagine, I didn’t...</small></li><li><a
href='http://www.artiss.co.uk/2011/04/hosting-sites-reviews' rel='bookmark' title='Hosting Sites Reviews'>Hosting Sites Reviews</a> <small>Hosting Sites Reviews is a new site &#8211; it appears to have only been around for a matter of weeks &#8211; dedicated to, yes you...</small></li><li><a
href='http://www.artiss.co.uk/2012/01/moving-hosts-goodbye-memset-hello-tsohost' rel='bookmark' title='Moving Hosts &#8211; Goodbye Memset, Hello Tsohost'>Moving Hosts &#8211; Goodbye Memset, Hello Tsohost</a> <small>I&#8217;ve been hosting this site with Memset for some time. They&#8217;ve provided an excellent, quick and stable service throughout. With a change in emphasis towards...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2011/07/streamline-hosting-2/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>iToolSoft DVD Ripper</title><link>http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=itoolsoft-dvd-ripper</link> <comments>http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper#comments</comments> <pubDate>Tue, 26 Oct 2010 10:05:07 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Reviews]]></category> <category><![CDATA[Convert]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[DVD]]></category> <category><![CDATA[DVD Ripper]]></category> <category><![CDATA[iToolSoft]]></category> <category><![CDATA[Rip]]></category> <category><![CDATA[Software]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=4134</guid> <description><![CDATA[iToolSoft produce a wide range of ripping and conversion software. And, at the moment, they are giving away their popular DVD Ripper software – it’s 100% clean of viruses, etc, and is restriction free. It&#8217;s a 15.5 MB download and 60.9 MB once installed. It&#8217;s quick to start and uses it&#8217;s own GUI, rather than [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/06/youtube-embed-version-2-features-%e2%80%93-part-2-profiles-lists' rel='bookmark' title='YouTube Embed Version 2 Features – Part 2 : Profiles &amp; Lists'>YouTube Embed Version 2 Features – Part 2 : Profiles &#038; Lists</a> <small>This is part 2 of a series of posts providing details of some of the new functionality being added to my WordPress plugin YouTube Embed....</small></li><li><a
href='http://www.artiss.co.uk/2011/07/is-pogoplug-ripping-off-uk-consumers' rel='bookmark' title='Is Pogoplug ripping off UK consumers?'>Is Pogoplug ripping off UK consumers?</a> <small>I&#8217;ve reviewed both Pogoplug hardware and software over the last year and have found both products to be excellent. However, after recently buying their Pogoplug...</small></li><li><a
href='http://www.artiss.co.uk/2011/09/easeus-partition-master-9-0-professional-edition' rel='bookmark' title='EaseUS Partition Master 9.0 Professional Edition'>EaseUS Partition Master 9.0 Professional Edition</a> <small>A couple of years ago I published a review of the home edition of EaseUS Partion Master. At the time I rated it as an...</small></li></ol>]]></description> <content:encoded><![CDATA[<div
id="attachment_4325" class="wp-caption alignright" style="width: 310px"><a
class="lightbox" href="http://www.artiss.co.uk/wp-content/uploads/2010/09/DVD-Ripper-Screenshot.png"><img
class="size-medium wp-image-4325" title="DVD Ripper Screenshot" src="http://www.artiss.co.uk/wp-content/uploads/2010/09/DVD-Ripper-Screenshot-300x164.png" alt="" width="300" height="164" /></a><p
class="wp-caption-text">Screenshot of DVD Ripper in progress</p></div><p><a
title="iToolSoft" href="http://www.itoolsoft.com/" target="_blank">iToolSoft</a> produce a wide range of ripping and conversion software. And, at the moment, they are <strong>giving away</strong> their popular <strong>DVD Ripper software</strong> – it’s 100% clean of viruses, etc, and is restriction free.</p><p>It&#8217;s a 15.5 MB download and 60.9 MB once installed.</p><p>It&#8217;s<strong> quick to start </strong>and uses it&#8217;s own GUI, rather than the Windows &#8220;standard&#8221;. It&#8217;s not too different, so isn&#8217;t too bothersome (I hate it when software operates totally different to everything else &#8211; Apple software is a good example of this). One thing<strong> I wasn&#8217;t keen on</strong> was that<strong> the fonts used were not smoothed</strong> by ClearType, obviously showing that the GUI was &#8220;doing it&#8217;s own thing&#8221; rather than being handled by Windows (and I&#8217;m sure if it was, the download and install sizes would be smaller!).</p><p>It&#8217;s let down a little by some <strong>spelling and grammar mistakes</strong>, but its very easy to use. Simple <strong>choose the DVD drive that you wish to rip and then either select a profile or create your own</strong>. There are profiles for all sorts of devices in different categories, and selecting one of these chooses suitable conversion formats, including resolutions, file types, etc. There&#8217;s lots for Apple devices, but when it comes to mobile phones it gets a bit more general, so in my case I&#8217;d have to set up my own for my Android phone. Obviously, there are a lot of phones on the market, but catering for some of the more popular, other than Apple, would have been nice.</p><p>There&#8217;s a <strong>preview window</strong>, from which you can take screenshots, and a few user-changeable options. But not many. You<strong> can also edit video</strong> &#8211; this is a very simply editor which simply allows you to &#8220;clip&#8221; parts from it where needed. There are <strong>no instructions</strong> as part of the installation and the website has some sketchy help, but it&#8217;s not a great deal &#8211; you&#8217;re going to have to work out most of it for yourself.</p><div
id="attachment_4330" class="wp-caption alignleft" style="width: 310px"><a
class="lightbox" href="http://www.artiss.co.uk/wp-content/uploads/2010/10/Star-Trek-Generations-Screenshot.png"><img
class="size-medium wp-image-4330" title="Star Trek Generations Screenshot" src="http://www.artiss.co.uk/wp-content/uploads/2010/10/Star-Trek-Generations-Screenshot-300x178.png" alt="" width="300" height="178" /></a><p
class="wp-caption-text">Star Trek Generations - playback after rip with standard .MOV profile</p></div><p>To test it, I ripped a region 2 copy of Star Trek First Contact to .mov format. Obviously, depending on the various profile options selected, and the length of the film, conversion time will vary. In this case it took around 70 minutes &#8211; but this is certainly something you can leave and come back to later. You&#8217;ll probably struggle to use the computer at the same time, as it will attempt to use maximum CPU usage (across all cores). There is a &#8220;background&#8221; option, but this seems to simply send the program to the system tray, rather than reduce CPU use so that the computer can be used for other things (which is what I assumed it was for).</p><p>The <strong>rip results were very good</strong> and I had no complaints about the quality.</p><p>I then tried Star Trek Generations &#8211; specifically because I have this on Region 1. Windows Media Player refused to play it unless I change my region number (and you can only change this a number of times). However, DVD Ripper had no issues and played and copied it without a problem.</p><p>A couple of little foibles &#8211; it wasn&#8217;t unknown for the time remaining (of the rip) to go into the negative. Also, when you select the option to &#8220;check for updates&#8221; (assuming because there were no updates) no message was returned, so you wasn&#8217;t sure if it had done anything or not.</p><h2>Please Note</h2><p><strong>This review was for the FREE version of the iToolSoft DVD Ripper</strong>. A commercial version is also available with the same name for approx $26, and includes additional options such as video editing facilities.</p><div
class="hreview"><h2>Summary of <span
class="item"><span
class="fn">iToolSoft DVD Ripper</span></span></h2><div
class="reviewbox"> <span
class="summary">Good, solid DVD copier &#8211; lots of conversion options, although a few more that weren&#8217;t Apple themed would be nice. Lacks decent instructions but it does its job easily and with a minimum of fuss. And, best of all, it&#8217;s free.</span><br/><div
class="rating"> <span
class="value-title" title="4"></span> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/></div></div><p>Reviewed by <span
class="reviewer">David Artiss</span> on <span
class="dtreviewed">26th October 2010.<span
class="value-title" title="2010-10-26"></span></span></p></div><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=4134&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=iToolSoft%20DVD%20Ripper&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2010%2F10%2Fitoolsoft-dvd-ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper&amp;title=iToolSoft+DVD+Ripper" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/06/youtube-embed-version-2-features-%e2%80%93-part-2-profiles-lists' rel='bookmark' title='YouTube Embed Version 2 Features – Part 2 : Profiles &amp; Lists'>YouTube Embed Version 2 Features – Part 2 : Profiles &#038; Lists</a> <small>This is part 2 of a series of posts providing details of some of the new functionality being added to my WordPress plugin YouTube Embed....</small></li><li><a
href='http://www.artiss.co.uk/2011/07/is-pogoplug-ripping-off-uk-consumers' rel='bookmark' title='Is Pogoplug ripping off UK consumers?'>Is Pogoplug ripping off UK consumers?</a> <small>I&#8217;ve reviewed both Pogoplug hardware and software over the last year and have found both products to be excellent. However, after recently buying their Pogoplug...</small></li><li><a
href='http://www.artiss.co.uk/2011/09/easeus-partition-master-9-0-professional-edition' rel='bookmark' title='EaseUS Partition Master 9.0 Professional Edition'>EaseUS Partition Master 9.0 Professional Edition</a> <small>A couple of years ago I published a review of the home edition of EaseUS Partion Master. At the time I rated it as an...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sky+ bug hits Copy+ users</title><link>http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sky-bug-hits-copy-users</link> <comments>http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users#comments</comments> <pubDate>Thu, 14 Oct 2010 10:22:08 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[Bug]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Forum]]></category> <category><![CDATA[Sky HD]]></category> <category><![CDATA[Sky+]]></category> <category><![CDATA[Statement]]></category> <category><![CDATA[What Satellite]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=4226</guid> <description><![CDATA[As you may know, I&#8217;m the web developer for the Copy+ software, a freeware Sky HD backup and copying tool. The developer, Stuart McConnachie, used to work with me many years ago &#8211; he writes the software and I keep the website going. It&#8217;s a relationship that works well and Copy+ has been of use [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/07/picasa-increases-storage-but-only-to-google-users' rel='bookmark' title='Picasa increases storage &#8211; but only to Google+ users'>Picasa increases storage &#8211; but only to Google+ users</a> <small>Hidden away in the Google help screens is something that gives Google+ users an extra reason to be happy! The amount of free storage for...</small></li><li><a
href='http://www.artiss.co.uk/2010/12/dropbox-hits-version-1' rel='bookmark' title='Dropbox hits version 1!'>Dropbox hits version 1!</a> <small>Dropbox 1.0.10 has been released &#8211; 10 months after the last release, 0.7.110, it&#8217;s finally past that important version 1! Dropbox, for the uninitiated, is...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>As you may know, I&#8217;m the web developer for the <a
title="Copy+" href="http://www.skycopyplus.co.uk" target="_blank">Copy+ software</a>, a freeware Sky HD backup and copying tool. The developer, Stuart McConnachie, used to work with me many years ago &#8211; he writes the software and I keep the website going. It&#8217;s a relationship that works well and Copy+ has been of use to many people in that time.</p><p>Recently, Sky has started upgrading its Sky HD firmware and users have been found that recordings copied with Copy+ are not always playing back properly. At first, people started contacting Sky, thinking it was their firmware. However, they have now posted <a
title="Sky Help Centre" href="http://www.sky.com/helpcentre/latest-news/" target="_blank">an official response</a>.</p><blockquote><p><strong>1Tb Sky+HD Issues &#8211; Update 13/10/2010 &#8211; 19:00</strong></p><p>Investigations continue into the issues reported by a minority of Sky+HD 1Tb customers.</p><p>We now understand the root cause of an issue with Copy+ software used on the set top box prior to the latest software update that can cause an error in the filesystem which is critical to the new software, causing corruption to planner and recorded content. We are aware that many of the issues reported by customers are not caused by Copy+ but customers who have used Copy+ will need to perform a full system reset. We regret that some of our customers are suffering from this, but reiterate that Copy+ is not a Sky product and is not supported or endorsed by us.</p><p>Further updates will be provided as the investigations continue.</p></blockquote><p>Because of this, Stuart has put out <a
title="Copy+ Forum" href="http://www.skycopyplus.co.uk/forum/viewtopic.php?f=26&amp;t=909&amp;start=0" target="_blank">an official statement</a>.</p><blockquote><p>We would like to sincerely apologise to all of our users with &#8220;1TB&#8221; boxes, and also to Sky, for the inconvenience caused by this issue, which does indeed appear t be caused by a filesystem discrepancy introduced by Copy+.</p><p>We appreciate that Sky can not be responsible for testing for compatibility with a third party application such as Copy+, but then equally it is impossible for us to test against future Sky software releases as we have no advance knowledge of what they may contain. It is an unfortunate situation for all concerned.</p><p>We fully accept that the best course of action for effected users would be to perform a Full System Reset as suggested by Sky. However we accept that some users my have recordings which they do not wish to lose, and so wish to offer a possible, if somewhat more technical, alternative.</p><p>To that end we are continuing to investigate and believe we are close to developing an application to fix the inconsistencies in pre and post update recordings so that they no longer risk overwriting each other. Please note that any such &#8220;fix&#8221; will not be able to recover already lost or damaged content, however it will prevent further losses in the future. Any such fix, as with using Copy+ in the first place, would of course be entirely at the users own risk. While we finalise testing this tool, users can minimise the risk of overwriting further recordings, by avoiding making new recordings or deleting content. However we fully understand if users would prefer to follow Sky&#8217;s advice and regrettably have to FSR their system.</p><p>Once again we would like to sincerely apologise to all our users effected by this unfortunate incident and the subsequent loss of recordings.</p></blockquote><p>I&#8217;ve updated <a
title="Copy+ Twitter Feed" href="http://twitter.com/skycopyplus" target="_blank">our Twitter feed</a> and posted a link to the above statement of Stuarts on <a
title="Download Copy+" href="http://www.skycopyplus.co.uk/download.php" target="_blank">the download page</a>.</p><p>I have regularly contact with Alex Lane from What Satellite magazine, so made him aware. Today, they have posted <a
title="Sky+HD 1TB bug hits Copy+ users" href="http://wotsat.techradar.com/news/skyhd-1tb-bug-hits-copy-users-14-10-10" target="_blank">their own news story</a> (currently, gulp, their leading news story). I even get a name check, although incorrectly.</p><p>All of this puts Copy+ into the spotlight a little.</p><p>All Stuart can do now is to try and understand (if he can) what&#8217;s caused this. The important thing to note is that this issue doesn&#8217;t occur on the old firmware. None-the-less, new recordings made on the new firmware don&#8217;t have an issue.</p><p>To me, and this is just my personal opinion, this suggests a change in the Sky firmware. A friend has suggested that maybe Sky have done this to &#8220;nobble&#8221; Copy+, but I think that&#8217;s overly cynical &#8211; this will have given Sky bad press as much as Copy+.</p><p>Maybe Stuart will find a way to correct for the issue on old recordings. At the very least we need to correct for whatever it is for new usage.</p><p>But Alex made a very good point&#8230;</p><div><blockquote><p>I can&#8217;t help thinking this wouldn&#8217;t have happened if Sky did the sensible thing and licensed Copy+ as part of its own toolbox.</p><p>It would be such a useful tool for Sky&#8217;s own installers or third  parties to offer to customers upgrading their Sky+, or for backing up  the product on a regular basis.</p></blockquote><p>Obviously, I couldn&#8217;t comment <img
src='http://www.artiss.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p><strong>Update</strong></p><p>On the 28th October we released <a
title="Copy+ 1.2.0.8 is released" href="http://www.skycopyplus.co.uk/forum/viewtopic.php?f=26&amp;t=927" target="_blank">a new version of Copy+</a> &#8211; it doesn&#8217;t fix existing recordings but does ensure that any new backups made with the new Sky software don&#8217;t corrupt. Again, <a
title="Copy+ releases partial fix for 1TB Sky+HD bug" href="http://wotsat.techradar.com/news/copy-releases-partial-fix-1tb-skyhd-bug-28-10-10" target="_blank">What Satellite covered the story</a>.</p></div><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=4226&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Sky%2B%20bug%20hits%20Copy%2B%20users&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2010%2F10%2Fsky-bug-hits-copy-users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users&amp;title=Sky%2B+bug+hits+Copy%2B+users" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/07/picasa-increases-storage-but-only-to-google-users' rel='bookmark' title='Picasa increases storage &#8211; but only to Google+ users'>Picasa increases storage &#8211; but only to Google+ users</a> <small>Hidden away in the Google help screens is something that gives Google+ users an extra reason to be happy! The amount of free storage for...</small></li><li><a
href='http://www.artiss.co.uk/2010/12/dropbox-hits-version-1' rel='bookmark' title='Dropbox hits version 1!'>Dropbox hits version 1!</a> <small>Dropbox 1.0.10 has been released &#8211; 10 months after the last release, 0.7.110, it&#8217;s finally past that important version 1! Dropbox, for the uninitiated, is...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>A busy time for development work!</title><link>http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-busy-time-for-development-work</link> <comments>http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work#comments</comments> <pubDate>Thu, 11 Feb 2010 09:05:32 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Android]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Development]]></category> <category><![CDATA[Google Buzz]]></category> <category><![CDATA[HTC Hero]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[navPOInt]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Simple Social Bookmarks]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Visual Basic]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=2448</guid> <description><![CDATA[I have an awful lot of development work on my lap right now. And that&#8217;s the non-work related stuff! First up, my Java book has turned up, so I intend to start learning that. Once learnt, I&#8217;ll then be ordering another book this time for how to create Android Apps using my previously learnt Java [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/04/damn-you-professional-wordpress-plugin-development' rel='bookmark' title='Damn you, Professional WordPress Plugin Development'>Damn you, Professional WordPress Plugin Development</a> <small>So, I&#8217;m finally beginning to get somewhere with version 2 of my YouTube Embed WordPress plugin. As a birthday treat to myself I bought Professional...</small></li><li><a
href='http://www.artiss.co.uk/2011/12/wordpress-plugin-review-of-2011' rel='bookmark' title='WordPress plugin review of 2011'>WordPress plugin review of 2011</a> <small>2011 has been a hectic year for me and my WordPress plugins. I&#8217;ve learnt an awful lot &#8211; especially thanks to the excellent book Professional...</small></li><li><a
href='http://www.artiss.co.uk/2011/01/did-i-really-make-resolutions-last-year' rel='bookmark' title='Did I Really Make Resolutions Last Year?'>Did I Really Make Resolutions Last Year?</a> <small>I&#8217;d forgotten, but I made some resolutions last year with regard to 2010. Normally I don&#8217;t do any kind of New Years resolution so the...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>I have an awful lot of development work on my lap right now. And that&#8217;s the non-work related stuff!</p><p>First up, my Java book has turned up, so I intend to start learning that. Once learnt, I&#8217;ll then be ordering another book this time for how to create Android Apps using my previously learnt Java skills.</p><p>I also still have my Visual Basic book to get through as well (do you think I could do both at the same time or would that get confusing?).</p><p>I&#8217;ve recently launched an initial website for a new product named <a
title="navPOInt" href="http://www.navpoint.co.uk" target="_blank">navPOInt</a> &#8211; a SatNav POI editor for Audi/VW owners. A video is being produced of it in action, which I will then be embedding on the site. Once the software development for this is complete (which I&#8217;m not doing, I should add) I&#8217;ll then need to build a complete site, complete with instructions, forums and the usual gubbins.</p><p>I also have planned changes to make to this site and <a
title="Copy+" href="http://www.skycopyplus.co.uk" target="_blank">the Copy+ site</a>.</p><p>I&#8217;m also still working on my WordPress plugins. My caching function (as used by a number of my plugins) is being completely re-written, I have some ideas for new plugins and I&#8217;m in the process of updating a number of the existing ones.</p><p>First up, though, is an update to <a
href="http://www.artiss.co.uk/simple-social-bookmarks">Simple Social Bookmarks</a> to add <a
title="Google Buzz" href="http://buzz.google.com" target="_blank">Google Buzz</a><sup><a
href="http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work#footnote_0_2448" id="identifier_0_2448" class="footnote-link footnote-identifier-link" title="which I&#039;m underwhelmed with. Even the ability to share links on Buzz is being done via a &quot;back door&quot; method as Google hasn&#039;t provided the facility to do it.">1</a></sup>.</p><p>And somewhere in all of that I need to squeeze in some blogs about recommended Android Apps, a review of the most popular Android Twitter Apps and a post of recommended HTC Hero accessories.<ol
class="footnotes"><li
id="footnote_0_2448" class="footnote">which I&#8217;m underwhelmed with. Even the ability to share links on Buzz is being done via a &#8220;back door&#8221; method as Google hasn&#8217;t provided the facility to do it.</li></ol><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=2448&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=A%20busy%20time%20for%20development%20work%21&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2010%2F02%2Fa-busy-time-for-development-work" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work&amp;title=A+busy+time+for+development+work%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/04/damn-you-professional-wordpress-plugin-development' rel='bookmark' title='Damn you, Professional WordPress Plugin Development'>Damn you, Professional WordPress Plugin Development</a> <small>So, I&#8217;m finally beginning to get somewhere with version 2 of my YouTube Embed WordPress plugin. As a birthday treat to myself I bought Professional...</small></li><li><a
href='http://www.artiss.co.uk/2011/12/wordpress-plugin-review-of-2011' rel='bookmark' title='WordPress plugin review of 2011'>WordPress plugin review of 2011</a> <small>2011 has been a hectic year for me and my WordPress plugins. I&#8217;ve learnt an awful lot &#8211; especially thanks to the excellent book Professional...</small></li><li><a
href='http://www.artiss.co.uk/2011/01/did-i-really-make-resolutions-last-year' rel='bookmark' title='Did I Really Make Resolutions Last Year?'>Did I Really Make Resolutions Last Year?</a> <small>I&#8217;d forgotten, but I made some resolutions last year with regard to 2010. Normally I don&#8217;t do any kind of New Years resolution so the...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2010/02/a-busy-time-for-development-work/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Free WinX DVD Ripper Platinum</title><link>http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-winx-dvd-ripper-platinum</link> <comments>http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum#comments</comments> <pubDate>Thu, 17 Sep 2009 09:59:40 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[DVD]]></category> <category><![CDATA[Free]]></category> <category><![CDATA[Offer]]></category> <category><![CDATA[Rip]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[WinX]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=1948</guid> <description><![CDATA[Hmmm. For those who remember my previous post about Digiarty Software contacting me for various software reviews, I&#8217;ve been contacted again. Now, let me just state for the record that I welcome requests for reviews. The problem here is my bar for an acceptable quality level for those contacting me, stating to be a professional [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper' rel='bookmark' title='iToolSoft DVD Ripper'>iToolSoft DVD Ripper</a> <small>iToolSoft produce a wide range of ripping and conversion software. And, at the moment, they are giving away their popular DVD Ripper software – it’s...</small></li><li><a
href='http://www.artiss.co.uk/2011/07/21-free-amazon-kindle-software' rel='bookmark' title='21 free Amazon Kindle software'>21 free Amazon Kindle software</a> <small>My mum already has one and I know my wife won&#8217;t mind one either. The Amazon Kindle is a rather remarkable device &#8211; it&#8217;s superb...</small></li><li><a
href='http://www.artiss.co.uk/2011/11/more-free-amazon-kindle-software-downloads' rel='bookmark' title='More free Amazon Kindle software downloads'>More free Amazon Kindle software downloads</a> <small>Clippings Converter Kindle users will know that there&#8217;s a way to clip portions of the book they are reading for future reference. These clippings get...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>Hmmm. For those who remember <a
href="http://www.artiss.co.uk/2009/07/software-reviews-and-how-not-to-request-them">my previous post</a> about Digiarty Software contacting me for various software reviews, I&#8217;ve been contacted again.</p><p>Now, let me just state for the record that I welcome requests for reviews. The problem here is my bar for an acceptable quality level for those contacting me, stating to be a professional organisation. Having said that, they are now adding their contact details, including address, at the bottom of their emails which is a start.</p><p>Anyway, their new email. It gets off badly..</p><blockquote><p>Thank you very much for reviewing on our Software.</p></blockquote><p>I don&#8217;t think I have.</p><blockquote><p>We are pleased to inform you that a good news.</p></blockquote><p>Whatever made me think originally that they might be a foreign company?</p><p>The mysterious Sophia (mysterious because I don&#8217;t believe that is her name) goes on to tell me that one of their commercial products is available for free for the rest of the month. They then go on to provide me with a URL to use and tell me I can promote this on my site. Great. But then they finish with&#8230;</p><blockquote><p>Please kindly let me know if you are interested in this offer. We would be more than happy to discuss with you further about this.</p></blockquote><p>Oh. Ok. I have to tell them first? Or not. What do I need to discuss?</p><p>I&#8217;m going to go out on a limb and say that I can promote this. I&#8217;ve not reviewed the product, but there&#8217;s lot of &#8220;awards&#8221; for it on the page &#8211; just make sure you check them out first<sup><a
href="http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum#footnote_0_1948" id="identifier_0_1948" class="footnote-link footnote-identifier-link" title="I&#039;m not singling out this company, you should obviously do this for any product">1</a></sup>.</p><p>So, here&#8217;s the details&#8230;</p><blockquote><p>WinX DVD Ripper Platinum is a professional DVD ripping software tool which could backup your DVD video to your personal PC or put into your portable devices. It offers fast ripping speed, stable ripping process and best video/audio quality.</p></blockquote><p>Use <a
title="WinX DVD Ripper Platinum" href="http://www.winxdvd.com/specialoffer/sep09.htm" target="_blank">this link</a> to get it for free &#8211; no registration is required. The offer lasts until September 30th.<ol
class="footnotes"><li
id="footnote_0_1948" class="footnote">I&#8217;m not singling out this company, you should obviously do this for any product</li></ol><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=1948&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Free%20WinX%20DVD%20Ripper%20Platinum&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2009%2F09%2Ffree-winx-dvd-ripper-platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum&amp;title=Free+WinX+DVD+Ripper+Platinum" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/10/itoolsoft-dvd-ripper' rel='bookmark' title='iToolSoft DVD Ripper'>iToolSoft DVD Ripper</a> <small>iToolSoft produce a wide range of ripping and conversion software. And, at the moment, they are giving away their popular DVD Ripper software – it’s...</small></li><li><a
href='http://www.artiss.co.uk/2011/07/21-free-amazon-kindle-software' rel='bookmark' title='21 free Amazon Kindle software'>21 free Amazon Kindle software</a> <small>My mum already has one and I know my wife won&#8217;t mind one either. The Amazon Kindle is a rather remarkable device &#8211; it&#8217;s superb...</small></li><li><a
href='http://www.artiss.co.uk/2011/11/more-free-amazon-kindle-software-downloads' rel='bookmark' title='More free Amazon Kindle software downloads'>More free Amazon Kindle software downloads</a> <small>Clippings Converter Kindle users will know that there&#8217;s a way to clip portions of the book they are reading for future reference. These clippings get...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2009/09/free-winx-dvd-ripper-platinum/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Copy+ in What Sat</title><link>http://www.artiss.co.uk/2009/03/copy-in-what-sat?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=copy-in-what-sat</link> <comments>http://www.artiss.co.uk/2009/03/copy-in-what-sat#comments</comments> <pubDate>Thu, 26 Mar 2009 12:53:28 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Comment]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[What Satellite]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=1348</guid> <description><![CDATA[The April edition of What Satellite (and Digital TV) magazine includes a step-by-step guide on how to upgrade the hard drive in your Sky box, using Copy+.
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users' rel='bookmark' title='Sky+ bug hits Copy+ users'>Sky+ bug hits Copy+ users</a> <small>As you may know, I&#8217;m the web developer for the Copy+ software, a freeware Sky HD backup and copying tool. The developer, Stuart McConnachie, used...</small></li></ol>]]></description> <content:encoded><![CDATA[<p>The April edition of What Satellite (and Digital TV) magazine includes a step-by-step guide on how to upgrade the hard drive in your Sky box, using <a
title="Copy+" href="http://www.skycopyplus.co.uk" target="_blank">Copy+</a>.</p><p>Next month, they&#8217;ll be talking about <a
title="+Extract" href="http://www.skycopyplus.co.uk/extract" target="_blank">+Extract</a>.</p><p>All of which is great publicity for this fantastic bit of software.</p><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=1348&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Copy%2B%20in%20What%20Sat&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2009%2F03%2Fcopy-in-what-sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2009/03/copy-in-what-sat&amp;title=Copy%2B+in+What+Sat" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/10/sky-bug-hits-copy-users' rel='bookmark' title='Sky+ bug hits Copy+ users'>Sky+ bug hits Copy+ users</a> <small>As you may know, I&#8217;m the web developer for the Copy+ software, a freeware Sky HD backup and copying tool. The developer, Stuart McConnachie, used...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2009/03/copy-in-what-sat/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>New version of +Extract launched!</title><link>http://www.artiss.co.uk/2009/03/new-version-of-extract-launched?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-version-of-extract-launched</link> <comments>http://www.artiss.co.uk/2009/03/new-version-of-extract-launched#comments</comments> <pubDate>Thu, 12 Mar 2009 19:19:02 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Comment]]></category> <category><![CDATA[+Extract]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Download]]></category> <category><![CDATA[Hardware]]></category> <category><![CDATA[Sky+]]></category> <category><![CDATA[Software]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=1307</guid> <description><![CDATA[+Extract is a great piece of software that will extract free-to-air programmes from a Sky HD to your PC, and a new version has been launched.]]></description> <content:encoded><![CDATA[<p><a
title="+Extract" href="http://www.skycopyplus.co.uk/extract" target="_blank">+Extract</a> is a great piece of software that will extract free-to-air programmes from a Sky HD to your PC.</p><p>The author wasn&#8217;t planning on any further releases but changed his mind so that it could support drives over 500GB in size (which is possible, thanks to <a
title="Copy+" href="http://www.skycopyplus.co.uk" target="_blank">Copy+</a>). And, whilst he was at it, he fixed some bugs, made some performance enhancements and gave the GUI a spruce-up.</p><p>Not bad for free software&#8230; but <strong>please</strong> donate if you like it.</p><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=1307&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=New%20version%20of%20%2BExtract%20launched%21&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2009%2F03%2Fnew-version-of-extract-launched" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2009/03/new-version-of-extract-launched&amp;title=New+version+of+%2BExtract+launched%21" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2009/03/new-version-of-extract-launched/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Dual Drive SATA Docking Station</title><link>http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dual-drive-sata-docking-station</link> <comments>http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station#comments</comments> <pubDate>Mon, 05 Jan 2009 19:14:18 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Reviews]]></category> <category><![CDATA[Caddy]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Hard Drive]]></category> <category><![CDATA[Hardware]]></category> <category><![CDATA[SATA]]></category> <category><![CDATA[Storage Depot]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=826</guid> <description><![CDATA[Well I’ve been using it for all my day-to-day Copy+ operations as well as development and support activities for quite some weeks now, and can truly say it is a faultless piece of kit. Here’s what you get for your money. Obviously the box contains the docking station itself, which is a sleek black unit [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/09/wd-elements-se-500gb-external-usb-drive' rel='bookmark' title='WD Elements SE 500GB External USB Drive'>WD Elements SE 500GB External USB Drive</a> <small>Now I have a Pogoplug, I really needed some hard drive storage to plug into it. I&#8217;ve owned a couple of Western Digital Passport external...</small></li><li><a
href='http://www.artiss.co.uk/2010/08/pogoplug' rel='bookmark' title='Pogoplug'>Pogoplug</a> <small>Pogoplug is a really great concept. Essentially, it&#8217;s a box in which you plug in your home router and then one, or more, USB drives....</small></li><li><a
href='http://www.artiss.co.uk/2010/09/no-power-to-nintendo-wii' rel='bookmark' title='No Power to Nintendo Wii!'>No Power to Nintendo Wii!</a> <small>Tonight I noticed there was no power light at all on my Wii &#8211; normally, even if off, the light on the front is red....</small></li></ol>]]></description> <content:encoded><![CDATA[<div
class="blockbox"><p>This is a guest review by Stuart McConnachie from <a
title="Copy+" href="http://www.copyplus.co.uk" target="_blank">the Copy+ site</a>. The product was kindly provided by <a
title="Storage Depot" href="http://www.storagedepot.co.uk/" target="_blank">Storage Depot</a>, a small and friendly company, established in 2002, which specialises in digital storage.</p></div><p>Well I’ve been using it for all my day-to-day Copy+ operations as well as development and support activities for quite some weeks now, and can truly say it is a faultless piece of kit. Here’s what you get for your money.</p><div
id="attachment_827" class="wp-caption alignright" style="width: 344px"><img
class="size-full wp-image-827" title="Hard Drive Caddy" src="http://www.artiss.co.uk/wp-content/uploads/2009/01/7908susj-1popup.jpg" alt="Hard Drive Caddy" width="334" height="231" /><p
class="wp-caption-text">Hard Drive Caddy</p></div><p>Obviously the box contains the docking station itself, which is a sleek black unit that won’t look out of place on your desktop. There are two power switches on the front of the unit for controlling the two drives, essential for this kind of setup as you don’t want to be hot plugging drives in and out of the cradle while they are still spinning! On the back of the unit are the input for power from the supplied power “brick”, a single USB B style socket and two ESATA ports clearly labelled – one for each drive dock. Also included in the box is a single standard USB A-B connector (a nice touch in the days where printer manufacturers seem to be <a
class="postlink" href="http://community.zdnet.co.uk/blog/0,1000000567,10006668o-2000331759b,00.htm" target="_blank">omitting USB cables</a> as if they were some kind of “optional” extra) and not one but two ESATA cables. Also Storage Depot included a UK mains cable to replace the US two-prong version that comes in the box as standard. So no excuse to go trying to plug it into your bathroom shaver socket as I saw one dumb user post to a forum recently <img
src='http://www.artiss.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>So, all in all the unit was very easy to set up and just plugging into my PC the Windows XP USB mass storage drivers automatically detected the new hardware and I was up and running in seconds. No tools required, just as the <a
class="postlink" href="http://www.artiss.co.uk/2008/09/simple-and-easy" target="_blank">box packaging</a> suggests. Then it’s just a case of plugging in a SATA drive &#8211; the unit takes both 3.5” desktop variants such as used in Sky+HD or the smaller 2.5” laptop drives without modification – and powering on with the appropriate power switch on the front. The drive then spins up and is recognised by Windows just like with any other USB cradle/caddy.</p><p>I started out by performing a disk-to-disk copy using both ports of the cradle, as this is the most likely potential use for this kit when upgrading a Sky+HD box from the OEM 300GB drive. As a source disk I used a 300GB Samsung drive that had been in use in my Sky+ box for quite some time and was about 80% full. As such the file system was relatively fragmented, and so a good representative test of the kind of source disk most people would be copying. As the destination drive I choose a 1TB Hitachi Deskstar drive – again not an uncommon choice for HD upgraders. Copy+ fired up and recognised both drives straight off, and it was a simple matter of selecting source and destination and clicking the Copy button.</p><p>The whole copy process took about 4 hours, which was a little longer than I was expecting. However this is probably down to both drives being on the same USB port and all the data for both reads and writes has to travel down the same 480Mb/s USB 2.0 link to the cradle. Unfortunately I don’t have access to a PC with ESATA ports, and so was unable to test this connection method – however I expect that would be significantly faster with a combined throughput of 3Gb/s. I hope to be able to test the device in this configuration at some point and report back.</p><p>Once the copy had finished I used the Windows task bar Remove Hardware icon to safely disconnect both drives. I was please to hear that at this point the caddy powered down both drives obviously parking the heads on each. This is something you don’t normally see with regular USB caddies – and so it’s a nice touch with this unit given its quick plug feature. The power light on the front remained eliminated however, and after powering off the drives I removed them from the cradle and returned the 1TB to the Sky box. I’m sure you could probably remove the drives without powering off, as they had already spun down &#8211; However it seems sensible to remove the power from the electronics first!</p><p>Both the caddy and Copy+ had performed flawlessly and all my recorded programs and series links were present on the Sky+ box &#8211; So I have absolutely no qualms in certifying this thoroughly excellent piece of kit as fully Copy+ compatible <img
src='http://www.artiss.co.uk/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p><p>As I mentioned earlier, I has also used the cradle for my day-to-day Copy+ support and development activities, so it’s had a very good workout in addition to drive copying duties. During this time I also noticed that the docking station will auto-power down drives to standby if they aren’t used for an extended period of time (e.g. 5 minutes or so). Again that’s a feature you don’t see on a large number of aftermarket enclosures. Given the open drive nature of this enclosure that’s a very useful feature that means the unit would be totally silent when not in use as well as environmentally friendly. So if you plan on using the cradle as an occasional desktop backup solution, I’d suggest it would be eminently suited to that job as well.</p><p><strong>Storage Depot have kindly offered a 10% discount on all hard drive cradles &#8211; simply follow this link to those products which are included.</strong></p><p><strong>At &#8220;Checkout&#8221; you should find a button named &#8220;Show Discounts &amp; Extras&#8221;. Press this and a box will appear allowing you to enter a discount code. Type in &#8220;copyplus&#8221; (without the quotes). It&#8217;s not case sensitive.</strong></p><div
class="hreview"><h2>Summary of <span
class="item"><span
class="fn">Dual Drive SATA Docking Station</span></span></h2><div
class="reviewbox"> <span
class="summary">The SI-7928SUSJ Dual SATA Docking Station a very well thought-out and specified piece of kit that I would have no hesitation in recommending to any Sky+HD upgrader – or indeed PC user who requires a hot plug SATA solution. I’ve certainly found it invaluable, as my work with Copy+ often requires swapping drives in and out of my various caddies – and this little unit has saved a lot of time and hassle. I just wish there was a similar unit of PATA drives!</span><br/><div
class="rating"> <span
class="value-title" title="5"></span> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/></div></div><p>Reviewed by <span
class="reviewer">David Artiss</span> on <span
class="dtreviewed">5th January 2009.<span
class="value-title" title="2009-01-05"></span></span></p></div><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=826&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Dual%20Drive%20SATA%20Docking%20Station&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2009%2F01%2Fdual-drive-sata-docking-station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station&amp;title=Dual+Drive+SATA+Docking+Station" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2010/09/wd-elements-se-500gb-external-usb-drive' rel='bookmark' title='WD Elements SE 500GB External USB Drive'>WD Elements SE 500GB External USB Drive</a> <small>Now I have a Pogoplug, I really needed some hard drive storage to plug into it. I&#8217;ve owned a couple of Western Digital Passport external...</small></li><li><a
href='http://www.artiss.co.uk/2010/08/pogoplug' rel='bookmark' title='Pogoplug'>Pogoplug</a> <small>Pogoplug is a really great concept. Essentially, it&#8217;s a box in which you plug in your home router and then one, or more, USB drives....</small></li><li><a
href='http://www.artiss.co.uk/2010/09/no-power-to-nintendo-wii' rel='bookmark' title='No Power to Nintendo Wii!'>No Power to Nintendo Wii!</a> <small>Tonight I noticed there was no power light at all on my Wii &#8211; normally, even if off, the light on the front is red....</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2009/01/dual-drive-sata-docking-station/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Create new useful links for your site</title><link>http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=create-new-useful-links-for-your-site</link> <comments>http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site#comments</comments> <pubDate>Tue, 14 Oct 2008 17:17:29 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Web Development]]></category> <category><![CDATA[BMTG]]></category> <category><![CDATA[Copy+]]></category> <category><![CDATA[Google]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=629</guid> <description><![CDATA[Google have announced a new feature in their Webmaster Tools. In a nutshell it will display all pages that link to a missing page on your site &#8211; you have a chance to fix it or take advantage of it. So, if a site was linking to an erroneously spelt page then you could create [...]
Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/02/site-changes' rel='bookmark' title='Site Changes'>Site Changes</a> <small>Since the beginning of the year I&#8217;ve been working on a revised version of the site. More than just a theme change, this has been...</small></li><li><a
href='http://www.artiss.co.uk/2012/01/site-changes-all-my-personal-posts-have-gone' rel='bookmark' title='Site changes &#8211; all my personal posts have gone!'>Site changes &#8211; all my personal posts have gone!</a> <small>A number of years ago now this site started off as my personal blog. Politics, news and general rants were the topics, with the occasional...</small></li></ol>]]></description> <content:encoded><![CDATA[<p><a
title="Webmaster Tools shows Crawl error sources" href="http://googlewebmastercentral.blogspot.com/2008/10/webmaster-tools-shows-crawl-error.html" target="_blank">Google have announced</a> a new feature in their <a
title="Google Webmaster Tools" href="http://www.google.com/webmasters/tools/" target="_blank">Webmaster Tools</a>. In a nutshell it will display all pages that link to a missing page on your site &#8211; you have a chance to fix it or take advantage of it.</p><p>So, if a site was linking to an erroneously spelt page then you could create a redirect for this to the correct page &#8211; ensuring you still get the visitors to the appropriate page.</p><p><a
title="BMTG" href="http://www.bmtg.org.uk" target="_blank">BMTG</a> was okay (apart from a misspelling on my own blog, so I was able to correct that) as was <a
title="Copy+" href="http://www.skycopyplus.co.uk" target="_blank">Copy+</a>. However, I can see the advantage of this tool and will be keeping an eye on it in future.</p><p><a
href="http://api.addthis.com/oexchange/0.8/forward/delicious/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/delicious.png" alt="Delicious" title="Delicious" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/digg.png" alt="Digg" title="Digg" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/facebook.png" alt="Facebook" title="Facebook" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/linkedin/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/linkedin.png" alt="LinkedIn" title="LinkedIn" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/reddit/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/reddit.png" alt="reddit" title="reddit" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/stumbleupon.png" alt="StumbleUpon" title="StumbleUpon" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.artiss.co.uk/?p=629&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/twitter.png" alt="Twitter" title="Twitter" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="mailto:?subject=Create%20new%20useful%20links%20for%20your%20site&amp;body=http%3A%2F%2Fwww.artiss.co.uk%2F2008%2F10%2Fcreate-new-useful-links-for-your-site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/email.png" alt="Email" title="Email" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a> <a
href="http://api.addthis.com/oexchange/0.8/forward/printfriendly/offer?url=http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site&amp;title=Create+new+useful+links+for+your+site" class="ssb" rel="nofollow"><img
src="http://www.artiss.co.uk/wp-content/themes/artiss-1/images/16x16/printfriendly.png" alt="Print Friendly" title="Print Friendly" class="ssb" style="padding-left: 2px;padding-right: 2px" /></a></p><p>Related posts:<ol><li><a
href='http://www.artiss.co.uk/2011/02/site-changes' rel='bookmark' title='Site Changes'>Site Changes</a> <small>Since the beginning of the year I&#8217;ve been working on a revised version of the site. More than just a theme change, this has been...</small></li><li><a
href='http://www.artiss.co.uk/2012/01/site-changes-all-my-personal-posts-have-gone' rel='bookmark' title='Site changes &#8211; all my personal posts have gone!'>Site changes &#8211; all my personal posts have gone!</a> <small>A number of years ago now this site started off as my personal blog. Politics, news and general rants were the topics, with the occasional...</small></li></ol></p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2008/10/create-new-useful-links-for-your-site/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
