Redirect Issue with IIS

I'm not sure if this is just an IIS 6.0 issue, but that's where I just ran into it.

A user of the SEO Browser contacted us today because the browser couldn't load his site. That wouldn't have been so bad if it wasn't for Google ALSO not apparently being able to load his site (it was unindexed). However, browsers loaded it just fine.

It took some investigating, but I finally found the issue. The site was set to redirect visitors to the domain root to an internal page. No problem. The redirect was the default 302 that IIS uses. Ok, a bit of a problem, but not enough to stop Google or the SEO Browser from loading it.

But buried in the HTTP headers ( I used SEO Consultants "Check Server Headers Tool") I found this directive:

FollowRedirects=False; Server requested redirection, but sent no new location.

Oops. If you set a redirect (301 or 302) but then say that you should not follow any redirects, strange things happen to your site as the two incompatible directives play out.

In this case, browsers (Firefox and IE) followed the redirect and ignored the server directive saying they should not.

Spiders (Googlebot and the SEO Browser) acknowledged that a redirect existed, but also acknowledged that the server was telling them not to follow it. Therefore they did what they were told and stopped.

Naturally, the fix is a very simple checkbox telling IIS to set the FollowRedirects=False to FollowRedirects=True.

I've never encountered this issue before, but I thought I'd share, since it might help someone out there in the future. I'll see if I can have this issue detected by the SEO Browser, as well.

Ian

PS I need to blog more often. I feel a New Years Resolution coming on...

Cannot start Microsoft Outlook. Cannot open the Outlook window

M$ (automatically) killed my Outlook 2007 last night on my Windows Vista 64 system. It was one of those "Windows Update is finished so we restarted your computer for you even though you didn't say we could" issues, followed by the usual Microsoft screw-up of hosing the system they were supposed to be fixing and protecting.

I'd be a little more patient with them if this wasn't caused directly by following their RECOMMENDED procedures. Yeah, I could disable updates, etc, but that rather defeats the purpose of updates in the first place. No, this is totally on M$. Their recommendations, their update, their software, their restart, their screwup.

They don't get off the hook for me not disabling updates any more than rapists don't get off the hook because their victims don't wear chastity belts. (Well, that might be an extreme analogy, but you get the drift. The bad guy is at fault, period).

But, of course, it's still MY problem.*

The error is simple. Office works fine, but any attempt to launch Outlook results in this error: "Cannot start Microsoft Outlook. Cannot open the Outlook window".

If you ask Microsoft, their answer is to use the system restore. Don't get me started on their answer being for me to undo their screw-ups. One guy was told to wipe his system!

Anyway, a much better answer by a user called Dayneb in the new (to me) Microsoft Answers forum was something far simpler:

Start->run..then type the following -> Outlook.exe /resetnavpane

In some cases, you have to make sure you are in the Office Directory on your hard drive for this to work, but work it does. Instantly and easily. Thanks Dayneb!

I'd thank MS for the Answers Forum, but that just feels wrong, since I should not have needed the answer in the first place...

Ian

----
*Serves me right for not switching to Gmail. I'll do that as soon as I can be anywhere in the world, including airplanes and ships, and still be connected. Hopefully that will come sooner than later. I travel too much now to rely on GMail for anything other than a backup system and spam catcher.

What You (Probably) Don't Know About Redirects.

Most SEO's are taught the simple mantra that a 302 (temporary redirect) is bad, and a 301 (permanent redirect) is good.

This is wrong. Or at least, part of it is.

An SEO quoting the above to someone who is really knowledgeable in web servers will have just shot themselves in the virtual foot, and probably made their job harder, since now the server expert is more likely to dismiss other things they are saying as possibly oversimplified and misleading, too.

The Facts

The good news is that a 301 is usually what you want as an SEO, and you want to avoid 302's, so even though you may have been wrong in your ideas as to how things work, the net effect was probably correct, or at least, good enough.

As with many things that are "good enough, it works", most people never bother to look further. The rest of this article is for those who actually prefer to understand things, rather than those who just follow checklists blindly. The rest of you can stop here and be happy that 301's normally do the job you think they are doing.

A 302 actually isn't a Temporary Redirect

A 307 is. In reality, a 302 just means "Object Moved", or "Found", which, if accompanied by a target URL, browsers and servers interpret as a redirect. But with no target URL, they will happily stay there, and it's not an error.

In reality, a 303 is what most SEO's think a 302 is. A 303 means "See Other". A 307 is the actual Temporary Redirect. It really means temporary, as in the very next request should also be made to the old URL, and the new one should not even be cached. This is usually only used for emergency redirects (like when a primary server is down) and the like.

A302 doesn't dictate a redirect, it just says that what you were looking for moved, and it's been found there. You are usually redirected only as a courtesy and for usability purposes. Technically, you should use a 303, which really does the job properly.

The Problem With 301's

A pure 301 actually isn't always the best choice for a redirect, either. The problem is that a 301 is cachable, and therefore if you ever change that 301 to point to a second place, it may take quite a bit of time for the search engine to update it's files, which is why there is often a delay in you seeing results after changing 301's.

For example, let's say you 301 me.com to you.com. Then later you decide you want to change the me.com redirect to us.com. There can be a significant delay in this working, because the search engines will cache the original redirect for quite some time.

Want to fix this?

You can put a 301 on you.com as well as me.com, which will create a second hop in some cases, but will give you some time for the caches to be updated and speed up indexing, in some cases dramatically.

It's a simple fix, but it can save you a lot of time and headaches.

Want another fix? (Best Practice)

When you create 301 redirect, prevent it from being cached is there is a possibility that you will change it in the future.

If you don't think you'll be changing it, then just do what you usually do - it will cache automatically, which is normally a good thing.

If you might change it, or expect to change it, you can disable the cache in one of 2 ways in either the server response or the redirect page. Server response is better, IMO.

  • (BEST) use HTTP headers in the server response to send "Cache-Control: no-cache"
  • Or, if you can't do that on your server, you can use "Pragma: no-cache" option in your html redirect page header area. But real server headers are better than the pragma.
Redirect Codes

  • 300 Multiple Choices – HTTP_MULTIPLE_CHOICES
  • 301 Moved Permanently – HTTP_MOVED_PERMANENTLY
  • 302 Found – HTTP_MOVED_TEMPORARILY
  • 303 See Other – HTTP_SEE_OTHER
  • 304 Not Modified – HTTP_NOT_MODIFIED
  • 305 Use Proxy – HTTP_USE_PROXY
  • 307 Temporary Redirect – HTTP_TEMPORARY_REDIRECT
Ian

Google International PPC Ad Targeting Twist

After some testing and a confirmation from Google, I've discovered a new (to me, anyway) twist to Google's PPC Ad targeting for international sites.

In SEO, Googe decides on the country your site is relevant for first by ccTLD (Country Code Top Level Domain - like .ca, .uk, .mx, and so on) and then by IP and other methods.

Turns out this thinking also applies to PPC.

If you target a specific country, like in my case, Mexico, Google will only show ads to surfers within Mexico, right?

Wrong. They show ads to surfers in Mexico, yes. But they also show ads on Mexican tagged sites, such as sites with a Mexican IP address or sites that use the ccTLD of .mx, even if they are hosted in the US, etc.

It makes sense if you think about it. Of course, you may be thinking that this would only apply if you have chosen to advertise on the content network. You'd be wrong.

See, even if you don't advertise on the content network, there is a site that is a .mx and is not on the content network - www.google.com.mx

That's right. Even if you target only Mexico, your ads can show up to anyone anywhere in the world who happens to use google.com.mx. Anyone who needs to look at or verify geo-targeted ads knows it's sometimes hit-and-miss, but they do show up.

I first really put it all together when I was looking at traffic patterns for my Mexican campaign and noticed a bunch of traffic from the US and even India. This is normal, and is not necessarily an issue, as long as you are aware of it.

But let's say you really don't like it. There is a fix.

Instead of targeting Mexico (or wherever) you simply target physical locations within Mexico, such as cities, and lat/long areas. This forces a geolocation check and gets rid of your Japanese traffic.

Just remember that the traffic from Japan may be traveling Mexican business-people, since they would have to be using google.com.mx, and you are now excluding them.

But if that's what you need to do, then that's how you do it.

Ian

Tip: Take control of your reputation

It's not uncommon for people to "google"you before hiring you, renting to you or even dating you. So you might want to do some damage control regarding that crazy weekend in Vegas you were hoping no one ever posted pictures of online...

Social Media Reputation Management is a whole art and science by itself, but you can start today by filling out a Google Profile.

Then you can at least try to tell people that the other person with your name and face that keeps showing up in all those crazy photos is really your evil twin, because clearly the person in your Google profile would never do *that*. At least not in public. It's on Google, so it's official, right?

Hey, it's worth a shot. It's that or stay unemployed, homeless and dateless.

Ian

Bing! Microsofts New Search Engine (Brand).

Microsoft has just announced that the new name for it's "Live" search engine (which everyone disliked) is called "Bing" which everyone will also probably dislike, but at least isn't as confusing.

The other candidate was "Kumo", which I admit I would have disliked more. Poor Microsoft, I'm pretty sure no matter what they chose it would have been wrong.

You can give it a test drive and find out more here: http://discoverbing.com/behindbing/

Ian

Office 2007 Annoyances

UPDATE:

By complete coincidence, MS announced SP2 for Office 2007 *today*. Which I found about 10 minutes after complaining in this post. I'm installing it and I'll let you know how things go.

-------------------------

If you have an embedded Excel 2007 file in a Word 2007 document, and happen to have Excel open as well, Office, (in it's brilliance) informs you that Excel is not installed and tries to run Office 2007 setup.

This screen shot is classic:


Note to self: Switching Keyboards

If your keyboard starts spitting out strange characters, it's because you've probably switched keyboard language layouts by accident.

It's easy to do: Press / and then Ctrl Shift

I do this sometimes if I'm just trying to type a "?", which has me pressing the / and shift already. If my finger slips a bit and I hit the ctrl under the shift at the same time, suddenly my typing is all nonsense.

Fix:

Either remove all keyboard layouts but the one you use all the time (If you tell Vista you are a Canadian, it automatically adds French keyboard layouts whether you want them or not) or press / and then ctrl shift again.

Ian

Robots.txt Syntax Checker

I was checking the robots.txt file of a client today, and it was far more complicated than normal, so I went looking for an automated syntax checker.

I found this one from Motoricerca, (an Italian SEO company) and can recommend it: Robots.txt Syntax Checker (it's in English).

I like it so much I'm adding a link to it from my robots.txt generator.

Ian

Interesting Antispam Tactic: Bot Bomb

My son Tas plays an online game called Mabinogi and today mentioned to me a new feature in the game, which had been overrun by something called bots.

Bots are basically programs that control player characters within the games, taking over for the person who is supposed to be doing it. There are many types of bots, including ones that do repetitive tasks so they player doesn't have to, and the worst, spam bots.

These basically stand in the middle of places where people congregate and shout out advertising (typically game money that in turn was gained by bots, sold for real world money). This is against the game rules and makes it no fun for players who are actually trying to play the game.

In order to combat this (which was ruining this and many other online games) the creators of the game did all they could from a game security perspective, but it was simply too difficult to keep up with and detect the spammers, which went to great lengths to simulate human behavior well enough to fool a computer.

But not a human. Experienced human players can detect bots (and spam) almost instinctively.

The game designers finally decided to try something different: using humans to detect bots. Within the game, they created something called a "bot bomb" which can be thrown at a suspected bot. The "bot bomb" then asks a very simple question, that any human player would be able to answer with no difficulty. Essentially a reverse Turing test, like a CAPTCHA.

If the bot fails, it's logged out and the account flagged. Time limits are in place to prevent humans from being "bot bombed" by being hit with so many that they can't respond properly.

Why is this on my blog? Because game theory is a very important aspect to how the modern web functions. There are more similarities to dealing with search and SEO as an online "game" than with offline human to human behavior, to the ongoing annoyance of search engines.

It occurs to me that a method that accurately and easily harnesses humans as spam detectors, while not overloading the system with unmanageable amounts of spam reports (and fake spam reports) is something that can be learned from by website owners and search engines alike.

Use humans to detect the spam, but use the system to verify it independently, in order to minimize false or malicious reports.

Interesting.

Ian

New Use for Canonical Tag - Geolocation.

I've been messing around with it, and I believe that I've found a new use for the Canonical tag - geolocation of gTLD's.

Simply park (not redirect) a ccTLD on your site, upload an HTML sitemap that points to all your pages with the ccTLD, then place the canonical tag with the gTLD on your pages.

Viola - the search engine "tags" your pages as geolocated via the ccTLD, but only displays the gTLD.

You keep your .com, but have now geolocated your site without having to host it locally.

This is a variation on a technique I've been using for a while, but much cleaner due to the addition of the canonical tag.

Ian

The Relationship Between Search Behaviour and SERP Landscape (Part 2)

This is the second and final part of a 2 part series on the relationship between search behavior and SERP landscape. Part 1 is here.

PART 2: THE EFFECT OF SERP LANDSCAPE ON SEARCHER BEHAVIOR

The seeds of this article arose when I was studying differences in searcher behavior between countries.

I noticed that in many countries, especially those who are relatively new to the internet being widely available, searchers seem to show, in general, lower stages of search behavior, often progressing no further than Stage 2 - Exploration.

At first, I assumed that this less sophisticated behavior was due to less experience with the internet, an assumption I now know to be false and, to a degree, ethnocentric.

The assumption that searchers in these countries are less sophisticated due to a lack of experience can be supported by the massive growth rate (500% or higher is common) of internet availability, but does not explain why even people who have had the internet for years in these countries still tend to show less sophisticated search behavior as a whole than searchers in developed countries.

There is no "national searcher" - everyone progresses by themselves as an individual due to their own experiences. Additionally, in many of these countries (typically developing countries) people who have internet tend to be well educated and spend a lot of time online - they should progress fairly quickly, yet often do not. So the question is - what's going on?


I believe the answer lies in the SERP landscape, and it's been hidden there due to the halo effect of the online industry as a whole.

You see, my research appears to show that searchers everywhere will naturally try to progress through the stages of search sophistication as they use search more and more.

However, if the SERPs do not support that progression, the progression stops. In short, increases in the sophistication of tool use is limited by the sophistication of the tool itself. Some tools simply lend themselves to more sophisticated actions than others.

How could this happen? Many ways.

Sometimes, it's due to limitations of the search engines themselves. Back in the days before Google, searcher behavior was also fairly unsophisticated, since attempts at sophisticated searches were generally foiled by small indexes filled with spam. It simply wasn't worth the effort to try to improve your search techniques when the search engine still gave you poor results.

Another reason this could happen is due to the available results. If nothing but spam is available, then you will get nothing but spam. If local websites are designed in a manner that is not search friendly, then no matter how good you are at searching, you are still unlikely to find what you need, because the search engine simply doesn't have it to give you. It may exist, but it's not available through a search engine.

GIGO - Garbage In, Garbage Out.

It is this second reason that appears to be why searcher behavior tends to "stall" in some countries and languages.

Although part of the blame sometimes lies on the search engines themselves for not adapting to local restrictions, culture and resources, the majority of the blame for this is, very simply, poor websites from an SEO (and often usability) perspective.

As websites for the region or language become more sophisticated and accessible to search engines (and start carrying useful information rather than being just web brochures), the search engines will begin to be able to provide a better sampling of results, thus allowing more advanced searcher behavior.

Analogy - Buying some Beans

As an analogy, think of going shopping to go get a can of beans at two different stores. The first store is a well run national chain with a huge selection and a logical, clear layout. Since you have been there many times before, and you already know exactly what you want, you will probably know exactly what to do, even if you have never bought beans before at that store.

You will go to the aisle that is most likely to contain the beans, glance quickly down it for the area most likely to contain the beans and head right there. On the way, you have probably already checked for coupons and sales, and have a very good idea of exactly what brand and size you want, along with what brands you may not want. You may also know whether you want to get the beans from the "All Natural" aisle, the "Ethnic Foods" aisle, or the general "Soups and Canned Goods" aisle.

Within seconds, you have exactly what you want, after following what is, if you think about it, a very sophisticated and effective search pattern, that was helped by a large, well-organized selection to choose from. This is Stage 4 - Control mode. You take control of your search and make it work for you.

Next, contrast this with going to get a can of beans from a nearby store that is very messy, disorganized and has little stock. First, forget coupons, the "All Natural" aisle and all of that. If you are lucky, there might actually be a "groceries" aisle. Your can will be there, in with the other cans, if you are lucky. If there is an organization to it, it's not readily apparent.

At this point, you have to throw planning and sophistication out and basically just start hunting through the shelves until you find a can of beans. The chances of it being exactly what you were looking for are remote, so you may then end up sifting through yet more cans in a vain hope that there might be another choice (hopefully one that has not expired). You may even decide to give up and either skip the beans altogether, or go check a different store. You are in Stage 2 - the Exploration mode.

In this scenario, it's not YOU who has changed and become less sophisticated, it's the shopping environment that has. You basically had to degrade your planning and shopping behavior to deal with the fact that sophisticated actions can only take place at the top end of the available actions, and the available actions are reliant upon the choices, support and quality present at the time.

Conclusion

In short, searchers in China, Mexico and elsewhere are only searching in unsophisticated manners because the SERPs themselves are unsophisticated, not because of some sort of cultural norm, which is often currently the assumption.

I hear this all the time: "The Chinese search like this" or "Mexicans tend to do searches this way", but this is ethnocentric and misleading.

It would be more accurate to say that "searchers in China do this" or "searchers in Mexico have to search this way". The sophistication of the searches are based on the sophistication of the search landscape, not the searchers themselves.

There are 2 major conclusions of interest to the search community that can be taken away from this, IMO.

  1. If a market shows unsophisticated searcher behavior (as evidenced by the types of searches performed), then there is almost certainly an excellent potential market for SEO (along with an attendant lack of awareness of SEO in the first place). Additionally, due to this lack of sophistication within the market, SEO and PPC are likely to very effective. There is simply less high-quality competition.

  2. Since searchers will increase in sophistication as the available search landscape evolves, it is important to prepare websites for more sophisticated searches (ie long tail terms, searches for specific on-site information rather than just contact information, etc) rather than simply rely on current KW research. You will need to evolve within your market as your searchers do. And they will, as quickly as the market does.
Hopefully these 2 articles have been helpful to you. I know the insights I've taken from coming up with them are serving me well with my current international SEO efforts.

Ian

The Relationship Between Search Behaviour and SERP Landscape (Part 1).

PART 1: STAGES OF SEARCHER BEHAVIOR

The following is original research developed from several hundred interviews across 9 countries (Canada, USA, Mexico, Brazil, China, Japan, Korea, England and France), combined with insights gleaned from both formal training in cultural anthropology and HCI (Human-Computer Interaction - aka usability). That said, I could be totally wrong. But I don't think so.

I was explaining this theory to a businesswoman in Brazil a couple of days ago and it occurred to me that I hadn't written about it yet, nor had I actually shared any of this with any of my SEO colleagues - forgive me, I'm writing a book on international SEO and as a result my blogging has been slow lately.

Here is the insight: People search differently at different stages in their comfort levels and experience with search engines, but progression through these stages are in turn affected by the SERP landscape they are provided.

This is most prominently (though not exclusively) visible within intranational searches, but this behavior can also be seen in any area where the SERP landscape is different from "standard", such as mobile search, image search, local search, and so on.

Searcher Behavior Stages

The speed of progression through these stages can vary based on how often the searcher searches (dozens of times per day vs a few times per month), the topics for which they search (each major topic will have it's own progression), and whether they get help or training (or have previous experience).

But this is the general progression of search stages:

  1. Trust. A searcher at this stage is a novice, and has no idea what to expect as far as results for their search. In general, they will click on the first link that is not clearly spam or inappropriate (some novices to computers in general as well as search will not even attempt to look for spam or inappropriate results - they will simply trust the search engine to answer their question). If they don't find what they are looking for, they tend to blame themselves for making a bad search or assume the information is not available.

    Searches tend to be simple and general ("taxi" or "how to babysit"). Repeat searches may get slightly more complex (ie the addition of a location - usually at the end of the search as an addition to the original) but not too much more complex - they tend to assume the search engine is much smarter than they are and will figure it out. Users at this level often do not realize the difference between PPC ads and organic results (or don't care).

  2. Exploration. Fairly quickly, searchers tend to progress to the next stage (since the first tends to be unfulfilling), which is exploration. At this stage, there are several ways it will play out, but the most common is the "serial-clicker" - someone who goes though every (or almost every) result in the desperate hope that one of the results will be an answer. Another common scenario is the searcher, rather than going back to the original search results, will begin to click on links within the site they landed on, surfing from page to page and site to site. MFA sites make a lot of money based on this behavior. This is a very important stage to remember, and I'll tell you why in Part 2. These searchers may go several levels deep in the results (page 3 and beyond).

    At this point the user is still trusting of the search engine, so search queries tend to be very similar to the trust stage. Instead, the searcher is modifying their own behavior (still assuming the problem is with themselves or with the available data) by clicking differently and exploring the results to try to find their answers.

  3. Analysis. At this stage, the searcher starts getting smarter and more experienced. They have come to realize that clicking on more links isn't really the answer. At this point, depending on their personality, the results they have seen so far, and other criteria, they will begin to change their tactics. Some of the tactics they may try include one or more of the following:

    • looking at the results page for likely candidate sites before clicking on any (aka "sniper" mode)
    • trying other search engines
    • beginning to use more sophisticated searches and planning ahead (ie putting the location first, then the query)
    • Figuring out the difference between PPC and organic listings (and tending to avoid PPC)
    • Finding and re-using "tried and true" search patterns (like "X reviews" "X FAQ" or "X wiki"

  4. Control. At this stage, the searcher becomes sophisticated and takes control over their searches. They realize that the results a search engine provide are in part controlled by the search query itself, as well as the results available. This is usually the level most people eventually find themselves at.

    At this stage, advanced search tactics are used, such as:

    • tiered searches (searching in a general manner, then using information gleaned from those results to perform the "real search" using the information and keywords from the previous search - like looking up the wikipedia entry for a topic, then using keywords and ideas from that to perform a second, "real" search)
    • searches based on likely content or title of a desired result, rather than the user's question
    • long tail searches become more prevalent
    • Simple parameters such as quotes or "results from this country" are more likely to be used
    • Actively trying to prevent bad or off-topic results by using negative parameters or less ambiguous terms.

  5. Expert. Most searchers do not reach this stage, as it requires study and is more difficult to do than the results are generally worth for most searches. Experts will use advanced search parameters, tiered searches, and other advanced techniques that require a good knowledge of search engine behavior. This category includes information and search professionals (SEO's, researchers, topic experts, advanced students).

    Searches are planned out, often "long tail" or tiered, and can include advanced and multiple parameters. PPC ads, often avoided at the control and analysis stages, will begin to be clicked on if they appear to answer the query. Experts are after the best result, and don't usually care how they get it. They will intelligently make exceptions to general rules of good searching if they believe the result will be good.

Well, that's my list of searcher behavior stages.

The next thing to realize is that these stages may repeat themselves for different queries or topics.

For example, someone may search at a Control or even Expert stage for a topic related to their work or hobby, but when confronted with something totally new (like planning a wedding) is likely to go through the stages again, though usually at a much faster rate than a new searcher would (sometimes in a few hours or less).

They know nothing about the topic, so they need to start by trusting the search engine again.

While the above information is useful in and of itself, in Part 2, I'll go over how people (and entire cultures/nations) can get "stuck" at certain stages, and the effect this has on international SEO and SEM.

Stay tuned.

Ian

Keyword Research Schedule

I was doing some keyword research this morning and was reminded of a very important issue that I'd like to share.

It's February, and I just did some KW research related to Calgary (my home town,and a place I'm very familiar with, as far as KW research goes).

Services like KeywordDiscovery and Wordtracker typically default to showing what's in their database for the last few months (usually around 3 months or so).

That means that right now, I'm seeing KW's like "calgary valentine sale" and almost no searches for what I *know* is one of the biggest KW's for the city - the Calgary Stampede.

If I didn't know better, and used this KW research, I might come to the conclusion that the Stampede wasn't that big of a deal. But it is, and KW research done in August will clearly show it.

This seasonality especially affects seasonal things like tourism, tax preparers and so on, but keep in mind that it will have an effect on almost all industries, either directly or indirectly. For example, the end of summer is when a lot of people move to go to school. This results in more searches for anything from pots and pans to computers to local nightclubs as the new residents start to settle in.

As a result, I recommend doing KW research at least once per quarter (ie every 3 months) and to aggregate the data at least once per year.

Aggregation should be the following reports (keep them in a binder or in a folder somewhere):

  1. Quarterly KW Reports, saved by year.
  2. Yearly aggregate reports of the quarterly reports for the year, also saved by year.
  3. Quarterly Reports, aggregated and *trended by KW* from the same quarter for each successive year.
  4. Yearly trended reports of KW popularity. This is so the temporary huge popularity of a topic isn't directly affecting your decision making. "Pam Anderson" was an extremely popular KW back in the early 2000's, but not so much today, for example.

This will typically give you enough good information to act on, yet not be terribly onerous to create, analyze and report on.

Ian

Twitspam



The new thing all the "cool" social media spammers are doing now is impersonating famous people on twitter. They sign up for a name that is very similar to a well known person (ie "mattcutts" becomes "mattcutts_" and then sets their screen name to the exact name of the person they are impersonating: "Matt Cutts". I use Matt as an example here because it happened to him recently by a particularly clueless twitspammer.

They then "follow" a few thousand people, most of which are honored to have such a famous person following them, and thus go visit the person's profile to follow back. At this point you'll typically see only one or two posts, always to some sort of spam. Ironically, the one I've seen most is a link to a "whitepaper" on how to market your crap in Twitter.

So they spam you on Twitter in order to promote a paper on how to spam people on Twitter. Ugh.

To their credit, Twitter is usually pretty good at finding and removing these, but they are usually up for several hours and get a few thousand visits before they go down - enough, apparently, for some twitspammers to feel it's worth it.

The really scary thing (to me) is how many people fall for this, and start following back. Yikes! Hey, I've got $78Million I stole from the Nigerian government that I'd like you to help me get out - how about it? You can by that swampland in Florida, the Brooklyn Bridge, and still have some left over to invest in Bre-X!

Ian

ADDED: Andrew Girdwood posted about this earlier, as well.

Happy Lunar New Year 2009 - The Year of the Ox



It's the Lunar New Year (aka Chinese New Year) again. Many people call it Chinese New Year but of course the Chinese are not the only ones who celebrate it, so Lunar New Year is more correct. This year (2009) is the Year of the Ox. Specifically, the Earth Ox. If you were born in 1961, 1973 or 1985, you are an Ox, as well.

The expected characteristics for this year are that success will come only through hard work, and that this is a year where reliability and honestly are even more critical than normal. The Ox is associated with building to last and slow but sure action. In this time of worldwide recession, interpret that how you will.

If you do any business in or with China, you can forget about getting anything done during this period - it's like a combination of Christmas, New Years, Summer Holidays and your Birthday, all rolled into one. It's also often the only vacation many Chinese get all year. As a result, don't expect any emails getting answered (unless they are about where the nearest party is...)

Some facts about Chinese New Year

As usual, here are some interesting facts about Chinese (Lunar) New Year.

The beginning of Chinese New Year started with the fight against a mythical beast called the Nian or "Year" in Chinese. Nian would come on the first day of New Year to devour livestock, crops, and even villagers, especially children. To protect themselves, the villagers would put food in front of their doors at the beginning of every year. It was believed that after the Nian ate the food they prepared, it wouldn’t attack any more people. One time, people saw that the Nian was scared away by a little child wearing red. The villagers then understood that the Nian was afraid of the color red. Hence, every time when the New Year was about to come, the villagers would hang red lanterns and red spring scrolls on windows and doors. People also used firecrackers to frighten away the Nian. From then on, the Nian never came to the village again.

Because of this story, fireworks are traditional because the loud noises and red colors are said to scare away evil. Plus, it's fun!

The Dragon Dance is also common, and in the East dragons are considered good luck. If you look closely at most dragon dances, you will see people throwing cabbage to feed it - yes, that's part of the ceremony - most westerners miss it.

The most popular tradition is gift giving, of course, and it's usually little red envelopes with money in them.

Happy New Year - Gung Hei Fat Choi


Many people don't say "Happy New Year" (新年快乐 - Sun nin fai lok), but rather say "Congratulations and be Prosperous" (恭喜发财 - Gung hei fat choi). If you have to remember one, I'd choose "Gung hei fat choi." (A close English pronunciation for US and Canada: "Gung Hay Fat Choy").

I always think of it as the Chinese equivalent of "Live long and Prosper", but then I'm a geek...

PPC Text Ad Formats for the Major Search Engines

I'm currently working on a very, very cool tool that I can't tell you about (yet). However, part of it (an extremely minor part) allows the creation and export of PPC text ads for all major search engines.

Although I can't share the full tool yet, it took me some work to collect this information in one spot, so I figured I'd share it with you.

Where bulk upload is allowed, the listings use the exact terms that the search engine in question uses (i.e. the heading you would use for the CSV).

"SB" is single byte (i.e. English) and "DB" is double byte (i.e. Chinese). Enjoy!

Google AdWords Character Limitations and Format

Headline: 25 SB, 12 DB
Description Line 1: 35 SB, 17 DB
Description Line 2: 35 SB, 17 DB
Display URL: 35 SB (SB Only)
Destination URL: 1024 SB (SB Only)

Yahoo YSM Character Limitations and Format


Ad Title: 40 SB, 20 DB
Ad Short Description: 70 SB, 35 DB
Ad Long Description: 190 SB, 95 DB
Display URL: 25 SB (SB only)
Destination URL: 1024 SB (SB Only)

MS AdCenter Character Limitations and Format

Headline: 25 SB, 12 DB
Description Line 1: 35 SB, 17 DB
Description Line 2: 35 SB, 17 DB
Display URL: 35 SB (SB Only)
Destination URL: 1022 SB (SB only)

ASK ASL Character Limitations and Format*

Ad Title: 25 SB
Ad Description: 70 SB
Display URL: 35 SB
Destination URL: 1000 SB

*Ask is English Language (SB) ads only.

Baidu Huobao Character Limitations and Format*

Ad Title: 13 DB
Ad Description: 32 DB
Display URL: 35 SB
Destination URL: 1000 SB

*Baidu is Chinese/Japanese (DB) only

Optimizing Powerpoint Presentations

I give a lot of presentations, and I optimize things for a living, so it was just a matter of time for nature to take it's course and for me to start wondering what the hell I was doing.

See, there are a lot of different types of presentations (I'm talking about ones that use slides or PowerPoint here). There are presentations intended to inspire, presentations intended to sell, presentations intended to convince, and presentations intended to teach. Each type of presentation will require it's own format and style.

I do mostly the teaching type, and I love doing them. Like anything else worth doing, if it's worth doing, it's worth doing right. For years I've been a frustrated victim of PowerPoint and so-called "advice" on how to make a great presentation. Enough is enough. It's simply not fair to the audience for someone in a technical field like SEO to try to teach them using the wrong presentation style.

Bad Advice

It's not so much bad advice, as it is the wrong advice. If you go looking, as I have, on how to make a great PowerPoint presentation, you'll find that most of the advice boils down to: "Make a presentation like Steve Jobs". All pictures, little or no text.


What was the point of this again?


Maybe that's great advice for Steve Jobs, who is trying to sell you overpriced, proprietary hardware and software by making it seem really, really cool, but for someone just trying to teach people how to get better rankings or convert visitors into customers, cute graphics and drop shadows simply don't cut it.

People at search marketing conferences don't want to be inspired (they already are, that's why they have a site they want to promote), they want to get their money's worth by learning tactics and strategies they can actually take back and use. It's about being practical and effective, not about getting excited over the latest color available for the iPod.

You simply can't use a Steve Jobs / Seth Godin type of presentation to do anything other than inspire. There is nothing wrong with inspiration (I love Seths work), but inspiration won't fix that 302 redirect issue you have, or give you a checklist for finding good links.

The worst part is when you need to take notes. As an audience member, you probably can't write fast enough, (or perhaps were at the session next door) and may want to download and review the presentation later instead. Fat lot of good that picture of the monkey with a banana with no text will do then!

Presenters at technical conference learn this very quickly (assuming they even get invited back) and change their presentations to include examples, data and text so that the presentation will be more useful - basically helping the audience take notes, so they can spend the time listening to you rather than scribbling madly.

That's the point, really - avoiding too much note-taking or boredom. Inspirational presentations do this with big picture statements and great graphics, technical/teaching presentations do this by providing the notes so you don't have to write them yourself. Both accomplish the same goals, just in different ways.

Over-Correction

This brings me to the next annoyance with technical/teaching presentations - information overload. These presentations are the opposite of inspirational ones - they are basically a speech or lecture in slide form. I've even seen people do the entire presentation simply by reading every line of every slide - horrors!


An old presentation of mine from 2006. Ouch.


I think these presentations are even worse than the inspirational ones, in that although it solves the problem of note-taking, there really isn't a reason to attend the conference anymore, is there? These presentations are boring - which is one of the worst insults you can give to a presentation, in my opinion.

The font size keeps getting smaller as more and more information is packed in, the number of slides increase dramatically, and many presenters find themselves fast forwarding or skipping slides due to time constraints. This is very, very annoying.

Showing me a smaller amount of information than you know is one thing, but skipping by slides of potentially juicy information because you ran out of time is unprofessional and frustrating.

Making the Ideal SEO/SEM Conference Presentation

So, what to do? How do you inspire people enough to make them interested in what you have to say, but at the same time, give them enough information that it's worth it for them to get inspired in the first place?

Well, let's break it down. What do you need to accomplish? You need to:

  • Make the presentation interesting and even entertaining to a live audience.

  • Free people from the necessity of writing a lot of notes. It's great for them to make "AhHa" notes to themselves as they listen, but they should not be trying to scribble down every word you say for fear of missing something. If your audience is doing this, you should have stuck with blogging.

  • Provide answers and resources, which you can use during the Q&A, as well as helping people who download your presentation. Although some people don't like to allow their presentations to be downloaded, they are missing the point (among other things).

    If your presentation is about your branding, then you are giving a commercial rather than a presentation and you should do everyone a favor and get the hell off the stage (unless the audience knew they were going to see a commercial in the first place). If you are trying to teach people, put a copyright notice on it, ask for a link and attribution, and let them download your notes.

  • Identify yourself. This is not only great from a branding and marketing standpoint, but it's also helpful to your audience, should they wish to contact you. How will they remember? You've let them download the presentation! It's now like a giveaway pen with your logo on it, except it's a lot more useful, more likely to be saved, and contains much better contact information. Virtual swag, and costs you nothing to reproduce!
The Perfect* Presentation

*A good presentation should be like a website - always being tested and improved. Perfection is a goal, not a state of being, especially for anything using computers.

Section 1 - Splash Page. This should introduce your presentation and yourself in a simple and easy to understand format - no marketing hype. Also the perfect place to point out where you can download the presentation, since the audience looks at this while you are being introduced, and it's really the only time they can/should take notes. They usually also look at this slide the longest, since it's a placeholder during the introduction. Never underestimate the value of a splash page. A splash page/slide has a job to do, and they are only useless if you forget that. Use it wisely and well, or don't use it at all.

Section 2 - TOC. As my old drill instructor said, "Tell 'em what you're gonna tell 'em, tell 'em, then tell em what you told 'em". Resist the urge to put in every slide - just the main topics and sections. This is the perfect opportunity to point out you have additional information at the end of the presentation that won't be shown (I'll get to this in a moment).

Section 3 - Visual Presentation. The main event! This is where you keep the graphics clean, the text light, large and punchy, and the entertainment value high. Don't go into excruciating detail. Provide an overview and enough information so that people will be introduced to what they don't know and what kind of questions they should be asking you and themselves.

Remember many members of your audience will only be interested in certain sections, and just want an overview on how it all fits together. But don't over correct and be too shallow. A good way to accomplish this is to do an overview on a topic or sub-topic and then give some specific, practical tips related to that topic or sub-topic.

Section 4 - FAQ. If you have one or two questions that always come up that are not easily addressed in section 3 - put them in here. This is an audience favorite, and establishes you as helpful and available, rather than just a lecturer. This section is optional, but recommended. It does 3 jobs - it answers questions, it signifies the end of the official presentation, and it provides a time cushion where you can easily skip this part or go into greater detail, depending on how much time you have, without making the audience feel they have been ripped off.

Section 5 - Resources. This is where you put all that juicy info that you can't put in the visual presentation because you'd need to use small fonts and crowded screens. Charts, data, links, a bibliography and so on can all be placed in here. This is a great incentive for the audience to download your presentation if they want, but if they only wanted an overview, they don't feel they are forced to. You can also put in the kind of information you may want handy during the Q&A part of the session, but didn't want to get into during the main presentation.

Section 6 - Contact information. This is more than just your name and email. You can include a company overview, services you offer and even things like special offers and discount codes. This is your reward and incentive for making the presentation useful and available for download. It's low-key and not pushy, but highly effective at getting your marketing message out without ruining the on-stage presentation.

Wrap Up

I hope this has been helpful to you (and your audience). If you decide to use this format, feel free to leave a link in my comments area to the presentation for others to see and be inspired by.

Ian

Are you an SEO/SEM in Mexico or Brazil?

I'll be visiting Mexico from Feb 16-24 and Brazil from Feb 24-Mar 3 for the purposes of meeting other SEO's, learning about the local search marketing environment and culture, and generally beginning to learn more about and promote those two countries as excellent SEO targets for international businesses.

If you live in either place (specifically Mexico City, Acapulco, Cancun, Sao Paulo and Rio de Janeiro) I'd love to meet with you - I'm also looking for local contacts and sources, and can in turn introduce you to my other contacts and sources internationally. I'll buy the beer :)

And, just to make this post more interesting, I'm in the process of finishing up (finally) my book (International SEO) and I'd like to share with everyone the top 20 international SEO/SEM countries (there may be a few surprises in here for some people):

This list was created by comparing overall population, internet users, internet penetration, broadband subscribers, and user growth for 194 countries. Ranked in order of internet broadband users:

1. United States
2. China
3. Japan
4. Germany
5. Korea, South
6. United Kingdom
7. France
8. Italy
9. Canada
10. Spain
11. Brazil
12. Netherlands
13. Taiwan
14. Australia
15. Mexico
16. Turkey
17. Russia
18. Poland
19. India
20. Vietnam

I intend to meet with SEO's and other search marketers in every single country before publishing the book, hence my trip to Brazil and Mexico.

Cheers,

Ian