<?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>Redline Digital Services</title>
	<atom:link href="http://www.redline.co.uk/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redline.co.uk/blog</link>
	<description>Redline Digital Services random info and witterings</description>
	<lastBuildDate>Wed, 22 Jun 2011 11:06:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Joomla hints and tips</title>
		<link>http://www.redline.co.uk/blog/2011/06/12/joomla-hints-and-tips/</link>
		<comments>http://www.redline.co.uk/blog/2011/06/12/joomla-hints-and-tips/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 13:05:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT problems]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=153</guid>
		<description><![CDATA[I&#8217;ve recently started to build a website for a client using Joomla! CMS &#8211; and I&#8217;ve had some interesting problems. Our local test server is a Windows XP machine running Apache, MySQL &#38; PHP. Absolutely no problems installing Joomla! or any of the extensions and components (more about those later). The live server is a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started to build a website for a client using <a href="http://www.joomla.org/" target="_blank">Joomla! CMS</a> &#8211; and I&#8217;ve had some interesting problems.</p>
<p>Our local test server is a Windows XP machine running Apache, MySQL &amp; PHP. Absolutely no problems installing Joomla! or any of the extensions and components (more about those later).</p>
<p>The live server is a Linux/Apache/MySQL/PHP system. After uploading the Joomla! installation files using FileZilla and running the install I needed to install the extensions. Could I get it to work? Could I heck!</p>
<p>Using the &#8220;Upload Package File&#8221; option from the Extension Manager: Install screen I kept getting &#8220;Warning! Failed to move file&#8221; error messages.</p>
<p>Using the &#8220;Install from Directory&#8221; option I was getting various &#8220;can&#8217;t create file/directory&#8221; error messages.</p>
<p>It seems (through searching the net) that these are common problems. The first thing to do it to enable FTP file system layer during install. I couldn&#8217;t find how to do this once the install was done, so delete all the files, re-upload and start again. (Later &#8211; found how to enable FTP &#8211; look in &#8220;Administration/Server&#8221;).</p>
<p>The next thing was to write enable some files &amp; directories &#8211; I&#8217;ll summarise these at the end.</p>
<p>This sort of helped &#8211; things got further before failing. Eventually by trawling through numerous solutions &#8211; most of which would leave the site unsecure or couldn&#8217;t be implemented on our server &#8211; I came across <a href="http://forum.joomla.org/viewtopic.php?f=431&amp;t=271303&amp;start=30" target="_blank">this page</a> in the Joomla forum which listed the FTP settings in configuration.php.</p>
<p>I found that the $ftp_root value hadn&#8217;t been set. Now I don&#8217;t know whether I did something wrong in the setup or whether Joomla! failed to set it, but by setting it, extension installation using &#8220;Upload package file&#8221; now works (Later after yet another install I found that Joomla! hadn&#8217;t written the right info to configuration.php).</p>
<h4>Next problem</h4>
<p>While trying to install <a href="http://civicrm.org/" target="_blank">CiviCRM</a>, I kept getting unable to create directory error messages. CiviCRM need PHP safe_mode turned off, most web servers have it turned on. Eventually I found a switch hidden away in the Plesk control panel that allowed me to turn off safe mode just for this domain (nothing in the help file, had to get one of my tech support team to work over the weekend). Once that was changed &#8211; bingo &#8211; all fine.</p>
<h4>One other tip</h4>
<p>When you install Joomla it creates a configuration.php file in the top level directory. I found that it got created with a strange ownership which wouldn&#8217;t let anything write to the file or change the file protection. I got round this by downloading it onto my local PC, deleting it off the server and re-uploading it. What I suggest is that, after uploading the Joomla! installation and before running the installation, you create an empty configuration.php file.</p>
<h3>Settings summary</h3>
<p>Make the following directories writeable by CHMODding them to 777</p>
<ul>
<li>/administrator/cache</li>
<li>/cache</li>
<li>/logs</li>
<li>/tmp</li>
</ul>
<p>configuration.php may also need to be made writeable (CHMOD 666. When you&#8217;ve finished set it back to 644) &#8211; in some cases it can be updated by supplying the ftp name &amp; password when asked</p>
<p>In configuration.php make sure the following are set</p>
<ul>
<li>public $ftp_host = &#8217;127.0.0.1&#8242;;</li>
<li>public $ftp_port = &#8217;21&#8242;;</li>
<li>public $ftp_user = &#8221;;</li>
<li>public $ftp_pass = &#8221;;</li>
<li>public $ftp_root = &#8216;<em>joomla directory</em>&#8216;; (probably something like httpdocs, unless you&#8217;re installing in a subdomain)</li>
</ul>
<p>Several of the articles said to set PHP safe_mode off &#8211; in fact when you install Joomla! you get a warning if safe_mode is on. The general consensus is this isn&#8217;t a good thing, although if the site is the only one on the server it&#8217;s acceptable. It is also possible to turn it off for the site, but other settings have to be enabled on the server to do this, which aren&#8217;t on ours.</p>
<h3>The extensions</h3>
<p><a href="https://www.akeebabackup.com/software/akeeba-backup.html" target="_blank">Akeeba backup</a> &#8211; must have. Manual &amp; automatic backups for Joomla! Also has the facility to completely rebuild the website from scratch. All you have to do is upload the backup file and <a href="https://www.akeebabackup.com/software/akeeba-kickstart.html" target="_blank">Kickstart</a> files and create the database. I also needed their <a href="https://www.akeebabackup.com/software/akeeba-extract-wizard.html" target="_blank">eXtract wizard</a> software to unpack the backup before uploading (possibly not needed now that the file upload problems appear to be fixed)</p>
<p><a href="https://www.akeebabackup.com/software/admin-tools.html" target="_blank">Akeeba admin tools</a> &#8211; another must have. A set of tools for administering your site, including the most helpful &#8220;fix permissions&#8221; and &#8220;clear temp directory&#8221;</p>
<p><a href="http://civicrm.org/" target="_blank">CiviCRM</a> &#8211; CRM package specifically designed for not-for-profit and membership organisations. It includes modules for case management, fundraising &amp; donations, and (what I was particularly after) event management, membership management and email &amp; newsletter management.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2011/06/12/joomla-hints-and-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Email Marketing &#8211; Hints and Tips on What and What Not to do</title>
		<link>http://www.redline.co.uk/blog/2011/03/23/email-marketing-hints-and-tips-on-what-and-what-not-to-do/</link>
		<comments>http://www.redline.co.uk/blog/2011/03/23/email-marketing-hints-and-tips-on-what-and-what-not-to-do/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 16:55:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[email marketing]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[top tops]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=146</guid>
		<description><![CDATA[General e-marketing recommendations Use good data. Only rent or buy email addresses that have a verifiable opt-in status. Response rates are generally 10 times greater using good opt-in data. Keep the message simple. Email should be seen as a means to an end &#8211; the end being a contact with your prospect or a visit [...]]]></description>
			<content:encoded><![CDATA[<h2>General e-marketing recommendations</h2>
<ul>
<li>Use good data. Only rent or buy email addresses that have a verifiable opt-in status. Response rates are generally 10 times greater using good opt-in data.</li>
<li>Keep the message simple. Email should be seen as a means to an end &#8211; the end being a contact with your prospect or a visit to your website.</li>
<li>Keep the message short. Long messages are often only partially read or not read at all.</li>
<li>Keep the creative simple. It&#8217;s best if the whole message (including the call to action) can be seen on one screen. Don&#8217;t use lots of different font sizes and typefaces – it confuses and detracts from the message. Make sure that graphics are hosted so that the file size is kept to a minimum.</li>
<li>Create a good subject line. Give the recipient a reason to open your message. Have a look at <a href="http://kb.mailchimp.com/article/how-do-i-know-if-im-writing-a-good-subject-line" target="_blank">this page from MailChimp</a> for examples of good and bad headlines (you&#8217;ll have to scroll down about half way) or search<a href="http://www.google.co.uk/search?q=best+email+marketing+subject+lines" target="_blank"> Google for &#8220;best email marketing subject lines</a>&#8220;)</li>
<li>Make it easy to respond. Always have a clear, concise call to action. Allow immediate access to your website and contact by email. Give a phone number or address for offline contact.</li>
<li>Be prepared to broadcast on multiple occasions. It takes on average, 7 touches before a prospect buys.</li>
<li>Make use of HTML. Whilst keeping the message simple, use html to create the message &#8211; it looks far better on screen, and allows links to be attached to images or text. Although very few people use text only email clients, make sure there is a text version, either sent with the email or online that they can click to.</li>
<li>Track everything. Opens (single and multiple), forwards, click through, unsubscribes, bounces and emails, telephone calls and faxes received in response.</li>
<li>Get the timing right. Tuesdays through Thursdays have proved to be the most responsive for B2B. B2C seems to be most successful on Friday afternoon.</li>
</ul>
<h2>Email marketing checklist</h2>
<p>Before you send out a marketing email, ensure that:</p>
<ul>
<li>Spelling and grammar is correct</li>
<li>You have a catchy subject line</li>
<li>You have a relevant name in the from box so recipients know it&#8217;s from you (do not use a generic term such as “contact” or “info”)</li>
<li>The email is correctly personalised</li>
<li>There is a call to action – recipients know what to do next</li>
<li>You provide a means of contacting you</li>
<li>Readers have the opportunity to opt out of your list</li>
<li>All images and links work</li>
<li>Your company name and registration number (if applicable) are present</li>
<li>The content adds value and is concise and focused on the readers&#8217; needs</li>
</ul>
<h2>Do&#8217;s and Don&#8217;ts</h2>
<h3>Do:</h3>
<ul>
<li>Explain to your list why they got the mail. Tell the recipient why they are receiving this email.</li>
<li>Provide an unsubscribe link. This could just be a &#8220;reply with unsubscribe in the title&#8221; but this&#8217;ll keep you very busy. Best is an automated system. Make it very clear how they can unsubscribe.</li>
<li>Email regularly, especially if you are marketing rather than sending out an informational news letter.You must have enough contact for them to remember your valuable content from your last mail. At the same time you must avoid mailing so often that you overload people.</li>
<li>Stick to your topic. Cover one topic only in a marketing email. If it&#8217;s a newsletter, it&#8217;s OK to cover several topics, but keep the email short. Perhaps just an introduction to each article with a link through to the full article on your website/blog.</li>
<li>Keep your message short and to the point. People skim read whole pages, yet will feel that they have read all the content. Avoid long sentences. Keep paragraphs short. Make your point and move on.</li>
<li>Look interesting and professional. Create a professional looking template for your emails. Simple is good but it must look appealing.</li>
<li>Be clear about your purpose and stick to it. Is your mail to inform, or to sell, or to capture leads, or to build your brand. When you know what you want make sure your mail delivers it. Avoid the temptation to do too many things at the same time.</li>
<li>Stick to the rules. Obey the law at all times.
<ul>
<li><a href="http://www.ico.gov.uk/for_organisations/data_protection/the_guide.aspx" target="_blank">General information on The Data Protection Act</a></li>
<li><a href="http://www.ico.gov.uk/for_organisations/privacy_and_electronic_communications.aspx" target="_blank">Short guidance on the Privacy and Electronic Communications Regs</a></li>
<li><a href="http://www.ico.gov.uk/Global/faqs/privacy_and_electronic_communications_regulations_for_organisations.aspx" target="_blank">Specific information on email communications</a></li>
</ul>
</li>
</ul>
<h3>Don&#8217;t:</h3>
<ul>
<li>Send irrelevant messages. Be clear in your opt-ins about what you will send and stick to those topics.</li>
<li>Over communicate. This could be too many messages, or ones that are too long.</li>
<li>Use poor grammar or sloppy phrasing. If this is not your strength, use someone else to do it for you, to at least proof-read your work.</li>
<li>Send broken links or missing images. Always test your mailing before sending.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2011/03/23/email-marketing-hints-and-tips-on-what-and-what-not-to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 &#8211; Software testing part 3: Downloaded and freeware software.</title>
		<link>http://www.redline.co.uk/blog/2010/11/20/windows-7-software-testing-part-3-downloaded-and-freeware-software/</link>
		<comments>http://www.redline.co.uk/blog/2010/11/20/windows-7-software-testing-part-3-downloaded-and-freeware-software/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 11:53:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[freeware software]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[shareware software]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=139</guid>
		<description><![CDATA[ARealValidator: This is a small program that checks HTML code and reports anything that isn’t correct. Really useful when developing websites as it can check multiple HTML files and flag all known errors against the official W3C definitions. Installed and worked fine. Button Studio: First big fail – wouldn’t install. A quick search of the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://arealvalidator.com/" target="_blank">ARealValidator</a>: This is a small program that checks HTML code and reports anything that isn’t correct. Really useful when developing websites as it can check multiple HTML files and flag all known errors against the official W3C definitions. Installed and worked fine.</p>
<p>Button Studio: First big fail – wouldn’t install. A quick search of the internet shows that this hasn’t been updated since 1999. Pity, this produced some nice quick and dirty roll over button images. Never mind, there’s similar but more sophisticated facilities in Photoshop.</p>
<p><a href="http://filezilla-project.org/" target="_blank">FileZilla</a>: FTP file transfer software with a sort of Windows explorer look and feel. If you’re doing any sort of web work some form of FTP software is essential. Most website development software (e.g. Dreamweaver) comes with an FTP client built in, but there are times when you just want to get in there and work with files at a basic level. We use FileZilla for three reasons – it’s easy, it’s got a huge support base and it’s free! There’s only a 32 bit version for windows. The main problem here is getting all the settings from the original program into the new one as I really didn’t want to have to type in all the website URLs, usernames and passwords again. Fortunately I could copy over the XML files from “Documents and Settings\username\Application Data\FileZilla” (Windows XP) to “Users\username\AppData\Roaming\FileZilla” (Windows 7 – I swear I can’t figure out why Microsoft renamed the directories and how their new renaming structure actually works). Anyway, one the files were moved all I had to do was update the source directories of the files.</p>
<p>FontViewer: According to the “About” option on the menu, it came from a 1998 copy of PC Magazine It’s so old, it doesn’t even have an installer – you just copy it into a directory and create some short cuts. It’s one of those programs that you never need until you have it and then wonder how you ever survived without. It allows you to view all the fonts on your system with whatever text you want to input. You can restrict it to different classes of font (serif, san-serif, etc.). Yes Word does this if you select a font, but you can’t compare multiple fonts. It doesn’t appear to be available any more, but there are loads of other font viewers on the Internet – just <a href="http://www.google.co.uk/search?q=fontviewer" target="_blank">Google them</a>.</p>
<p>Quickbooks 2008: Installation went fine. The only 2 problems came when transferring the company files from the XP system. 1 Where is the Library folder? With XP shared files are kept in a folder called shared files. Microsoft – for no other reason than to confuse us – have moved the shared documents folder, renamed it to Library and hidden it away. 2. Usual problem with Quickbooks. Even though automatic updates are switched on, it doesn’t do an automatic update, I had to run it manually before I could open the company file</p>
<p>Canon camera software: Utilities for controlling a Canon EOS camera, editing photos and stitching them together. All installed fine along with the downloadable updates.</p>
<p><a href="http://www.redline.co.uk/online-backup/index.html" target="_blank">Clunk Click backup software</a>: This is an online backup software solution that we use on all our critical machines. Install went absolutely smoothly (which is more than I can say for a Vista installation I’m still trying to sort out). Backup and restore are perfect</p>
<p>Reptile: This is a piece of software from <a href="http://www.sausage.com/" target="_blank">sausage software</a> which creates tiled images for backgrounds. I don’t remember why I got it in the first place but I use it once in a while for presentations &amp; websites. The version I have says it is incompatible with the version of windows that I have. There’s a new (and now free) version at the website, but when I tried to download it, I was asked for a username &amp; password for the FTP site. The website is also seriously flawed as several of the links go to pages that don’t exist. Big fail</p>
<p><a href="http://home.snafu.de/tilman/xenulink.html" target="_blank">Xenu Link Sleuth</a>: A free bit of software for checking internal &amp; external links on a website. I came across this years ago when I was working on a contract where we had to check the links on many sites. It was all being done by hand and this saved us huge amounts of time. Installed and worked perfectly.</p>
<p><a href="http://www.xnview.com/en/index.html" target="_blank">XnView</a>: An image editing bit of software. I don’t use it much, but it has some nice features to edit images quicker than using Photoshop – for example red-eye removal. It can also access the Photoshop plugins just by pointing at them.</p>
<p><a href="http://photofiltre.en.softonic.com/" target="_blank">Photofiltre</a>: Another freeware bit of image editing software. Again I don’t use it much but it, again, it does have some nice filters and transformations once the plugins have been installed</p>
<p><a href="http://www.puransoftware.com/" target="_blank">Puran Defrag</a>: I said earlier that I hadn’t found anything that would replace Pagedefrag which doesn’t work on Windows 7. Now I have. Puran Defrag will defragment a disk normally (although it’s a lot slower than <a href="http://www.piriform.com/defraggler" target="_blank">Defraggler</a> or <a href="http://www.auslogics.com/en/software/disk-defrag/" target="_blank">Auslogics Disk Defrag</a>) and it has a boot time defrag option so that files locked by the operating system can be defragmented and the files on the disk optimised. Nice.</p>
<p><a href="http://audacity.sourceforge.net/" target="_blank">Audacity</a>: This is possibly the most commonly used software for editing audio files. Installed &amp; ran fine. However, I had a slight problem installing the Lame codecs (for creating MP3 files). I had to run my unzipper software (7 Zip) as administrator even though I have administrator privileges – why have Microsoft done this? It’s a complete PITA</p>
<p><a href="http://cdexos.sourceforge.net/" target="_blank">CDex</a>: A simple piece of software for converting CDs into MP3 or wav format. Worked fine, even knew to use the new location for My Music</p>
<p><a href="http://picasa.google.com/" target="_blank">Picasa</a>: Google’s image viewing and cataloguing software – will be very surprised if this doesn’t work. And no surprises. The only annoying thing here is that while it’s scanning in the background a little window pops up showing how far it’s got. I don’t want to know and it’s in the way. There must be a way of turning it off.</p>
<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">PuTTY</a>: A little program to give me a console connection to my web server. So basic, there’s no installer, just copy the executable somewhere and run it – no problems at all</p>
<p><a href="http://www.radgametools.com/bnkdown.htm" target="_blank">RAD tools</a>: A little program (called, for some strange reason, Blink and Smacker) for converting video file formats. I came across this when I needed to convert a MOV video into something I could put into PowerPoint. No problems, all works fine.</p>
<p><a href="http://www.2brightsparks.com/syncback/" target="_blank">SyncBack</a>: Software to backup or synchronise two directories. I use this to copy files to a backup area on a network drive and to backup some websites automatically. Once a profile has been created it can be run manually or scheduled to run at a specific time and frequency.</p>
<p><a href="http://youtubedownload.altervista.org/" target="_blank">YouTube downloader</a>: Although you can download videos from YouTube (and other sites) using RealPlayer, it saves them as Flash files. YouTube downloader does the same but saves them as mp4 videos – this is where Blink and Smacker come in if you need the file as something else (e.g. wmv)</p>
<p>Finally, for those of you who know me well, you’ll know I’m big into social media – especially <a href="http://twitter.com/#!/trevorwood" target="_blank">Twitter</a>, <a href="http://www.facebook.com/trevorjwood" target="_blank">Facebook</a> and <a href="http://www.linkedin.com/in/trevorjwood" target="_blank">LinkedIn</a>. So two last applications – <a href="http://get.adobe.com/air/" target="_blank">Adobe AIR installer</a> and <a href="http://www.tweetdeck.com/" target="_blank">Tweetdeck</a>. The AIR installer is needed because Tweetdeck is written as an AIR app. AIR installer went on fine. Tweetdeck goes straight to asking you for a Twitter account to access rather than allowing you to log in to your Tweetdeck account. Oh well, add my twitter account <a href="http://twitter.com/#!/trevorwood" target="_blank">@trevorwood</a> and then log on to my TweetDeck account – surprise, it only has my groups &amp; searches, it doesn’t know what accounts I’ve got or how I’ve got my TweetDeck screen set up. Oh well, do it all longhand, add my <a href="http://www.linkedin.com/in/trevorjwood" target="_blank">LinkedIn</a> account and <a href="http://www.facebook.com/trevorjwood" target="_blank">Facebook page</a></p>
<p>So that&#8217;s it &#8211; I&#8217;m ready to upgrade to Windows 7. All I need to do now is find a few days to do it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/11/20/windows-7-software-testing-part-3-downloaded-and-freeware-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fake Microsoft Calls</title>
		<link>http://www.redline.co.uk/blog/2010/11/12/fake-microsoft-calls/</link>
		<comments>http://www.redline.co.uk/blog/2010/11/12/fake-microsoft-calls/#comments</comments>
		<pubDate>Fri, 12 Nov 2010 15:18:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[scams]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=135</guid>
		<description><![CDATA[There&#8217;s a scam going round at the moment. It&#8217;s been going round for a few months, but it seems to have suddenly resurfaced. People are being called by someone claiming to be from Microsoft support. The say that your computer has reported errors and they they are here to help. HANG UP IMMEDIATELY! If you [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a scam going round at the moment. It&#8217;s been going round for a few months, but it seems to have suddenly resurfaced.</p>
<p>People are being called by someone claiming to be from Microsoft  support. The say that your computer has reported errors and they they  are here to help. HANG UP IMMEDIATELY! If you continue the call and  follow their instructions, you will be asked to check various log files  and then install some software which will allow them to gain access to  your computer. There are a number of stories around about this including  <a href="http://www.guardian.co.uk/world/2010/jul/18/phone-scam-india-call-centres" target="_blank">this one</a> from the Guardian back in July.</p>
<p>For more information Google <a href="http://www.google.co.uk/search?q=fake+microsoft+calls&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-GB:official&amp;client=firefox-a#q=fake+microsoft+calls" target="_blank">fake Microsoft calls</a></p>
<p>If you are concerned about this or any other security issues, please get in contact with Redline Digital Services <a href="../../aboutus/contactus.php" target="_self">by email</a> or phone 01455 553593</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/11/12/fake-microsoft-calls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Not My Fault This Time Either!</title>
		<link>http://www.redline.co.uk/blog/2010/11/03/its-not-my-fault-this-time-either/</link>
		<comments>http://www.redline.co.uk/blog/2010/11/03/its-not-my-fault-this-time-either/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 16:36:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[business continuity planning]]></category>
		<category><![CDATA[disaster recovery]]></category>
		<category><![CDATA[security problems]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=128</guid>
		<description><![CDATA[Two news items caught my eye today &#8211; Google breaking privacy laws (BBC article) and BT&#8217;s broadband network falling over again (PC Pro article). Google &#8220;inadvertently&#8221; collected private data (including passwords) from unsecured WiFi connections. At least you know they&#8217;ve done it and are going to ditch the data they collected, your every day hacker [...]]]></description>
			<content:encoded><![CDATA[<p>Two news items caught my eye today &#8211; Google breaking privacy laws (<a href="http://www.bbc.co.uk/news/technology-11684952" target="_blank">BBC article</a>) and BT&#8217;s broadband network falling over again (<a href="http://www.pcpro.co.uk/news/broadband/362491/bts-broadband-network-falls-over-again" target="_blank">PC Pro article</a>).</p>
<p>Google &#8220;inadvertently&#8221; collected private data (including passwords) from unsecured WiFi connections. At least you know they&#8217;ve done it and are going to ditch the data they collected, your every day hacker or scammer isn&#8217;t going to own up to what they&#8217;ve done or get rid of the data safely.</p>
<p>You may think it&#8217;s Google&#8217;s fault that they collected your data &#8211; but this time it&#8217;s not &#8211; it is yours, if you haven&#8217;t secured your WiFi network. It&#8217;s the simplest thing in the world to do, even a complete computer novice can do it! Simply put, it means logging on to your WiFi router (the instruction book tells you how to do that) and setting an encryption level and password (the manual tells you how to do that too). Now the next time you connect to the network, your PC or laptop will ask for the password &#8211; simples!</p>
<p>And, yes, it is BTs fault their network fell over (in spite of who they try to blame), but it&#8217;s not their fault if you are left without any Internet connection at all. You should have some form of backup option &#8211; dial up (yes you can still get it) but only useful if it isn’t your whole phone line gone. Mobile broadband – get a PAYG mobile broadband stick, get it configured on your system before you need it – you’ll need broadband access to do it and if your signal is weak. There’s loads of packages out there from daily to monthly use. Make sure there’s no contract so that if you start using it you’re not paying for the next 6 months! Or even your smart phone – many of these will connect to your computer via Bluetooth.</p>
<p>But in all these cases, make sure they work BEFORE you need them</p>
<p>So, it may not be your fault that someone has collected your private data or left you without any Internet connection &#8211; but it IS your fault if you haven&#8217;t done anything to reduce the chances of these problems happening.</p>
<p>If you are concerned about these or any other security issues, please get in contact with Redline Digital Services <a href="http://www.redline.co.uk/aboutus/contactus.php" target="_self">by email</a> or phone 01455 553593</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/11/03/its-not-my-fault-this-time-either/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows 7 – Software testing part 2: Major applications</title>
		<link>http://www.redline.co.uk/blog/2010/11/01/windows-7-%e2%80%93-software-testing-part-2-major-applications/</link>
		<comments>http://www.redline.co.uk/blog/2010/11/01/windows-7-%e2%80%93-software-testing-part-2-major-applications/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 15:20:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[freeware software]]></category>
		<category><![CDATA[shareware software]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=122</guid>
		<description><![CDATA[Part 2 of what software works and what doesn’t on Windows 7. This part concentrates on the applications that we’ve purchased that come on disk (CD or DVD). I did say that I was going to look at the freeware &#38; shareware that we use, but I went for the major applications first. Good choice [...]]]></description>
			<content:encoded><![CDATA[<p>Part 2 of what software works and what doesn’t on Windows 7. This part concentrates on the applications that we’ve purchased that come on disk (CD or DVD).</p>
<p>I did say that I was going to look at the freeware &amp; shareware that we use, but I went for the major applications first. Good choice as it turned out</p>
<p><strong><a href="http://office.microsoft.com/en-gb/" target="_blank">Office 2007 with business contact manager</a>:</strong> The install of Office 2007 went without a hitch. However, when installing the business contact manager, I got a “This program has known compatibility issues” while trying to install the SQL server 2005. The prompt says that SQL server service pack 3 needs to be installed before running SQL server. Not a problem as the first thing I do after installing Office is to check for any updates. After installing the updates, I rebooted the machine to find that Windows firewall has been switched back on – don’t like that as I use McAfee</p>
<p><strong><a href="http://www.adobe.com/products/creativesuite/" target="_blank">Adobe CS4 – Web premium edition</a>:</strong> No dramas here, just incredibly slow – it even installed both the 64 bit and 32 bit versions of Photoshop. Note that CS5 is now available.</p>
<p><strong>Photoshop actions:</strong> Over the years I’ve collected a few action sets for Photoshop. These all installed with no problems. Installing them for the 32 bit version also installed them for the 64 bit version.</p>
<p><strong>Photoshop plugins:</strong> I’ve also collected various useful plugins for Photoshop. Most are freeware. The commercial ones are <a href="http://www.autofx.com/products/pge/detail.html" target="_blank">PhotoGraphic Edges</a> from Auto Fx and Corel’s <a href="http://www.corel.com/servlet/Satellite/us/en/Product/1152105061785#tabview=tab0" target="_blank">Kai Power Tools</a>. Unfortunately, they only work with the 32 bit version of Photoshop, which isn’t going to be a problem at the moment because Windows 7 will eventually go on to a 32 bit machine. Unfortunately, to get them to work on 64 bit machines they need to be recompiled specifically (see <a href="http://www.bigresource.com/Tracker/Track-photoshop-rqHSTDez/" target="_blank">http://www.bigresource.com/Tracker/Track-photoshop-rqHSTDez/</a>) so it looks like I’m going to have to go and hunt for upgrades or replacements – and probably pay for them <img src='http://www.redline.co.uk/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> . Some of the plugins wouldn’t even install as 32 bit – claiming there wasn’t enough disk space! After installing some of these plugins, the system became very unstable and kept crashing. It took a bit of time to track down, but it appears that one of the memory chips has gone duff – so relegated to using 2gb rather than 4gb L</p>
<p><strong><a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&amp;exc=3&amp;loc=en_us" target="_blank">Dreamweaver Extensions</a>:</strong> I do wish that the Dreamweaver extension manager would allow multiple extensions to be installed in one go rather than adding each in turn. Some of the extensions wouldn’t install unless I ran the extension manager “as administrator”. After doing this, I couldn’t just click on an extension to get it to install. I had to close the extension manager and allow it to run as me.</p>
<h2>Other web development tools.</h2>
<p><strong>HomeSite+</strong>: This used to be given away with Dreamweaver as an HTML editor. Most of the functionality has now been included in Dreamweaver but I find it easier to use than Dreamweaver’s code view. It also installs a stripped down version of TopStyle, a CSS editor. After entering the serial number and going through the initial configuration, I was presented with a “HomeSite has stopped working” dialog box. Selecting the option to check online for a solution gave “Error accessing the OLE registry”. Running is as Administrator fixed this, allowing the initial configuration to complete properly. Note: Adobe have stopped support &amp; development for HomeSite and it doesn’t seem as though it is available anywhere to download <img src='http://www.redline.co.uk/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p><strong><a href="http://www.topstyle4.com/" target="_blank">TopStyle</a>:</strong> I liked the stripped down version of TopStyle so much I upgraded to a full version. It’s getting a bit long in the tooth now but to upgrade to the latest version costs $80 and until I need to do something that TopStyle won’t do, I think I’ll wait.</p>
<p><strong><a href="http://www.iseephotovista.com/products/realitystudio/product_info.html" target="_blank">Reality Studio</a>:</strong> Software for creating panoramas, rotating objects and 3d walk arounds from photographs. I use this to show interior views of places and rotating objects – for example this <a href="http://www.redline.co.uk/internet/courtyard.html" target="_blank">courtyard</a>, a replica of <a href="http://www.redline.co.uk/internet/whittle-jet.html" target="_blank">Sir Frank Whittle’s Jet</a> and <a href="http://www.redline.co.uk/internet/whittle-jet.html" target="_blank">a tachometer</a>. At this point I realised that Java hadn’t been installed as it is needed to view the panoramas. Fortunately, this software works fine with Windows 7 as it was quite expensive and I wouldn’t want to have to chuck it out</p>
<p><strong><a href="http://www.roxio.co.uk/eng/products/creator/suite/overview.html" target="_blank">Roxio Creator 2009</a>:</strong> CD/DVD burning and creation software. Very comprehensive suite to do virtually anything you need to do with putting data onto CD &amp; DVD. I’ve known past versions of this to be a bit clunky. Some people swear by it and others swear at it. On first run I got a message saying that “This program has known compatibility issues – Roxio Creator 2009 is incompatible with this version of Windows”. Following the “check for solutions online” first took me to a page saying “Contact Sonic Solutions for support” and a question “Was this information helpful?” – no, Microsoft, it wasn’t. Following the link to the Roxio site just took me to a page where they’re trying to sell me Creator 2011. Anyway, I have a patch still to apply (SP4). Later after a reboot – hooray! SP4 obviously contains a fix to run on Windows 7 – don’t have to shell out for a new version.</p>
<p><strong>Windows ActiveSync:</strong> I use this to synchronise my XDA with Outlook. It doesn’t work on Windows 7 (or Vista). It took a bit of tracking down to find that I now need to use Windows <a href="http://en.kioskea.net/download/download-409-windows-mobile-device-center" target="_blank">Mobile Device Centre</a>. After downloading the software I was told it didn’t work with this processor (an AMD). All I can find on the web are problems to do with WMDC so I think I’ll leave this and solve it if I need to later (I may have a new phone by then!)</p>
<h2>Web server components</h2>
<p>Windows comes with a web server now known as IIS, which is what we’ve used in the past. However, with our live web server running Linux and Apache, I’m taking this opportunity to install Apache on a Windows system</p>
<p><strong><a href="http://www.apache.org/" target="_blank">Apache</a>:</strong> Install instructions can be found at <a href="http://www.webdevelopersnotes.com/how-do-i/install-apache-windows-7.php" target="_blank">http://www.webdevelopersnotes.com/how-do-i/install-apache-windows-7.php</a>. Dead easy &#8211; although there is only a 32 bit version of it. It&#8217;s also worth noting that, on Windows, MOD_REWRITE isn&#8217;t turned on by default (very useful for WordPress and Joomla). Instructions on how to turn it on can be found at <a href="http://www.astahost.com/info.php/Apache-Tutorial-Enable-Mod_rewrite-Windows_t11623.html" target="_blank">http://www.astahost.com/info.php/Apache-Tutorial-Enable-Mod_rewrite-Windows_t11623.html</a></p>
<p><strong><a href="http://www.php.net/" target="_blank">PHP</a>:</strong> Instructions for downloading, installing and configuring PHP can be found at <a href="http://www.webdevelopersnotes.com/how-do-i/install-PHP-windows-7.php" target="_blank">http://www.webdevelopersnotes.com/how-do-i/install-PHP-windows-7.php</a>. What this document doesn’t tell you is that after editing the Apache config file you have to restart Apache. It’s also worth checking out <a href="http://www.thesitewizard.com/php/install-php-5-apache-windows.shtml" target="_blank">http://www.thesitewizard.com/php/install-php-5-apache-windows.shtml</a> for some other configuration options. This doc tells you how to configure SMTP mail, which unfortunately won’t work if your ISP requires authentication or at least I can’t figure out how to get it to work).  Personally I wouldn’t enable short tags or register globals. For a live system, don’t display errors either.</p>
<p><strong><a href="http://www.mysql.com/" target="_blank">MySQL</a>:</strong> Instructions for download, installation &amp; configuration can be found at <a href="http://www.webdevelopersnotes.com/how-do-i/install-mysql-windows-7.php" target="_blank">http://www.webdevelopersnotes.com/how-do-i/install-mysql-windows-7.php</a>. Make sure you download the correct version (32 bit or 64 bit)</p>
<p><strong><a href="http://www.perl.org/" target="_blank">Perl</a>:</strong> Although I prefer to use PHP, I still support some websites that use Perl and once in a while a Perl script is useful. I use <a href="http://www.activestate.com/perl" target="_blank">ActivePerl</a> and the installation instructions can be found here <a href="http://docs.activestate.com/activeperl/5.12/install.html" target="_blank">http://docs.activestate.com/activeperl/5.12/install.html</a>. Make sure you download the right version (32bit or 64 bit)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/11/01/windows-7-%e2%80%93-software-testing-part-2-major-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Not My Fault!</title>
		<link>http://www.redline.co.uk/blog/2010/10/05/its-not-my-fault/</link>
		<comments>http://www.redline.co.uk/blog/2010/10/05/its-not-my-fault/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 13:56:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[business continuity planning]]></category>
		<category><![CDATA[disaster recovery]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=117</guid>
		<description><![CDATA[On Sunday night, a fire swept through a Japanese restaurant in Leicester. Stretches of Granby Street and Charles Street had to be blocked off and there was disruption to neighbouring businesses, many of which were unable to open on Monday (full story from Leicester Mercury and BBC). The interesting bit here for me is the [...]]]></description>
			<content:encoded><![CDATA[<p>On Sunday night, a fire swept through a Japanese restaurant in Leicester. Stretches of Granby Street and Charles Street had to be blocked off and  there was disruption to neighbouring businesses, many of which were  unable to open on Monday (full story from <a href="http://www.thisisleicestershire.co.uk/news/Huge-rips-city-centre-restaurant/article-2719719-detail/article.html" target="_blank">Leicester Mercury</a> and <a href="http://www.bbc.co.uk/news/uk-england-leicestershire-11464505" target="_blank">BBC</a>).</p>
<p>The interesting bit here for me is the many businesses that were unable to open for the day. It wasn&#8217;t their fault, but their business has suffered. For some, it will have cost a lot of money and may even have damaged their reputation.</p>
<p>Many businesses have a business continuity plan in place. They could survive the loss of their IT systems, their building or even some of their staff.</p>
<p>But what about a temporary closure? Your office is fine, your IT equipment is safe, your phones still work &#8211; but you can&#8217;t access any of them. What will you do? How much will it hurt your business?</p>
<p>Yes, it&#8217;s not your fault, but you still need to do something about it.</p>
<p>Why not <a href="http://www.redline.co.uk/aboutus/contactus.php" target="_self">contact us</a> or call us now on 01455 553593 for a free business continuity plan review. After all, what have you got to lose? What could you gain?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/10/05/its-not-my-fault/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Redline Digital Services is exhibiting at the Leicester Business Event</title>
		<link>http://www.redline.co.uk/blog/2010/09/15/redline-digital-services-is-exhibiting-at-the-leicester-business-event/</link>
		<comments>http://www.redline.co.uk/blog/2010/09/15/redline-digital-services-is-exhibiting-at-the-leicester-business-event/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 11:09:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[disaster recovery]]></category>
		<category><![CDATA[general business]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[special offers]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=104</guid>
		<description><![CDATA[We&#8217;re exhibiting at the Leicester Business Event on 30th September 2010 at the Walkers Stadium in Leicester Come and see us on stand KW31, say hello and enter our competition to win a 3gb desktop/laptop backup account for 1 year (competition rules) Even if you don&#8217;t win, we&#8217;re offering anyone who leaves their business card [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re exhibiting at the <a href="http://www.leicesterbusinessevents.co.uk/" target="_blank">Leicester Business Event</a> on 30th September 2010 at the <a href="http://www.thewalkersstadium.co.uk/" target="_blank">Walkers Stadium</a> in Leicester</p>
<p>Come and see us on stand KW31, say hello and enter our competition to win a 3gb <a href="http://www.redline.co.uk/online-backup/prodandl.html">desktop/laptop backup account</a> for 1 year (<a href="#comprules">competition rules</a>)</p>
<p>Even if you don&#8217;t win, we&#8217;re offering anyone who leaves their business card with us at the <a href="http://www.leicesterbusinessevents.co.uk/" target="_blank">Leicester Business Event</a> and subsequently takes out a <a href="http://www.redline.co.uk/online-backup/prodandl.html">desktop/laptop backup</a> or <a href="http://www.redline.co.uk/online-backup/proserver.html">server backup</a> account during October, November or December 2010 their  first 3 months free (<a href="#expooffers">terms and conditions</a>)</p>
<p>Entry to the <a href="http://www.leicesterbusinessevents.co.uk/" target="_blank">Leicester Business Event</a> is free to visitors, just <a href="http://www.leicesterbusinessevents.co.uk/register-to-attend.aspx" target="_blank">register online</a> to attend.</p>
<h2><a id="comprules" name="comprules"></a>Competition rules</h2>
<p>Prize consists of 1 <a href="http://www.redline.co.uk/online-backup/prodandl.html">desktop/laptop licence and 3gb of storage</a> free for 1 year</p>
<p>Additional storage over 3gb will be charged at £9/gb/month</p>
<p>After one year the account will revert to paid account at prevailing rate (currently £5/month for licence and £9/gb/month for storage</p>
<p>Competition open to all residents of the UK except employees of <a href="http://www.redline.co.uk/">Redline Digital Services Ltd</a> and <a href="http://www.riscitsolutions.co.uk/" target="_blank">Risc Group IT Solutions Ltd</a></p>
<p>Only one entry per person allowed</p>
<p>The draw will be made from all business cards left at the <a href="http://www.redline.co.uk/">Redline Digital Services</a> stand at the <a href="http://www.leicesterbusinessevents.co.uk/" target="_blank">Leicester Business Event</a> on 30th September 2010</p>
<p>The winner will be notified by telephone and/or email after the event</p>
<p>All entrants agree to have their details added to the <a href="http://www.redline.co.uk/">Redline Digital Services</a> marketing database. <a href="http://www.redline.co.uk/aboutus/privacy-policy.html">Redline Digital Services</a> is registered under the Data Protection Act. <a href="http://www.redline.co.uk/aboutus/privacy-policy.html">Redline Digital Service</a>s will never share, sell, or rent individual personal information with anyone without your advance permission or unless ordered by a court of law. Information submitted to us is available to employees managing this information for purposes of contacting you or sending you emails based on your request for information.</p>
<p>All prices quoted are ex VAT</p>
<h2><a id="expooffers" name="expooffers"></a>Exhibition offers</h2>
<p>Anyone who leaves their business card with us at the <a href="http://www.leicesterbusinessevents.co.uk/" target="_blank">Leicester Business Event</a> on 30th September 2010 and subsequently takes out a <a href="http://www.redline.co.uk/online-backup/prodandl.html">desktop/laptop backup</a> or <a href="http://www.redline.co.uk/online-backup/proserver.html">server backup</a> account during October, November or December 2010 will receive the first 3 months free</p>
<p>Minimum account duration is 12 months. Full terms and conditions are available from <a href="http://www.redline.co.uk/">Redline Digital Services</a> and will be sent during the 10 day evaluation period</p>
<p>After 3 month the account will revert to paid account at prevailing rate (currently £5/month for licence and £9/gb/month for storage)</p>
<p>All prices quoted are ex VAT</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/09/15/redline-digital-services-is-exhibiting-at-the-leicester-business-event/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows 7 &#8211; what software works and what doesn&#8217;t</title>
		<link>http://www.redline.co.uk/blog/2010/07/23/windows-7-what-software-works-and-what-doesnt/</link>
		<comments>http://www.redline.co.uk/blog/2010/07/23/windows-7-what-software-works-and-what-doesnt/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 09:07:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[freeware software]]></category>
		<category><![CDATA[shareware software]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=79</guid>
		<description><![CDATA[Having been bitten in the past by finding software that fails to work after an upgrade, I decided to be sensible and use a spare laptop to install Windows 7 on and then install all the software I use on the laptop, starting with all the free software. So here goes. Install Windows 7 &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Having been bitten in the past by finding software that fails to work after an upgrade, I decided to be sensible and use a spare laptop to install Windows 7 on and then install all the software I use on the laptop, starting with all the free software. So here goes.</p>
<ol>
<li>Install Windows 7 &#8211; this went nice and easily</li>
<li> Install all the Windows patches &#8211; Windows has moved where &#8220;Windows Update&#8221; is. No longer is it a short cut on the start menu called &#8220;Microsoft Update&#8221; but it&#8217;s moved to &#8220;All programs&#8221;/&#8221;Windows Update&#8221; (I believe this is the same as Vista, but given that Vista was such an abortion, I&#8217;ve never touched it &#8211; for this reason, all comparisons in this article are against XP).</li>
<li> Now found that there&#8217;s an equivalent to &#8220;Microsoft Update&#8221; to check Windows, Office and MSN, the new option is confusingly called &#8220;Windows Update&#8221;.    There&#8217;s a whole load of optional updates for different languages &#8211; they can be hidden fortunately (but only one at a time &#8211; it would have been nice to be able to select them all and hide them in one go), so I don&#8217;t have to keep saying I don&#8217;t want them.During the update, the latest version if IE is installed, along with a bit of software called &#8220;Browser Choice&#8221;. On the next reboot, I was asked which browser I wanted to install as the default browser &#8211; went for <a href="http://www.mozilla-europe.org/en/firefox/" target="_blank">Firefox</a> (no surprise there) although later I&#8217;ll be installing Opera, Netscape, Safari &amp; Chrome.</li>
<li>All the software I wanted to install is on a NAS (a hard drive attached to the network) &#8211; trying to map a network drive using the usual search facility failed. I had to manually type in its location. OK if you know the location, but otherwise a bit of a bummer. Doing a quick search on the Internet showed up that this is a common problem.</li>
<li>First thing we install on all computers at <a href="http://www.redline.co.uk">Redline Digital Services</a> is anti-virus software. We&#8217;ve been using <a href="http://www.redline.co.uk/shop/software-mcafee-uk.html">McAfee</a> for over 10 years and have never had a virus infestation.1st (and as it turns out only) problem &#8211; Windows said that the version of  McAfee that we are currently running is incompatible with Windows 7. According to the McAfee site we need version 9.11, checking the installation on other computers we&#8217;re already at 9.15. Going back to the McAfee site and re-downloading the installer fixed this problem. I&#8217;m guessing that the installer we had was an older version and that McAfee had been updated during its regular update sequence.After McAfee was installed, it took Windows Action Centre a little while to discover that there was AV, Firewall &amp; anti-spyware running and until it did, it kept nagging me to go and find some software online. My advice &#8211; be patient and go and make a cup of coffee.Before installing anything else I ran a full virus scan &#8211; just in case.</li>
<li>Our next bit of software is usually <a href="http://www.winzip.com/index.htm" target="_blank">Winzip</a>. Yes, Windows has had zip software for a while, but I&#8217;ve been using this since Windows 95 and I&#8217;m comfortable with it. However, it is shareware and on one of the upgrades a couple of years ago, they wanted a further payment so I&#8217;ve never progressed past version 9. I&#8217;m taking the opportunity to try out <a href="http://www.7-zip.org/" target="_blank">7-Zip</a>, a freeware compression utility that will compress in several formats and uncompress in even more (including RAR, which Winzip v9 doesn&#8217;t do). One thing to note &#8211; on installing the software it doesn&#8217;t automatically assign itself as the default to open zip files, I had to find a zip file, do &#8220;Open With&#8221;, select 7-zip and tell it to always open with this.The rest of the software is listed alphabetically, for no better reason than this is the order it is found on the NAS drive</li>
<li><a href="http://get.adobe.com/uk/reader/" target="_blank">Adobe Acrobat Reader</a>. An essential for all computers and, as expected, absolutely no problems at all. Interestingly, Windows XP requires a reboot after the installation of Adobe Reader 9, Windows 7 doesn&#8217;t &#8211; that&#8217;s good.</li>
<li><a href="http://www.auslogics.com/en/software/disk-defrag/" target="_blank">Auslogics Disk Defragmenter</a>. Freeware disk defragmentation software. Very fast and just as good (if not better) than Windows on defragmenting.</li>
<li> <a href="http://www.piriform.com/ccleaner" target="_blank">CCleaner</a>. Freeware software that cleans up your system by deleting unwanted files and removing bad registry entries. There&#8217;s a few options during the install. I deselect &#8220;Add Desktop Shortcut&#8221;, &#8220;Add Run CCleaner option to Recycle Bin context menu&#8221;, &#8220;Add Open CCleaner option to Recycle Bin menu&#8221; and &#8220;Add CCleaner Yahoo&#8221; Toolbar&#8221;. I select &#8220;Add Start Menu Shortcuts&#8221; and &#8220;Automatically check for CCleaner updates&#8221;.What does CCleaner do? The first tab is &#8220;Cleaner&#8221; and this removes old temp and junk files. You have some control over what is removed, but be careful because once this deletes the files they are gone forever. The second tab is &#8220;Registry&#8221;. This scans the system registry for problems and attempts to fix them. Always accept the offer to back up the registry first &#8211; although it&#8217;s very rare I have had CCleaner delete something from the registry that was needed.</li>
<li> <a href="http://www.piriform.com/defraggler" target="_blank">Defraggler</a>. Another disk defragger. Much more thorough than the Auslogics one, and hence slower. It also has an option to defrag empty space, which tries to make all the empty space on a disk contiguous and a file defrag option, where it tries to defrag specific files. My normal procedure is to use the Auslogics defragger first, then run the free space defragger in Defraggler and finally the file defragger in Defraggler.</li>
<li><a href="http://free.antivirus.com/hijackthis/" target="_blank">HijackThis</a>. A piece of software that looks for Trojans and spyware, specifically where they have modified registry entries. This software was originally developed by a German called Mathias Mattner and is now supplied by Trend Micro. The scan report is almost incomprehensible, fortunately Mathias still maintains the <a href="http://www.hijackthis.de/" target="_blank">logfile analysis site</a>. One thing to note &#8211; to run this software properly you need to right click on it and select &#8220;Run as administrator&#8221; even if your account has administrator privileges &#8211; it seems as though there&#8217;s a &#8220;super administrator&#8221; account hidden away on Windows 7 &#8211; do a Google search for &#8220;<a href="http://www.google.co.uk/search?q=windows+7+super+administrator" target="_blank">Windows 7 super administrator</a>&#8221; for more information.</li>
<li><a href="http://www.irfanview.com/" target="_blank">IrfanView</a>. Free image viewer with some editing capabilities. Most useful of these are the batch conversion options and the thumbnail viewer. Very simple to use and pretty quick too. Along with IrfanView is a bunch of plugins that do various extra things &#8211; see <a href="http://www.irfanview.com/" target="_blank">the website</a> for what they do as it seems to change each version.</li>
<li><a href="http://www.malwarebytes.org/" target="_blank">Malwarebytes</a>. Another program for scanning your computer for malware &#8211; spyware &amp; Trojans. I used to use Adaware, but I got fed up with it because it seemed to keep starting for no apparent reason and slowing down the computer.After installing, Malwarebytes goes off and gets the latest updates &#8211; let it do this, it doesn&#8217;t take long.</li>
<li><a href="http://www.malwarebytes.org/" target="_blank">RealPlayer</a>. A program to compliment Windows Media Player as it plays some formats that Media Player won&#8217;t or struggles with. The other nice thing about this is the ability to download video embedded in a web page.</li>
<li><a href="http://www.robomagic.com/swatch.htm" target="_blank">SocketWatch</a>. A freeware program with the ability to access other options if you pay for it. I don&#8217;t want the other options so&#8230; This software goes off and checks various Internet clocks to correct the time on your computer. Does it when you first log in and then regularly afterwards, depending on how often you tell it to do it. I set this for 10 hours.</li>
<li>Norton Partition Magic. This has been a useful, if rarely used bit of software, for me. However it was discontinued at v8 (which is what I have got) and it is incompatible with Windows 7 &#8211; oh well, will have to use the <a href="http://gparted.sourceforge.net/" target="_blank">Linux GParted</a> &#8211; this boots from CD so will always work, but is slower and more complicated <img src='http://www.redline.co.uk/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </li>
<li>Finally, some  little system tools.<a href="http://ccollomb.free.fr/unlocker/" target="_blank"><br />
Unlocker</a>. If you try to delete or rename a file and Windows says it can&#8217;t because something else has the file open, unlocker will free the file without you having to log off and back on again). A word of warning though &#8211; it asks to install a link to eBay – don&#8217;t! McAfee says it&#8217;s a PUP (Potentially Unwanted Program) and deletes it<a href="http://www.mlin.net/StartupCPL.shtml" target="_blank"><br />
Startup Control Panel</a>. This program  lists everything that runs at system startup and allows you to delete them if you don&#8217;t want them starting. There&#8217;s a similar feature in CCleaner.<a href="http://technet.microsoft.com/en-us/sysinternals/bb897426.aspx" target="_blank"><br />
Pagedefrag</a> is a program that runs at boot time to defragment system files that are locked normally. However this isn&#8217;t compatible with windows 7 and I haven&#8217;t yet found anything free that&#8217;ll do the same job.</li>
<li>Now for the thing that is most likely to break &#8211; the network laser printer &#8211; an HP 2600n. I had fun getting this to work under XP because HP had cleverly hidden the drivers. A quick search on Google and several people have had problems with this printer, but HP have now issued the drivers and made them easy to find. I downloaded these and started the install &#8211; HP want the printer connected by a USB cable as there&#8217;s no network search facility (unlike the XP version of the software). A quick search of the Internet and yes, other people have found the same. The answer is to install it as a USB printer (to get the drivers in), then disconnect the USB cable, delete the printer and add a new printer. However, the installation wizard didn&#8217;t find the printer and I had to install it using it&#8217;s IP address, which is fine if the IP address is static (as it is), but if the IP address is dynamic I can see that Windows will lose it each time the IP address changes. Silly HP. Anyway, it works, which is all I&#8217;m bothered about</li>
</ol>
<p>Only one problem left, I can&#8217;t see any other computers on the network. I&#8217;ve scoured the Internet and it appears to be a very common problem. Several solutions have been suggested, but I can&#8217;t get machine to see anything else on the network. Oh well, keep looking &amp; I&#8217;ll post an update when I find an answer</p>
<p>Well, that&#8217;s it for this part of the upgrade. The next part will be freeware/shareware programs that are used specifically on my main PC. Finally there will be the &#8220;paid for&#8221;  application programs that I use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/07/23/windows-7-what-software-works-and-what-doesnt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing data on your PC</title>
		<link>http://www.redline.co.uk/blog/2010/07/02/securing-data-on-your-pc/</link>
		<comments>http://www.redline.co.uk/blog/2010/07/02/securing-data-on-your-pc/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 14:57:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[backup]]></category>
		<category><![CDATA[business continuity planning]]></category>
		<category><![CDATA[data recovery]]></category>
		<category><![CDATA[IT problems]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[top tops]]></category>

		<guid isPermaLink="false">http://www.redline.co.uk/blog/?p=73</guid>
		<description><![CDATA[This morning I spoke at a 4networking meeting in Leicester about securing data on your PC. This post expands on that a bit and includes links to relevant websites to flesh it out a bit. Over recent years we’ve heard of people (mostly government!) leaving laptops on trains, in taxis or in pubs. Laptops with [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I spoke at a <a href="http://www.4networking.biz" target="_blank">4networking</a> meeting in Leicester about securing data on your PC. This post expands on that a bit and includes links to relevant websites to flesh it out a bit.</p>
<p>Over recent years we’ve heard of people (mostly government!) leaving laptops on trains, in taxis or in pubs. Laptops with important and sensitive information on them.</p>
<p>This morning I saw an article called &#8220;<a href="http://www.itproportal.com/portal/news/article/2010/6/30/microsoft-plotting-death-desktop-windows-8/#1" target="_blank">Microsoft Plotting Death Of Desktop With Windows 8</a>&#8220;. It seems from this and other sources that Microsoft are expecting us to move more and more to the use of mobile computing and will be extending Windows to support iPad type devices.</p>
<p>So here are some thoughts on how to keep your data secure. These will work now on your laptop or office PC.</p>
<ol>
<li><strong>Windows password.</strong> PCs come pre-installed with Windows these days. There’s a simple setup that is run first time you use the PC. One of the things it does is to create a user account for you, but often it doesn’t create a password. When you boot the computer, it goes straight into the account. The risk &#8211; anyone who gets hold of your PC can access everything on the computer immediately. So create a password. This is easily done &#8211; Google &#8220;<a href="http://www.google.co.uk/search?q=create+user+password+Windows" target="_blank">Create user password Windows</a>&#8221; to find out how to do this for the various different flavours of Windows. Ideally, you should define a strong password &#8211; at least 12 characters and returning zero results when searched in Google. I have to admit to using less characters than that as I couldn&#8217;t remember them all!</li>
<li><strong>Encrypt your files.</strong> This stops someone removing the disk from your computer, linking it into another one and just reading everything off it. Windows XP Pro, Vista Ultimate &amp; Enterprise and Windows 7 Ultimate have built in file &amp; disk encryption (BitLocker or EFS (Encrypting File System)) &#8211; Google &#8220;<a href="http://www.google.co.uk/search?q=encrypt+data+bitlocker" target="_blank">encrypt data Bitlocker</a>&#8221; or &#8220;<a href="http://www.google.co.uk/search?q=encrypt+data+efs" target="_blank">encrypt data EFS</a>&#8221; to see how to use them. If you’re running any other version of windows get something like <a href="http://www.truecrypt.org/" target="_blank">TrueCrypt</a>. Note &#8211; I&#8217;ve looked at TrueCrypt but never used it in anger so check it out carefully on data you don&#8217;t mind losing.</li>
<li><strong>Disable autorun.</strong> Removable media (CD, DVD, USB drives) can contain programs that automatically run when inserted &#8211; we’ve all seen it when installing software from CD. Great when setting up a system in the first place and installing loads of software, but later on if someone else puts a CD or whatever into your computer when you’re not looking, they could infect your computer with a Trojan that’ll read everything you’ve got and transmit it over the Internet, or log all your key presses and get your bank account passwords, etc. <a href="http://support.microsoft.com/kb/967715" target="_blank">This Microsoft article</a> shows how to do it, including fixing a bug or you can Google &#8220;<a href="http://www.google.co.uk/search?q=disable+autorun" target="_blank">disable autorun</a>&#8220;</li>
<li><strong>Enable Microsoft update</strong> to download and automatically install security patches &#8211; <a href="http://support.microsoft.com/kb/901037" target="_blank">Microsoft article</a>. In past times, people were rightly sceptical of allowing this action, but now it’s fine. Microsoft issue security updates monthly. Also, once in a while, do a manual check of Microsoft Update and check and haul down the optional updates – especially new drivers. To do this click on the &#8220;Start&#8221; button and select &#8220;Windows Update&#8221; or &#8220;Microsoft Update&#8221;</li>
<li><strong>Get firewall and anti-virus software.</strong> Windows has built in firewall software  – personally I think it’s not that good but it’s better than nothing. There are a number of free firewall/AV packages around, but remember they may only be worth what you pay for them. I’d also recommend avoiding Norton/Symantec, I&#8217;ve met many IT support people who hate it. We&#8217;ve used <a href="http://www.redline.co.uk/shop/software-mcafee-uk.html" target="_blank">McAfee</a> for years and never been hacked or infected by viruses or trojans. Although their technical support isn’t fantastic and when new versions of the software come out, sometimes there’s problems, once these are sorted it runs flawlessly. Don’t just rely on your router firewall either &#8211; that’ll stop people trying to push a Trojan onto your computer, but won’t stop any that are attached to an email or come in from some other source. It also won’t check what’s programs on your computer are trying to connect to the Internet, whereas software firewalls can be configured to ask you whether to allow a program to access the Internet. <a href="http://www.redline.co.uk/shop/software-mcafee-uk.html" target="_blank">McAfee</a> will also check with you if a previously allowed program has changed &#8211; often this is OK because you’ve upgraded the program, but it may be that something has infected it or is masquerading as a known program.</li>
<li><strong>Don’t use software from untrusted sources.</strong> Trusted sources include original CDs from software suppliers, their websites and recognised &amp; trusted software repositories (e.g. <a href="http://www.download.com" target="_blank">download.com</a>, <a href="http://www.tucows.com/" target="_blank">tucows</a>). Other software repositories and copied CDs should be considered unsafe.</li>
<li><strong>Be the only user on your PC</strong>. You can create multiple accounts if you need. There are occasions where PCs need to be shared &#8211; e.g. laptops for presentations. In these cases, just don’t put anything you don’t want the whole world to know about on it.</li>
<li><strong>Secure your computer when you leave it.</strong> You can configure a screen saver to require a password when it’s been activated, but that is a real pain in the neck. For it to be any use, the screen saver needs to kick in within 30 seconds of no activity. I&#8217;ve been trying out <a href="http://www.montpellier-informatique.com/predator/en/index.php">Predator</a>, a free bit of software that works in conjunction of a USB memory stick. Remove the stick and the PC locks. Put the stick back in and it asks for a password. There’s a free version (we like free) and a paid version with some nifty features like email, sms &amp; twitter alerts if someone tries to access the computer. It seems to work well, and has had good reviews. If I come across any problems, I&#8217;ll let you know.</li>
</ol>
<p>If you’re really paranoid you can get into password managers, etc. where you carry all your passwords, encrypted, on a memory stick, or into biometric stuff, but that’s way beyond what most people need.</p>
<p>Ok, all this lot will help prevent other people accessing your data. <strong>But there are other things that can go wrong.</strong></p>
<p>A couple of years ago <a href="http://www.krollontrack.co.uk/" target="_blank">Kroll Ontrack</a> &#8211; one of the world’s largest data recovery companies &#8211; listed some of the more common &amp; unusual ways people had lost data off their computers</p>
<p>The unusual included a man getting so fed up with his PC that he shot it with a shotgun, a laptop falling out of a fishing boat and a company accountant dropping his laptop into his bath. The more usual ones included spilling drinks on the laptop, driving off with one on the top of the car and laptop bursting in to flames.</p>
<p>I have a client who had their PC stolen and another who’s laptop wound up in Hong Kong when it was supposed to be in Singapore with him.</p>
<p>This brings me on to the subject of backups – yawn</p>
<p>There’s a number of ways of doing this, depending on the data you&#8217;re backing up.</p>
<ol>
<li><strong>Software distribution CDs &amp; DVDs.</strong> You’ve probably invested a lot of money in buying software &#8211; whether that’s Office, accounts software, Adobe Creative Suite, CAD or other design software. Copy these to CD or DVD. Keep the copies in your office and get the originals off site &#8211; either to home or, if you work at home, round to a friend’s house.</li>
<li><strong>Rarely changing data,</strong> or data where you are only adding file to &#8211; e.g. photos. Copy to DVD or external hard drive &#8211; twice. Keep one copy off site. Recopy it all when there are changes or every 3-6 months, whichever comes first.</li>
<li><strong>Regularly changing data</strong> &#8211; e.g. accounts, Word docs, etc. Backup daily. Use a fully automated system so you don’t forget. <a href="http://www.redline.co.uk/online-backup/index.html" target="_blank">Online backup</a> is probably the best as it gets the data offsite immediately the backup is complete. Failing that use some backup software to back up to external or NAS drive. Then take it off site.</li>
<li><strong>For very large amounts of data,</strong> tape is still being used. It’s falling out of favour because of reliability issues and someone has to remember to change the tapes and take them offsite. We&#8217;re still using it on one test machine where we&#8217;re regularly re-installing &amp; re-configuring Windows &#8211; it&#8217;s marginally faster and required less intervention once started.</li>
</ol>
<p>Once in a while &#8211; perhaps monthly or more frequently &#8211; make sure you can recover the data from your backup. I have one client who was backing everything on to CD once a week and on the 2 occasions that they needed to recover something, the data wasn’t there. They ditched that and moved to our <a href="http://www.redline.co.uk/online-backup/index.html" target="_blank">online service</a>, which backed up every day, freed up 4 hours of the office manager’s time and it worked for them.</p>
<p>Incidentally, there&#8217;s evidence to suggest that the lifetime for CDs and DVDs isn&#8217;t what it was expected to be. It would be worth re-duplicating all your CDs &amp; DVDs at least once a year.</p>
<p>A while back I wrote a blog item called <a href="http://www.redline.co.uk/blog/2007/11/26/backup-strategies/">Backup Strategies </a>which is still worth a read and more recently &#8220;<a title="Top Ten Reasons To Use Online Backup" href="../2010/06/17/top-ten-reasons-to-use-online-backup/">T</a><a href="http://www.redline.co.uk/blog/2010/06/17/top-ten-reasons-to-use-online-backup/">op Ten Reasons To Use  Online Backup</a>&#8221;</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 76px; width: 1px; height: 1px; overflow: hidden;">
<h1>Microsoft Plotting Death Of Desktop With Windows 8</h1>
<div style="overflow: hidden; color: #000000; background-color: transparent; text-align: left; text-decoration: none; border: medium none;">Read more: <a style="color: #003399;" href="http://www.itproportal.com/portal/news/article/2010/6/30/microsoft-plotting-death-desktop-windows-8/#1#ixzz0sX8yK4OO">http://www.itproportal.com/portal/news/article/2010/6/30/microsoft-plotting-death-desktop-windows-8/#1#ixzz0sX8yK4OO</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.redline.co.uk/blog/2010/07/02/securing-data-on-your-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

