Archive for November, 2008



Computer Stores St Louis MO

Wednesday, November 19th, 2008

techstl.com is a website for technology people in St. Louis, MO.  It allows technology workers in St. Louis to communicate with each other, find out about technology events and promote their businesses.

They also have a section on their website that has computer stores in St Louis MO.  It is an ever growing list and is probably the most complete list of computer stores in St. Louis.  They also have a map of computer stores in St Louis so you can just open a map and see where the closest computer store is to you at a glance.  If you are a small business looking to purchase computers or computers parts, then contact us and we can help you out.

If you own a computer store or know someone that does and it isn’t listed then please contact techstl and they will add it.

Computer Stores St Louis MO

Redirecting a web page to another using a 301 redirect

Tuesday, November 18th, 2008

If you read our blog entry yesterday, we talked about using dashes over underscores when you name a web page.  So what do you do if you already named your pages incorrectly and you want to fix them?  You 301 redirect them.  You want to do this for many reasons.  First of all, doing this will automatically send all traffic to your new page.  Second and most important, this tells search engines that the web page has moved.  Doing this will transfer all of your PageRank to the new page and eventually the search engines will remove the old pages from their index.  It does take some time so you have to be patient.

Now there are many ways to do a 301 redirect.  It depends on what type of server you’re on and what type of files you’re dealing with.

PHP Redirect

This is how it is done with PHP pages.  You would basically take the content off your old, underscore pages and then put it on your new dashed pages.  Once you do that, add this code to the old page and you are good to go:

<?php
header(“HTTP/1.1 301 Moved Permanently”);
header(“Location: /new-web-page.php”);
?>

ASP Redirect

<%@ Language=VBScript %>
<%
Response.Status=”301 Moved Permanently”
Response.AddHeader “Location”,”/new-web-page.php”
%>

.htaccess

A .htaccess file is a special file that you can use on a Linux server. You can add this code to the .htaccess file.  If your site is just html pages, this is the best way to go.

Redirect 301 /old_web_page.html http://www.yourdomain.com/new-web-page.html

There are many other ways to do this with other languages, but these are the most common.  If you believe that your web pages are incorrect and you want to fix them, contact us and we can work with you to get them fixed.

Dashes vs underscores in web site URLs

Monday, November 17th, 2008

For SEO you should use dashes instead of underscores in web site URLs.  There has been a lot of debate over this and Google has said it will start seeing underscores as spaces, but it’s just better and safer to go with dashes.  The results for underscores and dashes are always different and we know for sure they see dashes as spaces.

The best time dashes would be used is in file names.  Take our Chief Technology Officer services page, the page name is chief-technology-officer.  This is to let Google know that it is 3 words, not 1.  If our page name was chief_technology_officer then Google would consider that 1 word, potentially.

But what about your domain name?  The domain name can also benefit from this, but there is a time and a place for it.  I would not use dashes in your domain name unless you had to.  If your domain name is only used to be found in search results, then I would say it would be alright.  However if this is your main domain of your business I would not use dashes unless nothing else was available.

Using Google Analytics to get statistics about your website

Wednesday, November 12th, 2008

One of the services we offer for our web design or web development customers is Google Analytics statistics.  Google has a great web statistics program that you can view to get all the information you could ever want about your website and even more.

Here is some of the information you can get using Google Analytics

  • Visits during any time period
  • Web browser information
  • Search engine information
  • User operating systems
  • User screen resolution size

If you sell products online you can track your sales, conversions and leads.  If you would like more information on getting Google Analytics statistics on your website please contact us.

Screen Resolutions

Screen Resolutions

Search Engine Source

Search Engine Source

Operating Systems

Operating Systems

Screen Resolutions

Screen Resolutions

Users browsers

Users browsers

Understanding Google PageRank

Monday, November 10th, 2008

SEOmoz has a video up discussing PageRank, what it is and how it works.  PageRank is the number that Google assigns the pages on your web site.  Since Google doesn’t release definite information about PageRank and how it works, there are a lot of theories.  We know a majority of your PageRank scores comes from backlinks (links to your web pages).  There are tons of other factors that calculate your pagerank and hopefully this video will clear at least some things up.


SEOmoz Whiteboard Friday-What’s PageRank Got to do With It? from Scott Willoughby on Vimeo.

50 web tools to monitor your competitors

Thursday, November 6th, 2008

Bschool.com has released an article titled “50 web tools to keep tabs on your competitors.”  There is actually a lot of good information in there.  One of them is Google Alerts.  We previously discussed Google Alerts for monitoring your own company.  Well you can use Google Alerts to monitor any keywords, including ones that might include your competitors name or the type of business you are in.

Check out the whole list here

Fixing error: IP-based AUTD failed to initialize.

Monday, November 3rd, 2008

After installing update MS08-037 on Small Business Server 2003 some people are noticing random problems with services.  MS08-037 is an update to help prevent DNS spoofing.  One of the problems I ran across after this update is:

IP-based AUTD failed to initialize.  Error code: [0x80004005].

and

IP-based AUTD failed to initialize because the processing of notifications could not be setup.  Error code [0x80004005].  Verify that no other applications are currently bound to UDP port [2883], or try specifying a different port number.

These errors were in the event viewer and the Source of them was Server ActiveSync.

The way to fix this is to add these ports to the HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\ReservedPorts registry key:

  • 1645-1646 – Used by IAS
  • 1701-1701 – Used by L2TP
  • 1812-1813 – Used by IAS
  • 2883-2883 – Used by AUTD
  • 4500-4500 – Used by IPSEC

Don’t delete anything in this key, you can just add the new ports below the current ones so that it looks like this:

After you add the ports, reboot the server and you’re good to go.

Please note that this fix should be a preventative measure.  Even though the update was released in July 2008 and you haven’t had any issues yet, that doesn’t mean that it won’t happen.  It could take months or years but it could still pop up down the road.

You can find more information about this at technet:

http://support.microsoft.com/kb/956189

http://support.microsoft.com/kb/956188