<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Intellitech I.T. Solutions Ltd. Blogsite</title>
	
	<link>http://blog.intellitechitsolutions.com</link>
	<description>This weblog is about Intellitech I.T. Solutions Ltd., an I.T. company based in the Greater London area</description>
	<pubDate>Fri, 12 Dec 2008 12:35:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/IntellitechItSolutionsLtdBlogsite" /><feedburner:info uri="intellitechitsolutionsltdblogsite" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/2.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><feedburner:emailServiceId>IntellitechItSolutionsLtdBlogsite</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2FIntellitechItSolutionsLtdBlogsite" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FIntellitechItSolutionsLtdBlogsite" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Ffeeds.feedburner.com%2FIntellitechItSolutionsLtdBlogsite" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://feeds.feedburner.com/IntellitechItSolutionsLtdBlogsite" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FIntellitechItSolutionsLtdBlogsite" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FIntellitechItSolutionsLtdBlogsite" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Ffeeds.feedburner.com%2FIntellitechItSolutionsLtdBlogsite" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><item>
		<title>.htaccess - Common &amp; Useful Configurations</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/BnfeoEpw6nE/</link>
		<comments>http://blog.intellitechitsolutions.com/2008/12/12/htaccess-common-useful-configurations/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 12:35:00 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Webhosting]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/?p=21</guid>
		<description><![CDATA[The .htaccess files (Hypertext Access file) is a very powerful configuration tool on Apache web server. The Apache web server has a number of configuration options that are available to the server administrator. The .htaccess ...]]></description>
			<content:encoded><![CDATA[<p>The .htaccess files (Hypertext Access file) is a very powerful configuration tool on Apache web server. The Apache web server has a number of configuration options that are available to the server administrator. The .htaccess is a simple ASCII text file placed in your website root directory. You can create and edit an .htaccess file using a text editor like notepad.</p>
<p>Here in this blog post I have come up with useful 16 tips and hacks to configure your web server.<br />
As a configuration file .htaccess if a very powerful and a slight syntax error can result in a severe malfunction of your server. So to avoid that always try to keep a backup copies of all your files from the server before working with the .htaccess file.</p>
<p>1. Creating a custom error page with .htaccess on a linux apache is a very simple task. Using you a text editor like notepad you create an .htaccess files. Custom error pages give your website an professional look and catch those visitors who reach your website following a back link.</p>
<p>ErrorDocument 401 /error/401.php<br />
ErrorDocument 403 /error/403.php<br />
ErrorDocument 404 /error/404.php<br />
ErrorDocument 500 /error/500.php</p>
<p>2. How to set the timezone on your server</p>
<p>SetEnv TZ America/Houston</p>
<p>3. Block IPs Using htaccess<br />
Sometime you need to block certain IPs from accessing your entire site or directory. Its pretty simple task. All you have to do is inside the .htaccess file is put the following code.</p>
<p>allow from all<br />
deny from 145.186.14.122<br />
deny from 124.15</p>
<p>If you use the whole IP or a part of the IP to block and add the new ones in a new line.<br />
When someone trying to access your site from the banned ip they will get a 403 error access forbidden message.</p>
<p>4. SEO Friendly 301 permanent redirects for bad/old links and moved links</p>
<p>Redirect 301 /d/file.html http://www.htaccesselite.com/r/file.html</p>
<p>5. Set the Email Address for the Server Administrator - Using this code you can specifying the default email address for the server administrator.</p>
<p>ServerSignature EMail<br />
SetEnv SERVER_ADMIN default@domain.com</p>
<p>6. Hotlinking protection with .htaccess is very important because anyone can hot link to your images and eat up all your bandwith of your server. The following code will help you to prevent that.</p>
<p>Options +FollowSymlinks<br />
# Protect Hotlinking<br />
RewriteEngine On<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http://(www\.)?domainname\.com/ [nc]<br />
RewriteRule .*\.(gif|jpg|png)$ http://domainname.com/img/hotlink_f_o.png [nc]</p>
<p>7. Block all requests from user agent - by creating a perfect .htaccess ban list, you can block all of unwanted user agents that will keep your server load down. Also Check out this interesting thread on webmaster world about the  228 user agents ban list.</p>
<p>## .htaccess Code :: BEGIN<br />
## Block Bad Bots by user-Agent<br />
SetEnvIfNoCase user-Agent ^FrontPage [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Java.* [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Microsoft.URL [NC,OR]<br />
SetEnvIfNoCase user-Agent ^MSFrontPage [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Offline.Explorer [NC,OR]<br />
SetEnvIfNoCase user-Agent ^[Ww]eb[Bb]andit [NC,OR]<br />
SetEnvIfNoCase user-Agent ^Zeus [NC]</p>
<p>Order Allow,Deny<br />
Allow from all<br />
Deny from env=bad_bot</p>
<p>## .htaccess Code :: END</p>
<p>8. Redirect everyone to different site except few IP -If you want to redirect all the visitors to a different IP. Also give access to certain  few IPs. You can use the code below</p>
<p>ErrorDocument 403 http://www.youdomain.com<br />
Order deny,allow<br />
Deny from all<br />
Allow from 124.34.48.165<br />
Allow from 102.54.68.123</p>
<p>9. Don’t want to display download request - Usually when you try to download something from a web server you get a request asking whether you want to save the file or open it.<br />
To avoid that you can use the below code on your .htaccess file.</p>
<p>AddType application/octet-stream .pdf<br />
AddType application/octet-stream .zip<br />
AddType application/octet-stream .mov</p>
<p>10. Change the file type - Make any file be a certain kind of file type Makes image.jpg, index.html, default.cgi all act as php</p>
<p>ForceType application/x-httpd-php<br />
SetHandler application/x-httpd-php</p>
<p>11. Block access to your .htaccess file - By adding he following code to your htaccess file will prevent attempts to access your htaccess file. This extra layer of security protects your htaccess file by displaying a 403 error message on the browser.</p>
<p># secure htaccess file</p>
<p> order allow,deny<br />
 deny from all</p>
<p>12. Protect access to certain specific file on your server - this can be done by adding the below mentioned code. For example you want to block with the file name default.jpg This will prevent the viewing of this file.</p>
<p># prevent access of a certain file</p>
<p> order allow,deny<br />
 deny from all</p>
<p>13. Prevent access to unauthorized browsing - Protecting specific directory browsing can be done by intructing the server to serve a Forbidden and Authorization required message while anyone requests to view that particular directory. Usually if you site doesn’t have a default index page any files within that directory is accessible to the visitors. To avoid that use the following code in the .htaccess file.</p>
<p># disable directory browsing<br />
Options All -Indexes</p>
<p>14. Setting the default page - You can set the default page of a directory to any page you like. For example in this code the default page is set as about.html instead of index.html</p>
<p># serve alternate default index page<br />
DirectoryIndex about.html</p>
<p>15. Password protect your directories and files - You can create authentication for certain files and directories from being access. The code has examples of both password protection for a single file and password protection for a entire directory.</p>
<p># to protect a file</p>
<p>AuthType Basic<br />
AuthName “Prompt”<br />
AuthUserFile /home/path/.htpasswd<br />
Require valid-user</p>
<p># password-protect a directory<br />
resides<br />
AuthType basic<br />
AuthName “This directory is protected”<br />
AuthUserFile /home/path/.htpasswd<br />
AuthGroupFile /dev/null<br />
Require valid-user</p>
<p>16. Redirect an old domain to a new domain - Using htaccess file you can redirect a old domain name to a new domain by adding the following code into the htaccess file. Basically what it does is it will remap the old domain to the new one.</p>
<p># redirect from old domain to new domain<br />
RewriteEngine On<br />
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]</p>
<p>As htaccess files are very powerful, even a slightest syntax error can cause sever malfunction of your server. So it is crucial to take the backup copies of everything before you try the hacks and tricks on your hypertext access files. Post your thoughts with a comment.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=BnfeoEpw6nE:U2xhteXMVuA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=BnfeoEpw6nE:U2xhteXMVuA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=BnfeoEpw6nE:U2xhteXMVuA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=BnfeoEpw6nE:U2xhteXMVuA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=BnfeoEpw6nE:U2xhteXMVuA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=BnfeoEpw6nE:U2xhteXMVuA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=BnfeoEpw6nE:U2xhteXMVuA:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=BnfeoEpw6nE:U2xhteXMVuA:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2008/12/12/htaccess-common-useful-configurations/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2008/12/12/htaccess-common-useful-configurations/</feedburner:origLink></item>
		<item>
		<title>Building an Effective Website</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/ClvDD9XQC2o/</link>
		<comments>http://blog.intellitechitsolutions.com/2008/06/13/building-an-effective-website/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 07:53:36 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2008/06/13/building-an-effective-website/</guid>
		<description><![CDATA[Having a website presense in this day and age has become more of a necessity rather then a need? You ask why? Where is the first place you would think of if you wanted to ...]]></description>
			<content:encoded><![CDATA[<p>Having a website presense in this day and age has become more of a necessity rather then a need? You ask why? Where is the first place you would think of if you wanted to find out the <a href="http://www.petrolprices.com/">cheapest fuel price</a> in a given postcode area or region? Well, I guess you could make a few phone calls and try, but using the internet would be your best bet!<br />
Individuals (and organisations) build websites for various reasons, some of which include wanting to have a &#8220;web presence&#8221;, to showcase their latest product, to allow them to talk about their services (professional or otherwise), and mainly because they need to use an electronic means of communication with the inter-connected world we live in today - namely via e-mail.</p>
<p>So, how do you build an effective website? Read on &#8230;.</p>
<p><strong>Intended Audience</strong><br />
WHO are you building the site for? If you are building a site which is selling or promoting new vehicles, what is your target audience?<br />
Any website needs to have a focus area or group as there are countless websites on the internet today and website visitors who may &#8220;land&#8221; on your particular site, WILL only take a number of seconds to decide whether your site has what THEY are looking for or not, before they move on to the next site (perhaps your competitors&#8217;). Therefore, the saying &#8220;First impressions&#8230;&#8221; make the difference between a &#8220;conversion&#8221; or a &#8220;bounce&#8221;!<br />
How to ensure your site does not bounce a visitor? Well, ensure you maintain a clear focus, again, on the intended audience, and the very first few lines delivers in a nutshell, WHAT you are trying to do, at a level which the VISITOR is going to appreciate and easily understand.</p>
<p>The easiest way to understand what makes a site &#8220;tick&#8221; is to use the internet search engines - type in your question, keyword, or phrase relating to the type of product / service which you intend on marketing or selling through your website, and let the search engine do the work for you. Looking at the search engines&#8217; returned results, would give you a good idea of what makes a site listed at position 1 more attractive to visitors, compared to a site listed at position 20 (or even lower)!</p>
<p>Tired of doing all the work - why not have a site professionally designed? <a href="http://www.intellitechitsolutions.com/contacts.html"><strong>Get a FREE, NO-Obligation quote today!</strong></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=ClvDD9XQC2o:t7wQ8PTcK54:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=ClvDD9XQC2o:t7wQ8PTcK54:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=ClvDD9XQC2o:t7wQ8PTcK54:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=ClvDD9XQC2o:t7wQ8PTcK54:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=ClvDD9XQC2o:t7wQ8PTcK54:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=ClvDD9XQC2o:t7wQ8PTcK54:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=ClvDD9XQC2o:t7wQ8PTcK54:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=ClvDD9XQC2o:t7wQ8PTcK54:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2008/06/13/building-an-effective-website/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2008/06/13/building-an-effective-website/</feedburner:origLink></item>
		<item>
		<title>Quarter of UK businesses do not have disaster recovery</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/l64gTU7JPPc/</link>
		<comments>http://blog.intellitechitsolutions.com/2008/04/14/quarter-of-uk-businesses-do-not-have-disaster-recovery/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 13:41:17 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2008/04/14/quarter-of-uk-businesses-do-not-have-disaster-recovery/</guid>
		<description><![CDATA[More than a quarter of UK companies still do not have a disaster recovery plan on their IT systems.
Early findings from the Department for Business, Enterprise and Regulatory Reform&#8217;s 2008 Information Security Breaches survey (ISBS) ...]]></description>
			<content:encoded><![CDATA[<p>More than a quarter of UK companies still do not have a disaster recovery plan on their IT systems.</p>
<p>Early findings from the Department for Business, Enterprise and Regulatory Reform&#8217;s 2008 Information Security Breaches survey (ISBS) found that, while most companies back up their systems and data, 28 per cent still have no disaster recovery plan in place.</p>
<p>The survey, which is conducted by PricewaterhouseCoopers, also reported that half of the companies with security plans failed to test them, raising concerns for the security measures in place.</p>
<p>This is despite the fact that 58 per cent of the businesses polled felt that they would suffer &#8217;significant business disruption&#8217; if they lost a day on their IT systems.</p>
<p>PricewaterhouseCoopers partner Chris Potter said: &#8216;The number of companies with a disaster recovery plan has gone up. However, experience shows that plans are only effective if regularly tested.&#8217;</p>
<p>He added that, while it was encouraging to see the majority of companies making <a href="http://www.datavaultuk.com">backups off-site</a>, it should not take an incident to raise awareness.</p>
<p>The full results of the ISBS will be announced on April 22nd.</p>
<p>Published in: <a href="http://www.bcs.org/server.php?show=conWebDoc.18591">BCS</a> 7th April 2008</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=l64gTU7JPPc:-3VuVk5BJxE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=l64gTU7JPPc:-3VuVk5BJxE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=l64gTU7JPPc:-3VuVk5BJxE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=l64gTU7JPPc:-3VuVk5BJxE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=l64gTU7JPPc:-3VuVk5BJxE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=l64gTU7JPPc:-3VuVk5BJxE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=l64gTU7JPPc:-3VuVk5BJxE:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=l64gTU7JPPc:-3VuVk5BJxE:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2008/04/14/quarter-of-uk-businesses-do-not-have-disaster-recovery/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2008/04/14/quarter-of-uk-businesses-do-not-have-disaster-recovery/</feedburner:origLink></item>
		<item>
		<title>Why is Computer Backup Important?</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/gF3qXxWb9_U/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/09/28/why-is-computer-backup-important/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 08:22:54 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/09/28/why-is-computer-backup-important/</guid>
		<description><![CDATA[If you&#8217;ve ever been in a situation in which you&#8217;ve almost completed an important project, only to have your computer spontaneously crash seconds before hitting the &#8220;save&#8221; button, you understand how frustrating losing your data ...]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever been in a situation in which you&#8217;ve almost completed an important project, only to have your computer spontaneously crash seconds before hitting the &#8220;save&#8221; button, you understand how frustrating losing your data can be. </p>
<p>Now, imagine losing all your important files - everything from business files, to family photos, to your tax returns - permanently. Although many of us prefer to adhere to the mantra of &#8220;it&#8217;ll never happen to me&#8221;, the truth is, it could. And as computers continue to become the principle way in which many people conduct important transactions, this type of thinking is becoming increasingly risky. </p>
<p>What&#8217;s worse, the modern computer is ever more vulnerable to the imminent threats multiplying on the Internet - everything from adware, to spyware, to viruses. In fact, in 2003 alone, the number of computer viruses increased by 11%. </p>
<p><strong>Do I Need to Backup All of my Computer Data?</strong><br />
The short answer to this question is no, you do not need to back up all of the files on your computer. However, there are certain files you should definitely backup, so that in the event your computer decides it&#8217;s time is up, you won&#8217;t be at a total loss. </p>
<p>So just what files should you be backing up? Although the choice is ultimately a personal one, here are some suggestions: </p>
<p>Information and files relating to banking or other financial transactions<br />
Digital photos<br />
Purchased/downloaded music from the Internet<br />
Purchased/downloaded software from the Internet<br />
Important work/school projects<br />
Email contact list<br />
Internet browser bookmarks</p>
<p><strong>Where is the Safest Place to Store My Important Computer Data?</strong><br />
Depending on what backup software you use, some will limit the locations from which your data will be stored. For example, they may only backup data found in the following locations on your PC. </p>
<p>\My Documents and subdirectories on any drive, except for My Videos, My Pictures, and My Music<br />
C:\Documents and settings and subdirectories<br />
C:\Windows\favorites<br />
C:\Windows\profiles<br />
Outlook Personal Folders (pst files) </p>
<p>For this reason, it is generally recommended that you store your most important files in your &#8220;My Documents&#8221; folder. </p>
<p>Although our work, family, and social obligations often fill our days, the excuse of not having sufficient time to backup your computer is simply not a worthy one. With the backup software currently available, it has never been easier or faster to ensure your files are safe and secure. Thats why, an <a href="http://www.datavaultuk.com/">online (offsite) backup </a>solution is the most prefered method of faster, safer and secure backups being used today.</p>
<p>Online or sometimes referred to as &#8220;offsite&#8221; as the data is backed up to a remote location, is the up and coming trend, with data hosting costs reducing, and bandwidth costs reducing with the coming of high speed internet connections (Fibre, ADSL, SDSL, Dedicated ISDN, etc), secure offsite backup is on the rise. But, be careful on the provider you choose!</p>
<p>Very few providers can actually &#8220;guarantee&#8221; your data or it&#8217;s safety! With the enforcement of various data protection legislations, the privacy and security of your data should be the utmost in the minds of your online backup provider. DataVault (UK), part of USDataVault provides just that! <a href="http://www.datavaultuk.com">Visit their website </a>for more information, or to sign-up for your FREE, NO-Obligation, and NO Payment information, <a href="http://www.datavaultuk.com/demo/">FREE 30 DAY Online Backup Trial</a>! </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=gF3qXxWb9_U:lve0i-_bhyo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=gF3qXxWb9_U:lve0i-_bhyo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=gF3qXxWb9_U:lve0i-_bhyo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=gF3qXxWb9_U:lve0i-_bhyo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=gF3qXxWb9_U:lve0i-_bhyo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=gF3qXxWb9_U:lve0i-_bhyo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=gF3qXxWb9_U:lve0i-_bhyo:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=gF3qXxWb9_U:lve0i-_bhyo:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/09/28/why-is-computer-backup-important/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/09/28/why-is-computer-backup-important/</feedburner:origLink></item>
		<item>
		<title>Introduction to Search Engine Marketing</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/9gjE7iRcHMM/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/09/10/introduction-to-search-engine-marketing/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 09:24:23 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[SEO &amp; SEM]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/09/10/introduction-to-search-engine-marketing/</guid>
		<description><![CDATA[Search Engine Marketing – Opportunities and Risks
Search engine marketing (SEM) is the single biggest opportunity in online marketing, which is unsurprising given the growing popularity of search engines for researching products, services and organizations. In ...]]></description>
			<content:encoded><![CDATA[<p><strong>Search Engine Marketing – Opportunities and Risks</strong><br />
Search engine marketing (SEM) is the single biggest opportunity in online marketing, which is unsurprising given the growing popularity of search engines for researching products, services and organizations. In this section we will set the scene…</p>
<p><strong>Where are we at?</strong></p>
<p>Search usage is continuing to rise among consumers and professionals, who use search engines like Google and Yahoo to find what they’re looking for.</p>
<p><strong>So what’s the big challenge? </strong></p>
<p>Tapping into the searching behaviours of your audience and figuring out which keywords you need to focus on requires great tenacity. Not to mention securing top rankings for your chosen keywords. If you have tried SEO you’ll know how tricky this can be.</p>
<p>Constant innovations from the rival search engines, coupled with increased activity from your competitors, means that you have to identify the right approaches and deploy the right resources to rank well.</p>
<p><strong>And the risks…?</strong></p>
<p>You are probably aware about the risks of SEM. Since most search engine traffic typically originates from one source (typically ‘The big G’, aka Google) there is a significant risk that algorithm changes can seriously dent your traffic.</p>
<p>We’ve all heard the horror stories, about being top one day and nowhere the next, but how do you ensure this doesn’t happen to you?</p>
<p>On top of all that you also need to manage the risks of pages not being included in the search engine, or of being barred completely for infringing its guidelines.</p>
<p><strong>Where do I start?</strong></p>
<p>You’ve already started. We created this guide to provide a super-comprehensive, hype-free compilation of best practice in SEM. Digest it in chunks, then act accordingly. And remember to educate agencies and colleagues along the way (no file-sharing though…!).</p>
<p>Most of this guide is aimed at helping you perform well in the organic search results, although there is some crossover with paid-search (which we will deal with in greater detail in a separate report).</p>
<p>By reading this guide you can maximise your opportunities from SEM while minimising your risks. Shall we continue…?</p>
<p><strong>Why is search marketing so important?</strong><br />
Web users love to search. They use the main search engines like Google, Yahoo!, MSN Search and Ask to find one thing only – information.</p>
<p><strong>What sort of information are they looking for?</strong></p>
<p>Clearly this depends on the individual. They might be looking for entertainment news, or hunting for product reviews, or trying to compare vendors and services, or seeking their soulmate, or buying a second-hand car. All these goals can start with a simple search query.</p>
<p>The use of keywords or keyphrases (combining several keywords) helps users find exactly what they want. Modern search engines are generally great at delivering relevant results to users.</p>
<p>Relevance is the mantra of all search engine engineers.</p>
<p><em><strong>A word from our resident lexicologist…</strong></em></p>
<p>Understanding keyphrases enables marketers at companies to target users showing intent or interest in their products.</p>
<p>Notice that we say ‘keyphrase’ (short for ‘keyword phrase’) rather than ‘keyword’. This is because search engines such as Google attribute more relevance when there is an exact phrase match on a web page (a phrase that matches the user’s search term).</p>
<p>Search engines also assess other occurrences of the keywords and synonyms on the page, and also those websites / pages linking to a page. We’ll get onto that in due course…</p>
<p><strong>So how big is search?</strong></p>
<p>The number of searches by people trying to find information is still growing dramatically. Nielsen//NetRatings reported that there were 5.7 billion searches in the US in January 2006, a 39% year-on-year increase from 4.1 billion in January 2005 . Furthermore, the number of searches in the US is more than 183 million per day.</p>
<p><strong>Examples:</strong></p>
<p>Look at the examples in Table 1 to see the volume of monthly searches in the UK for some generic keywords.</p>
<p>The numbers in Table 1 are huge in any country, but it gets better; most users narrow their searches using phrases like ‘free online banking’, ‘cuba holidays’ and ‘ski jackets’.</p>
<p>Table 1 Volume of searches for single keywords in a single month<br />
Keyword UK daily clicks Total estimated UK searches on Google Overture UK searches<br />
Online banking 120 72,000 142,324<br />
HSBC 730 438,000 197,577<br />
Holidays 12,000 720,0000 1,041,441 *<br />
Thomas Cook 230 138,000 67,228<br />
Clothing 6,600 3,960,000 327,988<br />
Debenhams 100 60,000 292,839<br />
CRM 79 47,400 17,562<br />
Oracle 270 162,000 6,476</p>
<p>Notes:<br />
1. Google estimates from Google Traffic Estimator available through Google Adwords for UK, January 2006. Total Google searches based on assuming that on average Position 1 ad slot receives 5% clickthrough rate, so total searches 20 times this (actual clickthrough will vary by keyphrase, e.g. highest for brands).</p>
<p>2. Overture UK search advertising network main search sources included Yahoo!, MSN and Wanadoo favoured by consumers rather than business people which results in different values for CRM and Oracle. Includes both singular and plural. * Includes singular version of word.</p>
<p>3. Both include non-human, software generated searches from link tracking, rank checking and click fraud.tools so overestimate actual searches by people.</p>
<p>Marketers are increasingly investing in search engine marketing as a result of the changes in consumer behaviour indicated by Table 1, with billions of dollars spent annually on search engine marketing.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=9gjE7iRcHMM:XL7ct8SLfIk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=9gjE7iRcHMM:XL7ct8SLfIk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=9gjE7iRcHMM:XL7ct8SLfIk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=9gjE7iRcHMM:XL7ct8SLfIk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=9gjE7iRcHMM:XL7ct8SLfIk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=9gjE7iRcHMM:XL7ct8SLfIk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=9gjE7iRcHMM:XL7ct8SLfIk:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=9gjE7iRcHMM:XL7ct8SLfIk:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/09/10/introduction-to-search-engine-marketing/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/09/10/introduction-to-search-engine-marketing/</feedburner:origLink></item>
		<item>
		<title>Home Office to target gadget security?</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/R19Lo4MZH00/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/05/02/home-office-to-target-gadget-security/#comments</comments>
		<pubDate>Wed, 02 May 2007 05:43:21 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[InfoSec]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/05/02/home-office-to-target-gadget-security/</guid>
		<description><![CDATA[BCS - 01/05/2007
Apple and Sony could be enlisted by home secretary John Reid in a bid to boost security features in electronic devices, according to reports.
A spokesman for the Home Office indicated that Mr Reid ...]]></description>
			<content:encoded><![CDATA[<p>BCS - 01/05/2007</p>
<p>Apple and Sony could be enlisted by home secretary John Reid in a bid to boost security features in electronic devices, according to reports.</p>
<p>A spokesman for the Home Office indicated that Mr Reid is set to approach the two firms in the next few weeks to join a summit that already includes a number of mobile phone manufacturers, reports Reuters.</p>
<p>Items such as mp3 players and mobile phones could feature more anti-theft specifications as a result of these relationships between the Home Office and manufacturers.</p>
<p>&#8216;During the coming week we&#8217;ll be drawing up a list of other manufacturers who will be the best companies to include for the summit,&#8217; the spokesman commented.</p>
<p>Mr Reid told the BBC&#8217;s Sunday AM radio show last week that criminals tend to &#8216;move on&#8217; when it comes to stealing electronic gadgets, with security advances in one area often leading thieves to target other items, he said.</p>
<p>What about Data Security? We have the solution! <a href="http://www.securestix.co.uk">SecureStix Biometric Flash Drives</a></p>
<p><a href="http://www.intellitechitsolutions.com/">Intellitech I.T. Solutions Ltd. - &#8220;Your Total InfoTech Provider&#8221;</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=R19Lo4MZH00:H6I9lZyjF38:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=R19Lo4MZH00:H6I9lZyjF38:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=R19Lo4MZH00:H6I9lZyjF38:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=R19Lo4MZH00:H6I9lZyjF38:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=R19Lo4MZH00:H6I9lZyjF38:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=R19Lo4MZH00:H6I9lZyjF38:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=R19Lo4MZH00:H6I9lZyjF38:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=R19Lo4MZH00:H6I9lZyjF38:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/05/02/home-office-to-target-gadget-security/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/05/02/home-office-to-target-gadget-security/</feedburner:origLink></item>
		<item>
		<title>UK data centres ‘in crisis’</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/F85y5hYfSE0/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/05/02/uk-data-centres-in-crisis/#comments</comments>
		<pubDate>Wed, 02 May 2007 05:41:02 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[InfoSec]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/05/02/uk-data-centres-in-crisis/</guid>
		<description><![CDATA[BCS - 01/05/2007
The UK&#8217;s data centres are suffering from a lack of capacity to cope with increasing IT demand, according to new research.
About 43 per cent of data centres are seeing their physical space dwindle ...]]></description>
			<content:encoded><![CDATA[<p>BCS - 01/05/2007</p>
<p>The UK&#8217;s data centres are suffering from a lack of capacity to cope with increasing IT demand, according to new research.</p>
<p>About 43 per cent of data centres are seeing their physical space dwindle while power density is rising to a record high, the study by the Aperture Research Institute has revealed.</p>
<p>Over a third of the managers surveyed said their average rack uses between seven and 18 kilowatts or more, with the majority of respondents stating that at least three-quarters of data centre space is already reserved for IT hardware.</p>
<p>In addition, the various issues surrounding the use of blade servers mean that human error is increasingly leading to outages, the report warned.</p>
<p>&#8216;There&#8217;s a gap between IT and data centre facilities that&#8217;s resulting in a rapid increase in high density equipment without thinking about the ability of a data centre to reliably support that capacity,&#8217; commented Steve Yellen, vice president of marketing at Aperture.</p>
<p>Consultancy firm BroadGroup recently issued research findings suggesting that service revenues across European data centres are set to surpass the â‚¬3 billion (Â£2 billion) mark over the next two years.</p>
<p><a href="http://www.intellitech-hosting.com">Intellitech I.T. Solutions Ltd. - &#8220;Your Total InfoTech Provider&#8221;</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=F85y5hYfSE0:WSv4mOCMTHI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=F85y5hYfSE0:WSv4mOCMTHI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=F85y5hYfSE0:WSv4mOCMTHI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=F85y5hYfSE0:WSv4mOCMTHI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=F85y5hYfSE0:WSv4mOCMTHI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=F85y5hYfSE0:WSv4mOCMTHI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=F85y5hYfSE0:WSv4mOCMTHI:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=F85y5hYfSE0:WSv4mOCMTHI:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/05/02/uk-data-centres-in-crisis/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/05/02/uk-data-centres-in-crisis/</feedburner:origLink></item>
		<item>
		<title>Beware of fake security software, warns firm</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/wsA3HOvJPGU/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/05/02/beware-of-fake-security-software-warns-firm/#comments</comments>
		<pubDate>Wed, 02 May 2007 05:38:59 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/05/02/beware-of-fake-security-software-warns-firm/</guid>
		<description><![CDATA[BCS - 26/04/2007
Hackers are increasingly attempting to trick consumers into buying software that they believe to be genuine anti-spyware applications, according to one firm.
There are currently four fake protection applications on the market for every ...]]></description>
			<content:encoded><![CDATA[<p>BCS - 26/04/2007</p>
<p>Hackers are increasingly attempting to trick consumers into buying software that they believe to be genuine anti-spyware applications, according to one firm.</p>
<p>There are currently four fake protection applications on the market for every one genuine product, download site Snapfiles told Vnunet.com.</p>
<p>This fake software can appear to be genuine to users while providing false scan results, failing to clean the system of existing spyware and occasionally installing malware onto the user&#8217;s PC itself.</p>
<p>According to Harvard Business School assistant professor and spyware researcher Ben Edelman, fake anti-spyware software is &#8216;a huge problem&#8217;, with another download site, Tucows, also telling Vnunet.com that it believes the bulk of security software to be fake.</p>
<p>Statistics from the Federation Against Software Theft, which was founded in 1984, show that British firms have paid more than Â£1.8 million in fines for using unlicensed applications to the Business Software Alliance.</p>
<p><a href="http://www.intellitechitsolutions.com">Intellitech I.T. Solutions Ltd. - &#8220;Your Total InfoTech Provider&#8221;</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=wsA3HOvJPGU:XKyLEyJK7JI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=wsA3HOvJPGU:XKyLEyJK7JI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=wsA3HOvJPGU:XKyLEyJK7JI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=wsA3HOvJPGU:XKyLEyJK7JI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=wsA3HOvJPGU:XKyLEyJK7JI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=wsA3HOvJPGU:XKyLEyJK7JI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=wsA3HOvJPGU:XKyLEyJK7JI:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=wsA3HOvJPGU:XKyLEyJK7JI:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/05/02/beware-of-fake-security-software-warns-firm/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/05/02/beware-of-fake-security-software-warns-firm/</feedburner:origLink></item>
		<item>
		<title>Survey Reveals Compliance of Company Websites</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/mZ754_7gchY/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/05/02/survey-reveals-compliance-of-company-websites/#comments</comments>
		<pubDate>Wed, 02 May 2007 05:37:06 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[InfoSec]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/05/02/survey-reveals-compliance-of-company-websites/</guid>
		<description><![CDATA[BCS - 27/04/2007
Research reveals that a significant percentage of company websites are not in compliance with some important regulatory demands, subsequently leaving firms at risk of facing cash fines.
In a survey of 106 businesses carried ...]]></description>
			<content:encoded><![CDATA[<p>BCS - 27/04/2007</p>
<p>Research reveals that a significant percentage of company websites are not in compliance with some important regulatory demands, subsequently leaving firms at risk of facing cash fines.</p>
<p>In a survey of 106 businesses carried out by ClearPeople 70 were found to be in breach of company law, failing to disclose information such as company number and registered office details, for instance.</p>
<p>In total, only 37 companies polled were in direct compliance with current rules, suggesting that more needs to be done to bring the majority of companies up to speed. It is recommended that companies achieve this by displaying the relevant information on their websites.</p>
<p>&#8216;The majority of companies had neglected to include company registration number while only a few (less than ten) had left out a valid email address or the physical address to the registered office,&#8217; explained Thomas Hageman of ClearPeople to Freelance UK.</p>
<p>&#8216;I would expect the larger listed UK companies to be more compliant and small to mid-sized companies to be, possibly, even less compliant.&#8217;</p>
<p><a href="http://www.intellitechitsolutions.com">Intellitech I.T. Solutions Ltd. - &#8220;Your Total InfoTech Provider&#8221;</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=mZ754_7gchY:8RRxiHUNGFI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=mZ754_7gchY:8RRxiHUNGFI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=mZ754_7gchY:8RRxiHUNGFI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=mZ754_7gchY:8RRxiHUNGFI:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=mZ754_7gchY:8RRxiHUNGFI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=mZ754_7gchY:8RRxiHUNGFI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=mZ754_7gchY:8RRxiHUNGFI:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=mZ754_7gchY:8RRxiHUNGFI:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/05/02/survey-reveals-compliance-of-company-websites/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/05/02/survey-reveals-compliance-of-company-websites/</feedburner:origLink></item>
		<item>
		<title>SEO with Google Sitemaps</title>
		<link>http://feedproxy.google.com/~r/IntellitechItSolutionsLtdBlogsite/~3/Y7VWSeUAZxY/</link>
		<comments>http://blog.intellitechitsolutions.com/2007/05/01/seo-with-google-sitemaps/#comments</comments>
		<pubDate>Tue, 01 May 2007 06:54:04 +0000</pubDate>
		<dc:creator>Faiz Nazerali</dc:creator>
		
		<category><![CDATA[SEO &amp; SEM]]></category>

		<guid isPermaLink="false">http://blog.intellitechitsolutions.com/2007/05/01/seo-with-google-sitemaps/</guid>
		<description><![CDATA[What is a Google Sitemap? by Matthew Coers
A Google Sitemap is a very simple XML document that lists all the pages in your website, but the Google Sitemaps program is actually much more important than ...]]></description>
			<content:encoded><![CDATA[<p><strong>What is a Google Sitemap?</strong> <em>by Matthew Coers</em><br />
A Google Sitemap is a very simple <strong>XML</strong> document that lists all the pages in your website, but the Google Sitemaps program is actually much more important than that. In fact, the Sitemaps program provides a little peek inside Google&#8217;s mind - and it can tell you a lot about what Google thinks of your website!</p>
<p><strong>Why Should You Use Google Sitemaps?</strong></p>
<p>Until Google Sitemaps was released in the summer of 2005, optimising a site for Google was a guessing game at best. A website&#8217;s page might be deleted from the index, and the Webmaster had no idea why. Alternatively, a site&#8217;s content could be scanned, but because of the peculiarities of the algorithm, the only pages that would rank well might be the &#8220;About Us&#8221; page, or the company&#8217;s press releases.<br />
<span id="more-12"></span></p>
<p>As webmasters we were at the whim of Googlebot, the seemingly arbitrary algorithmic kingmaker that could make or break a website overnight through shifts in search engine positioning. There was no way to communicate with Google about a website - either to understand what was wrong with it, or to tell Google when something had been updated.</p>
<p>That all changed about a year ago when Google released Sitemaps, but the program really became useful in February of 2006 when Google updated it with a couple new tools.</p>
<p>So, what exactly is the Google Sitemaps program, and how can you use it to improve the position of your website? Well, there are essentially two reasons to use Google Sitemaps:</p>
<blockquote><p>1. Sitemaps provide you with a way to tell Google valuable information about your website.</p>
<p>2. You can use Sitemaps to learn what Google thinks about your website.</p></blockquote>
<p><strong>What You Can Tell Google About Your Site</strong></p>
<p>Believe it or not, Google is concerned about making sure webmasters have a way of communicating information that is important about their sites. Although Googlebot does a pretty decent job of finding and cataloging web pages, it has very little ability to rate the relative importance of one page versus another. After all, many important pages on the Internet are not properly &#8220;optimised&#8221;, and many of the people who couldn&#8217;t care less about spending their time on linking campaigns create some of the best content.</p>
<p>Therefore, Google gives you the ability to tell them on a scale of 0.0 to 1.0 how important a given page is relative to all the others. Using this system, you might tell Google that your home page is a 1.0, each of your product sections is a 0.8, and each of your individual product pages is a 0.5. Pages like your company&#8217;s address and contact information might only rate a 0.2.</p>
<p>You can also tell Google how often your pages are updated and the date that each page was last modified. For example your home page might be updated every day, while a particular product page might only be updated on an annual basis.</p>
<p><strong>What Google Can Tell You About Your Site</strong></p>
<p>Having the ability to tell Google all this information is important, but you don&#8217;t even need to create a sitemap file in order to enjoy some of the perks of having a Google Sitemaps account.</p>
<p>That&#8217;s because even without a Sitemap file, you can still learn about any errors that Googlebot has found on your website. As you probably know, your site doesn&#8217;t have to be &#8220;broken&#8221; for a robot to have trouble crawling it&#8217;s pages. Google Sitemaps will tell you about pages it was unable to crawl and links it was unable to follow. Therefore, you can see where these problems are and fix them before your pages get deleted from the index.</p>
<p>You can also get information on the types of searches people are using to find your website. Of course, most website analytics tools will give this information to you anyway, but if the tool you use doesn&#8217;t have this feature, then it&#8217;s always nice to get it for free from Google.</p>
<p>But the best part of the Sitemaps program is the Page analysis section that was added in February of 2006. This page gives you two lists of words. The first list contains the words that Googlebot associates with your website based on content on your site. The second list contains words that Googlebot has found linking to your site!</p>
<p>Unfortunately, Google limits the number of words in each list to 20. As a consequence, the inbound links column is partly wasted by words such as &#8220;http&#8221;, &#8220;www&#8221;, and &#8220;com&#8221; - terms that apply equally to all websites (hey Google, how about suppressing those terms from the report?). That said, this list does provide you with a way to judge the effectiveness of your offsite optimisation efforts.</p>
<p>When you compare these two lists, you can get an understanding of what Google thinks your website is about. If the words on your Site Content column are not really what you want Googlebot to think about your site, then you know you need to tweak your website&#8217;s copy to make it more focused on your core competency.</p>
<p>If, on the other hand your inbound links don&#8217;t contain any keywords that you want to rank well for, then perhaps you should focus your efforts in that direction.</p>
<p>Above all else, you really want these two lists to agree. You want your inbound linked words to match up to the site content words. This means that Google has a clear understanding of the focus of your website.</p>
<p><strong>Additional Benefits of the Sitemaps Program</strong></p>
<p>Google has even started notifying Sitemaps-participating Webmasters if they are breaking any of Google&#8217;s Webmaster Guidelines. This can be very valuable information if your site suddenly becomes de-listed on Google and you don&#8217;t know why.</p>
<p>Only Sitemaps participants can get this information, and it is only provided at Google&#8217;s discretion. In fact, Google will NOT notify you if you are creating worthless websites that offer no original content, or if you are creating thousands of doorway pages that are redirecting to other web sites. Google doesn&#8217;t want to give the sp@ammers any clues as to how to improve their techniques.</p>
<p><strong>How Do You Get Started with Google Site Maps?</strong></p>
<p>The first thing you must do is obtain a Google Account. If you already have a Gmail, Adsense, or Adwords account, then you are all set. If not, you can register an account by visiting the Google Accounts page.</p>
<p>You can also use an <a href="http://www.intellitechitsolutions.com/seo.html">SEO company </a>to optimise and manage your sitemaps.</p>
<p>Building your sitemap file is pretty easy to do if you are familiar with XML, and if you aren&#8217;t you can always use a third-party tool such as the ones that are listed on Google&#8217;s website. Google also has a &#8220;Sitemap Generator&#8221; that you can download and install on your server, but unless you are fairly adept at managing Python scripts, you should probably stick to the third-party tools.</p>
<p>At any rate, once you have your Google Account and your Sitemap file built, the rest is very easy. All you have to do is:</p>
<blockquote><p>1. Log into your account</p>
<p>2. Type your website&#8217;s URL into the &#8220;Add Site&#8221; box and click on &#8220;OK&#8221;</p>
<p>3. Click on the Manage Sites link for the website you are adding, and add your sitemap file to your account.</p></blockquote>
<p><strong>Google Sitemaps - An Excellent SEO Tool</strong></p>
<p>Google Sitemaps help Googlebot quickly find new content on your website. They allow you to tell Google what&#8217;s important, what&#8217;s new, and what changes often. The tools provided to webmasters through the program can play a vital role in helping you understand how the search engines (especially Google) view your website.</p>
<p>Using this information you can dramatically improve the position of your website and quickly clear up any issues Google finds. You can also use the tools provided by Google to gauge the effectiveness of your off-site optimisation efforts so you can better focus your time and energy on activities that bring you the most success.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=Y7VWSeUAZxY:aJtoWPZiRNk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=Y7VWSeUAZxY:aJtoWPZiRNk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=Y7VWSeUAZxY:aJtoWPZiRNk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=Y7VWSeUAZxY:aJtoWPZiRNk:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=Y7VWSeUAZxY:aJtoWPZiRNk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=Y7VWSeUAZxY:aJtoWPZiRNk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?a=Y7VWSeUAZxY:aJtoWPZiRNk:wF9xT3WuBAs"><img src="http://feeds.feedburner.com/~ff/IntellitechItSolutionsLtdBlogsite?i=Y7VWSeUAZxY:aJtoWPZiRNk:wF9xT3WuBAs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.intellitechitsolutions.com/2007/05/01/seo-with-google-sitemaps/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.intellitechitsolutions.com/2007/05/01/seo-with-google-sitemaps/</feedburner:origLink></item>
	</channel>
</rss>
