<?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>Skipton Systems Weblog</title>
	<atom:link href="http://blog.skiptonsystems.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.skiptonsystems.co.uk</link>
	<description>A digital record of technology...</description>
	<lastBuildDate>Thu, 26 Aug 2010 07:50:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dales and Vales Cottage Holidays</title>
		<link>http://blog.skiptonsystems.co.uk/?p=209</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=209#comments</comments>
		<pubDate>Thu, 26 Aug 2010 07:50:31 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[Web Design Skipton]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=209</guid>
		<description><![CDATA[The latest website from Skipton Systems is now [...]]]></description>
			<content:encoded><![CDATA[<p>The latest website from Skipton Systems is now live!</p>
<p>Dales and Vales Cottage Holidays Ltd commissioned Skipton Systems to write a website and complete booking system for them.</p>
<p>The new website can be seen at <a href="http://www.dales-vales-cottages.com" target="_blank">www.dales-vales-cottages.com</a>.</p>
<p><a href="http://blog.skiptonsystems.co.uk/wp-content/uploads/2010/08/dales-vales.jpg"><img class="alignleft size-full wp-image-210" title="Dales and Vales Cottage Holkdays Ltd" src="http://blog.skiptonsystems.co.uk/wp-content/uploads/2010/08/dales-vales.jpg" alt="" width="370" height="227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=209</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setup cannot copy file: iastor.sys</title>
		<link>http://blog.skiptonsystems.co.uk/?p=206</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=206#comments</comments>
		<pubDate>Tue, 10 Aug 2010 07:16:14 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[BusinessCover]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[IT Support Skipton]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=206</guid>
		<description><![CDATA[<p>Here is a tested solution to the Intel F6 Storage Driver install error:</p>
<p>&#8220;setup cannot copy the file: iastor.sys. To retry, press enter.&#8221;</p>
<p>After you create the Intel F6 driver disk, Copy (don&#8217;t move) all files  from the root of the floppy to a subfolder on the floppy as follows:</p>
<p>A:/$OEM$/TEXTMODE/</p>
<p>This is what the floppy will look [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a tested solution to the Intel F6 Storage Driver install error:</p>
<p><em><strong>&#8220;setup cannot copy the file: iastor.sys. To retry, press enter.&#8221;</strong></em></p>
<p>After you create the Intel F6 driver disk, Copy <strong>(don&#8217;t move)</strong> all files  from the root of the floppy to a subfolder on the floppy as follows:</p>
<p><strong>A:/$OEM$/TEXTMODE/</strong></p>
<p>This is what the floppy will look like now:</p>
<p><strong>Contents of (A:\) </strong><br />
&lt;$OEM$&gt;<br />
iaahci.cat<br />
iaahci.inf<br />
iastor.cat<br />
iastor.inf<br />
iastor.sys<br />
readme.txt<br />
txtsetup.oem</p>
<p><strong>Contents of A:\$OEM$\TEXTMODE</strong><br />
iaahci.cat<br />
iaahci.inf<br />
iastor.cat<br />
iastor.inf<br />
iastor.sys<br />
readme.txt<br />
txtsetup.oem</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=206</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple Constructors (Overloading) in PHP</title>
		<link>http://blog.skiptonsystems.co.uk/?p=200</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=200#comments</comments>
		<pubDate>Thu, 17 Jun 2010 07:35:58 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[web applications]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=200</guid>
		<description><![CDATA[<p>It is a huge frustration to me that PHP does not support constructor overloading in the same way that other OOP (Object Orientated Programming) languages do.  There is a workaround, however:</p>
<p>class MultipleConstructor {</p>
<p>private $info = ”;</p>
<p>function __construct() {
$argv = func_get_args();</p>
<p>switch( func_num_args() ) {
default:
case 1:
self::__construct1($argv[0]);
break;
case 2:
self::__construct2( $argv[0], $argv[1] );
break;
}
}</p>
<p>function __construct1($value) {
$this-&#62;info = $value;
}</p>
<p>function __construct2($value, $value2) {
$this-&#62;info [...]]]></description>
			<content:encoded><![CDATA[<p>It is a huge frustration to me that PHP does not support constructor overloading in the same way that other OOP (Object Orientated Programming) languages do.  There is a workaround, however:</p>
<blockquote><p>class MultipleConstructor {</p>
<p>private $info = ”;</p>
<p>function __construct() {<br />
$argv = func_get_args();</p>
<p>switch( func_num_args() ) {<br />
default:<br />
case 1:<br />
self::__construct1($argv[0]);<br />
break;<br />
case 2:<br />
self::__construct2( $argv[0], $argv[1] );<br />
break;<br />
}<br />
}</p>
<p>function __construct1($value) {<br />
$this-&gt;info = $value;<br />
}</p>
<p>function __construct2($value, $value2) {<br />
$this-&gt;info = $value . ” ” . $value2;<br />
}</p>
<p>function get() {<br />
return $this-&gt;info;</p>
<p>}<br />
}</p>
<p>$a = new MultipleConstructor(‘Value 1?);<br />
echo $a-&gt;get();</p>
<p>$b = new MultipleConstructor(‘Value 1?, ‘Value 2?);<br />
echo $b-&gt;get();</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=200</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SBS 2008 Migration &#8211; Replication Problem</title>
		<link>http://blog.skiptonsystems.co.uk/?p=191</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=191#comments</comments>
		<pubDate>Tue, 08 Jun 2010 14:15:52 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Windows 2003 Server]]></category>
		<category><![CDATA[Windows 2008 Server]]></category>
		<category><![CDATA[IT Support Skipton]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=191</guid>
		<description><![CDATA[<p>Whilst migrating a customers SBS 2003 server to SBS 2008, I was getting a message saying &#8220;Active Directory replication is taking longer than expected&#8221;.  I clicked &#8220;Wait&#8230;&#8221; a couple of times, but nothing was happening.</p>
<p>Using the admin share (C$) I was able to access the installation logs on the destination server (from C:\Program Files\Windows Small Business Server) and saw [...]]]></description>
			<content:encoded><![CDATA[<p>Whilst migrating a customers SBS 2003 server to SBS 2008, I was getting a message saying &#8220;Active Directory replication is taking longer than expected&#8221;.  I clicked &#8220;Wait&#8230;&#8221; a couple of times, but nothing was happening.</p>
<p>Using the admin share (C$) I was able to access the installation logs on the destination server (from C:\Program Files\Windows Small Business Server) and saw that the section below kept being repeated in the logs:</p>
<p><em>Setup: DsGetDcName returned: 0<br />
Setup: DsGetDcName returned name: sbs03.mydomain.local<br />
Setup: Expected name: sbs08.mydomain.local<br />
Task:       There are 0 pending replication operations.<br />
Setup:       Attempting LDAP bind.<br />
Setup:       Bind successful<br />
Task: Waiting for replication to finish</em></p>
<p>First of all, I made sure all the correct services were running on the source server:</p>
<ul>
<li>Computer Browser<br />
File Replication Service<br />
Remote Procedure Call (RPC)<br />
Workstation</li>
</ul>
<p>THis made no difference (but didn&#8217;t hurt!).</p>
<p>After trawling the web, I found that there is one registry key on the source server, and two on the destination server that need to be fixed. </p>
<p><strong>On the source server:</strong><br />
HK_LM\System\CurrentControlSet\Services\NTFrs\Parameters\Backup/Restore\Process at Startup &#8211; change the BurFlags key to decimal 4.</p>
<p><strong>On the destination server:</strong><br />
HK_LM\System\CurrentControlSet\Services\NTFrs\Parameters\Backup/Restore\Process at Startup &#8211; change the BurFlags key to decimal 2<br />
HK_LM\System\CurrentControlSet\Services\Netlogon\Parameters &#8211; change the SysVolReady key to decimal 1.</p>
<p>Now, stop the File Replication service on both machines.</p>
<p>Finally, start the File Replication service on the source server, then the destination server. </p>
<p>As soon as this happened, the migration continued.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=191</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Backups &#8211; Keep Your Data Protected</title>
		<link>http://blog.skiptonsystems.co.uk/?p=186</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=186#comments</comments>
		<pubDate>Sat, 01 May 2010 06:13:32 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[IT Support Skipton]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=186</guid>
		<description><![CDATA[<p>You&#8217;ve deleted a file and didn&#8217;t mean to. No problem &#8211; just restore it from your backup!</p>
<p>It is a common situation. A lot of people think of backups as being just for disaster recovery when the unthinkable happens; for when a server disk fails, or a computer is stolen for example. Yes, these are essential [...]]]></description>
			<content:encoded><![CDATA[<p><strong>You&#8217;ve deleted a file and didn&#8217;t mean to. No problem &#8211; just restore it from your backup!</strong></p>
<p>It is a common situation. A lot of people think of backups as being just for disaster recovery when the unthinkable happens; for when a server disk fails, or a computer is stolen for example. Yes, these are essential reasons for having a backup, but in our experience, most every day uses for regular backups come when a user simply deletes a file by accident. It can be a weight off your mind knowing that a backup was recently carried out and the file is easily recoverable.</p>
<p>There are two main types of backup available to businesses these days: tape backup, and online backup. Both methods allow for automatic scheduling, allowing you to backup your data as often as you like for complete peace of mind. Continuous Protection is even available, meaning that as soon as a file is saved a backup is taken, allowing the Administrator to restore data to any point in time.</p>
<p><span style="color: #5c0000;"><strong>Tape Backup</strong></span><br />
Tape backup systems can involve anything from a single tape drive sitting on top of a Small Business server up to an array of tape autoloaders that can hold 25 tapes or more.. each! With modern LTO5 tapes being able to hold anything up to 1.5TB (1500GB) of data, the amount of information that can be backed up in a relatively short space of time is huge.</p>
<p><span style="color: #5c0000;"><strong>Online Backup<br />
</strong></span>A relatively new technology, online backups take a copy of your data and &#8220;upload it&#8221; to a location outside of your network, preferably in a datacentre, protected by their own backups and connection redundancy. Online backups are generally for small businesses with low volumes of data. Obviously, backing up over the internet takes time and relies on having a fast, robust internet connection.</p>
<p><span style="color: #5c0000;"><strong>Protect Your Data<br />
</strong></span>We always recommend having a backup routine setup and administered by a professional. A good backup routine will provide a historical archive and ensure that all of your current data is secure and protected, but without taking the time needed to do a full backup every day. This is achieved using tape rotation and different backup methods.</p>
<p>Once the backup routine is up and running, regular maintenance and constant monitoring is needed to ensure that you always have the latest information backed up and ready to restore when needed. Any failures or problems need to be corrected before the next backup is undetrtaken.  Again, there are numerous tools available to system administrators that make this task very quick and easy.</p>
<p><strong>For more information on backing up your data, or for a free consultation and check of your backup systems, please call us on 01756 707896 or contact us via our website at <a href="http://www.skiptonsystems.co.uk/" target="_blank">www.skiptonsystems.co.uk</a>.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=186</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>April 2010 Update</title>
		<link>http://blog.skiptonsystems.co.uk/?p=179</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=179#comments</comments>
		<pubDate>Thu, 22 Apr 2010 11:10:22 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Windows 2003 Server]]></category>
		<category><![CDATA[IT Support Skipton]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[Web Design Skipton]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=179</guid>
		<description><![CDATA[<p>April has been another busy month here at SkiptonSystems!</p>
<p>We learned this week that we have been given the contracts to design and build two bespoke web applications.  Both of these are relatively large projects and will involve both in-depth design work and some fairly complicated web application development. We hope to be able to bring [...]]]></description>
			<content:encoded><![CDATA[<p>April has been another busy month here at <strong>Skipton</strong><span style="color: #5c0000;">Systems</span>!</p>
<p>We learned this week that we have been given the contracts to design and build two bespoke web applications.  Both of these are relatively large projects and will involve both in-depth design work and some fairly complicated web application development. We hope to be able to bring you details of the completed sites by the end of June.  Watch this space&#8230;!</p>
<p>In terms of our IT work, we are in the middle of offering advice and producing a quote for local company that have out-grown their existing IT system and are wanting to replace it with a brand new network, running on Windows Server 2008 with Exchange 2007 and SharePoint Services.  The network will be split across 3 locatons in the UK with a VPN tunnel between each office.  Exciting stuff.</p>
<p>Stay tuned for the May newsletter, tackling the subject of backups.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=179</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>April Newsletter Update &#8211; Antivirus Protection</title>
		<link>http://blog.skiptonsystems.co.uk/?p=168</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=168#comments</comments>
		<pubDate>Tue, 06 Apr 2010 14:58:15 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Newsletters]]></category>
		<category><![CDATA[Antivirus]]></category>
		<category><![CDATA[IT Support Skipton]]></category>
		<category><![CDATA[Newsletter]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=168</guid>
		<description><![CDATA[<p>Antivirus &#8211; A &#8220;Must Have&#8221; For Computers</p>
<p>Antivirus protection is something that a lot of businesses either don&#8217;t think about until it is too late, or install but forget about keeping up to date. By calling in the experts to take care of your antivirus, you are free to concentrate on the important aspects of your [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #5c0000;"><strong>Antivirus &#8211; A &#8220;Must Have&#8221; For Computers</strong></span></p>
<p>Antivirus protection is something that a lot of businesses either don&#8217;t think about until it is too late, or install but forget about keeping up to date. By calling in the experts to take care of your antivirus, you are free to concentrate on the important aspects of your business, safe in the knowledge that your company is protected.</p>
<p><span id="more-168"></span></p>
<p><span style="color: #5c0000;"><strong>Do I <em>Really</em> Need It?</strong></span><br />
In a word &#8211; <strong>yes</strong>. Computer viruses are small software programs that are designed to spread from one computer to another and to interfere with computer operation. A virus might corrupt or delete data on your computer, use your e-mail program or company network to spread itself to other computers, or even erase everything on your hard disk. Once infected, it doesn&#8217;t take long for the situation to get out of control.</p>
<p><span style="color: #5c0000;"><strong>How Can I Protect Myself?</strong></span><br />
Firstly, it is essential to remember never to open e-mail attachments unless you know the sender and are expecting the attachment. The same applies to removable storage &#8211; never plug in a memory stick or insert a CD from someone you do not know.</p>
<p>This is common sense, but not a solution. Mistakes can happen. Ultimately, the best way to protect yourself and your business is to invest in good antivirus software.</p>
<p><strong><span style="color: #5c0000;">Is &#8220;Free&#8221; Any Good?</span></strong><br />
We often get asked about free antivirus software that is available to download. The majority of these are only licensed for personal use, and as such, only provide a relatively low level of protection. Certainly, in our experience, free antivirus products do not offer the protection needed in an office environment. The main problem is that there is no way of centrally controlling the software once it is installed &#8211; users can disable, or even uninstall the software. It can also be an onerous task keeping the protection up to date.</p>
<p><span style="color: #5c0000;"><strong>Protect Your Business</strong></span><br />
Business-grade security and protection systems should be administered by a professional. They offer much more than just antivirus &#8211; anti-spam, data encryption and web/email content filtering are all becoming more common.</p>
<p>The software is deployed to all computers and servers on the network and is constantly monitored and updated automatically. The system must cover all areas which pose a threat, such as internet browsing, email and instant messaging &#8211; these are all potential sources of infection that need to be controlled. Once up and running, a good system should go unnoticed by the majority of users.</p>
<p>If you are concerned about your antivirus situation, or would like some advice, we would be happy to discuss the most appropriate protection system for your business &#8211; just give us a call on <strong>01756 707896</strong> for a chat.</p>
<p style="text-align: center;"><strong>For more information on our Antivirus products, and to download free software, please visit our Sophos pages at <a href="http://sophos.skiptonsystems.co.uk/" target="_blank">sophos.skiptonsystems.co.uk</a>.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=168</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP : SM Bus Controller Error</title>
		<link>http://blog.skiptonsystems.co.uk/?p=155</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=155#comments</comments>
		<pubDate>Mon, 22 Mar 2010 08:32:49 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=155</guid>
		<description><![CDATA[When building a new system for a customer, I was faced with the error:

"Microsoft Bus Driver should be loaded in your system before installing Realtek HD Audio [...]]]></description>
			<content:encoded><![CDATA[<p>When building a new system for a customer, I was faced with the error:</p>
<p><em><strong>Microsoft Bus Driver should be loaded in your system before  installing Realtek HD Audio Driver</strong></em></p>
<p>After much internet-searching and hair tearing, I was about to give up.  Nothing was working &#8211; none of the downloads or drivers seemed to do the trick.</p>
<p>As a last throw of the dice, I decided to check the BIOS.  I found that the onboard soundcard had been disabled?!  Enabling this did the trick.</p>
<p>Simple when you know how!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=155</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media</title>
		<link>http://blog.skiptonsystems.co.uk/?p=152</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=152#comments</comments>
		<pubDate>Mon, 15 Mar 2010 15:37:06 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=152</guid>
		<description><![CDATA[You can now follow Skipton Systems on Twitter and [...]]]></description>
			<content:encoded><![CDATA[<p>You can now follow Skipton Systems on Twitter and Facebook.</p>
<p>The Twitter page is <a href="http://www.twitter.com/skiptonsystems" target="_blank">www.twitter.com/skiptonsystems</a></p>
<p>Tthe Facebook page is <a href="http://http://www.facebook.com/pages/Skipton-United-Kingdom/Skipton-Systems-Ltd/360750689402" target="_blank">www.facebook.com/pages/Skipton-United-Kingdom/Skipton-Systems-Ltd/360750689402</a>.</p>
<p>Become a fan, or follow us (whichever is approriate!).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=152</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Website for Skipton Systems</title>
		<link>http://blog.skiptonsystems.co.uk/?p=145</link>
		<comments>http://blog.skiptonsystems.co.uk/?p=145#comments</comments>
		<pubDate>Mon, 15 Mar 2010 14:07:13 +0000</pubDate>
		<dc:creator>Richard</dc:creator>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Press Releases]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Free Offer]]></category>
		<category><![CDATA[Press Release]]></category>
		<category><![CDATA[Web Design Skipton]]></category>

		<guid isPermaLink="false">http://blog.skiptonsystems.co.uk/?p=145</guid>
		<description><![CDATA[We launched our new website today.  Visit it at [...]]]></description>
			<content:encoded><![CDATA[<p><strong>We launched our new website today.  Visit it at <a href="http://www.skiptonsystems.co.uk" target="_blank">www.skiptonsystems.co.uk</a>!<br />
</strong></p>
<p><a href="http://blog.skiptonsystems.co.uk/wp-content/uploads/2010/03/new-ssl-site.jpg"><img class="alignleft size-full wp-image-146" style="padding-right: 7px;" title="Skipton Systems Website" src="http://blog.skiptonsystems.co.uk/wp-content/uploads/2010/03/new-ssl-site.jpg" alt="" width="250" height="162" /></a> The new website was designed and built completely in-house by our team of developers.</p>
<p>The reason we decided to launch a new site was primarily to match the new brand of Skipton Systems, but also to reflect the new, focussed direction we are taking as a company.  Business IT support and IT solutions is our livelyhood, and our lives.  We wanted to get that message across.</p>
<p>To celebrate the lauch of the new website, we are offering businesses in the local area a FREE systems healthcheck and 30 minute IT consultation.  We are well placed to provide advice on anything IT related, such as backup routines, storage space and virus/spam control. Don’t let those nagging little problems that have been plaguing you escalate into something more serious and expensive!  This service is completely <strong>free</strong> with <strong>no-obligation</strong>, so you have nothing to lose.  It might just save you more expense in the future or just put your mind at ease.</p>
<p>If you wish to book your <strong>free</strong> systems health check and 30 minute IT consultation, email <a href="mailto:info@skiptonsystems.co.uk">info@skiptonsystems.co.uk</a> or call us on 01756 707896.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.skiptonsystems.co.uk/?feed=rss2&amp;p=145</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
