The most unusual place to find a virus.

Warning - Site Advisor

If you’re like me you probably search for just about everything online. So while I was carrying out some local research on competitors doing virus removal, the last thing I expected to find was a business website that had Spyware and Trojan viruses on it.

I mean it’s not as if it inspires confidence, is it? There they are advertising the fact that they remove viruses and spyware and I quote:

“We also aim to help keep you informed of technology alerts such as viruses, spyware and security threats that we have come across in our day to day activities. Keeping our customers informed can avoid potential events that may harm your data or even your identity.”

Along with:

“software giants such as McAfee and Symantec (Norton 360 etc) which often come preloaded when you buy a new computer are not always the best solution for ridding you from these threats.”

Since it was McAfee’s Site Advisor that pointed out and warned me about this website, I can only assume that good quality antivirus applications are missing from these tech experts computers, laptops and more importantly the webserver.

I’ve blurred the site name from the image above to help hide their shame.

12 Signs Your Business is ready for a Network or Server and how it WILL Boost the Productivity, Security, and Reliability of Your Operation.

  • Is your business limping along using outdated computers or an ad hock network that is constantly giving you problems?
  • Are you planning on employing more staff, opening a remote location or adding an additional office?
  • Are you sick and tired of dealing with issues, error messages, and downtime?

This post will reveal if a network or server is right for your business!

If like most small businesses, you buy desktop computers, phone systems, and software in a random fashion as your business operations demand it. However at some point, this patchwork of technology you’ve acquired is going to end up costing more than it would to rip out and replace everything. If you suddenly experience more in downtime, crashes, errors, and troubleshooting and ever increasing problems, it’ll not take you long to stop purchasing more software and hardware in a ad hock fashion and get serious about planning for your future growth inline with business operations so you don’t end up with a big pile of expensive hardware and software spaghetti that no longer meet your business needs.

One Big Secret To Saving Money In Business

The one big secret to saving money is on IT costs, strive for as much uniformity and functionality as possible across your communication and computer network – and the first place to start achieving this is by networking your computers, then gain extra functionality through the use of a server. If you have more than two computers that would benefit from being networked to allow sharing documents, printers, scanners, and even Internet access, then you could benefit a great deal from the simplicity, productivity, and security with a small business server. In very simple terms a server is a big and powerful computer that allows all of your other computers (known as “clients”) on the same network to access the same documents, databases, and systems they need, faster, and with fewer problems. It acts like a centralised storage area making sure data is secure, organised, and easy to backup/restore.

No… Servers Aren’t Just For Big Businesses Anymore

Originally servers only made sense for large organisations and corporations due to high cost and complexity. However, these days, servers are very affordable and easy-to-implement and even integrate with telephone systems. Technology giants are developing hardware and software specifically for a growing small business environment. If you’re not absolutely certain that having a server could help your business enough to justify the cost, below are 12 signs that your business could definitely benefit.

12 Signs That Your Business Is Ready For A Network or Small Business Server…

1. You have more than two computers that need to share office equipment or resources such as; documents, databases,  printers, scanners, and internet access.

2. You have vital “mission critical” files and data/files on more than one computer that need to be secured from loss, corruption, or unauthorized access.

3. You would like to have secure access to your business files while your out of the office or working from home.

4. You need to backup critical files on more than one computer, and be able to restore accidentally deleted files or revert to previous versions of files.

5. You need a CRM (customer relationship management) system or accounting program to manage, communicate, and record activity with your growing list of clients and suppliers.

6. You need to manage different versions of one file.

7. You need a central communication system that makes it easy to arrange group meetings and easily share information with employees, suppliers, and customers.

8. You need to allow all employees to share databases and other software.

9. You would like to send group faxes and e-mail broadcasts to customers.

10. You want to save money by hosting your own company website and e-mail.

11. You want to control employees’ access to sensitive financial records and personnel data as well as monitor internet access.

12. You would value a central access point for all information without having to hunt down various files on various computers on your network.

The Concept of the Slight Edge

All master craftsmen demand excellent tools to complete their work, this is especially true when looked at from the perspective of a small growing business. Everybody knows that the best tools allow you to focus on creating the next masterpiece rather than being sidetracked, frustrated, or limited by the tools you are using. Computers, software, and office equipment are the tools you use every day to create your greatest masterpiece: your business. If technology in the office is not simplifying your business and making it easier for you to get more done, then it’s costing you a lot more than the price of a server. There is no shortage of white papers on the topic of ROI (return on investment) for technology upgrades, you know as well as I that this is truly a hard cost to quantify, while there certainly will be a cost, it depends very much on your business operations and how you use computers, technology and the Internet in your office, this cost may be significant.

The “Latte” Factor

In his book “Automatic Millionaire”, the author David Bach talks about the “latte” factor. Put simply, people end up financially broke not because of the big purchases they make, but all of the small seemingly innocent day-to-day spending over the year. For example, you might not think twice about spending £3 for a cup of coffee at Costa coffee each day. Add that up over the course of a year and you realise that you’ve invested £1,095 into your local coffee shop. Imagine the return on this type of investment would on the stock market, shares in Whitbread (the parent company of Costa) from the beginning of 2009 would have translated into almost triple. Why am I telling you this?…. Well because massive loss of productivity in any business plays out exactly the same way. Think the stock investment as being the server investment: a faster processor and a faster hard drive with greater capacity allow you to open and use applications faster, saving a few minutes every hour. Information is centralised, which saves a few more minutes every hour in finding files. There are fewer crashes and errors, even disaster recovery and business continuity implementation time is reduced. Each of these little things adds up to significant employee hours saved over the course of a year. Then there’s the cost savings associated with outsourced IT support. A properly configured and maintained server and network is far easier to support and troubleshoot than a patchwork of random computers that are loosely connected. All of this translates into higher revenue from your technology investment and will no doubt impact positively on your bottom line.

Adding colapsable content to your website

OK, this pertains to the above header but could easily be adapted for your site to contain either a menu or more content, note if your using it to display a menu you’ll probably want to hide it by default.*

I’ve simply added the following to replace the original static image in my header file.

<a class="trigger" href="#">Is my header giving you headaches? - Click here to close.</a>
<div class="toggle">
<div class="block">
<a href="http://blog.grahamwalker.me"><!-- put expanding/colapsing content here --></a>
</div>
</div>

If you’re adding this code to the file that contains the <head> you might want to add the javascript to the head section at the same time.

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(".toggle").hide();
// add this line to hide by default.
$(document).ready(function(){
$("a.trigger").click(function(){
$(this).toggleClass("active").next().slideToggle("slow");
});
});
</script>

I added some additional CSS code to style the trigger link, adding the anoying blinking. 🙂

a.trigger {
color: #333333;
display: block;
float: right;
font-size: 12px;
height: 30px;
line-height: 35px;
margin: 0;
outline: medium none;
padding: 0 12px 0 0;
text-align: right;
text-decoration: blink;
width: 400px;
}
.toggle {
clear: both;
margin: 0;
padding: 0;
width: 940px;
}

Now you can save and test the page.

end tag for element “a” which is not open

Line 307, Column 130: end tag for element “a” which is not open
…s/com_joomlawatch/img.php?rand=16188' border='0' alt='' title='' /></a>

If you are trying to get your Joomla site to vaidate but you get the above error you obviously have JoomlaWatch visitor tracking installed.

To get your code to validate, navigate to /modules/mod_joomlawatch_agent/ once there open the file mod_joomlawatch_agent.php in your favorate text editor.

Go down to line 87 and delete:

echo ("</a>");

Now your website should be valid… Unless you had any other errors to begin with.

there is no attribute “onClick”

If you get the following error while validating your Joomla based website your probably using:  WebGuru’s Google Analytics Plugin v.0.6

Line 75, Column 337: there is no attribute “onClick”
…www.yourwebsite.co.uk" onClick="pageTracker._trackEvent('http://www.your…

To get this to validate, navigate to /plugins/system/ once there open the file webgurugoogleanalytics.php in your favorate text editor.

Go down to line 197 and change onClick to onclick, the line should now read:

$links[0] = str_replace('>', " onclick=\"{$function}\">", $links[0]);

Now your website should be valid… Unless you had any other errors to begin with.

Make the most of Facebook, Linkedin, Twitter as well as other social sites, at the same time…

Posting separately to multiple social networks isn’t really an option, especially when your trying to run a business.

Luckily website developers have built websites to manage all your social networking from, sites such as hootsuite.com or ping.fm

Once setup, simply post to HootSuite or Ping and it posts to all of your other networks.

Services like these save time to spend delivering or developing your business.

CubeCart 5 (wow, just wow)

I have been itching to buy CubeCart 4 for my online store (Store) 🙂 . Only thing stopping me at the minute is CubeCart 5…

The features for the new release look amazing, here are but a few :

Facebook, Google, Yahoo!, Twitter, MySpace, AOL, Windows Live/MSN/Hotmail, or any other OpenID provider login – no need force customers to register on the site, they can just use these logins.
Product image zoom – Quality products are just not justified with scaled down images, customers want to see the detail before they buy.
Google Analytics for eCommerce – Well I’ve built this into my design anyway, but I’m sure one will be better.
Geographically configurable modules – Not entirely sure how I’ll use this but it sounds like a great feature.
File manager for digital products – I want to start selling downloadable items, but I’ll need to create them first.

Don’t know if it’s still on track for this year, but I’m sure it will very quickly become top of my to do list…

  • Facebook, Google, Yahoo!, Twitter, MySpace, AOL, Windows Live/MSN/Hotmail, or any other OpenID provider login
  • Address book
  • Product quantity discounts
  • Product image zoom
  • Multiple coupons/certificates allowed at checkout
  • Newsletter archive

Internet Explorer 9 – not on XP!!!

I was going to try Internet Explorer 9 beta today, but as I need a more recent version of windows first, it’ll have to wait till I’m next on my laptop.

I wonder… are Microsoft having problems with the uptake of 7 ???

Internet Explorer 9 Beta - go away XP message

Internet Explorer 9 Beta

Well it aint going to work on me, I’m quite happy with XP on my desktop, for now…

I did want to see if the rendering issues had finnaly been resolved, as well as see what the performance was like.

A. Nonymous Mail

A strange letter came this morning for A. Ward-Winning, still a little tired and blurry eyed I thought it had been delivered to the wrong address by mistake , it was however a generic broadband advertisement from TalkTalk delivered by Royal Mail.

It cleverly used the envelope window to state: Awardwinning 24 Meg Wireless Phone and Broadband greater savings for you today.

A. Ward-Winning
24 Meg Wireless
Phone-and-Broadband
Greater Savings
4U 2DAY

I particularly like the adaptation of the standard UK Postcode format using text speak, I thought it was much better attempt than their competitors Sky.

A recent mailing of theirs was filled with loads of little flyers, considering I’m already a customer of theirs, I found this rather annoying.

I suppose these bulk mailings delivered by Royal mail should be considered very carefully, as I wouldn’t for a second imagine that Royal mail are given instructions to avoid addresses of Sky’s existing customers.

Graphics cards force users to change password!!!

Graphics cards have become so good at tackling brute force operations that experts say that even 7 character passwords will soon be too easy to crack.

The project has stated that any password less than 12 characters would soon be vulnerable.

“The number crunching abilities of graphics cards are now comparable to the multi-million dollar supercomputers built about a decade ago”

Mr Richard Boyd – Georgia Tech Research Institute

Most computer systems have seven characters as a minimum by default, so can we expect these to go up or become more complex?

I know from personal experience that people find it increasingly difficult to remember password, so remembering 12 characters would certainly be a challenge.

Any paswords can also be cracked given time and effort.  I think the solution here should be to build systems that are intelligent enough to recognise that a hacker is trying to gain access and stop them.

Load More