Strange Indexed Pages Quantity

Recently I have noticed that quantity of my “indexed pages” in Google has overcome real quantity of pages on my site. The real quantity is 150 pages, while Google shows bout 300. Checking and counting indexed pages through “site:” search, I found actual quantity of indexed pages and number of pages displayed by Google differ. It is more likely to be a bug, but I think that it can be some kind of concealment, just like they’ve did it with backward links.

Dedicated or Shared IP?

There’s much controversy about usage of dedicated and shared IPs in SEO. During forum debates I have seen a lot of opinions concerning this question, so I’d like to give you some excerpts of discussion to think about:

- Google dislikes shared IPs; one should park domains on dedicated IPs.
- Google don’t care if you have shared or dedicated IP for each domain
- You need do have IPs from different networks to make safe linking between such domains
- If you have your domain on shared IP and there is a cheater or spammer having his domain on the same IP, you can get banned along with this cheating site
- If such cheating site will be banned, you won’t be banned too, but lowered in SERPs
- You will experience no changes, when site from same IP will be banned

You can see that there are much opinions and guessing about this problem I have concluded that:

If you have a couple of domains with sites, that are sometimes similar in code, names of images and affiliate links - you must avoid putting these sites on domains parked on same IP, or IPs from same network. In case if sites are completely unlike and you don’t link between them - it is not necessary to host them on different IPs.

IPs from the same network means that IPs vary in last digit(s): for instance xxx.xxx.xxx.1 and xxx.xxx.xxx.2 - Google will definitely ban or penalize you for cross linking of sites hosted on domains parked on close IPs. IPs from various networks must vary in at least third group of digits.

How do you find out whether your domain is parked on dedicated or shared IP and what sites are hosted on this IP along with yours? Try http://whois.sc/IP adress

Picture Optimization

I have noticed that pictures that have proper titles and links are giving about 15% of all target traffic that comes to one of my site. Did anybody tried to do the same? I mean get target traffic by optimizing pictures?

Usually I give a name that corresponds to general site title and specific item of pic. For instance in the site is about cars and there is a Lamborghini Diablo on a picture, I’d call it lamborghini_diablo_cars.jpg, or cars_lamborghini_diablo.jpg - depending on which keyword it must be stressed.

What do you think about optimization of pictures? Do you use pictures optimization on your sites?

//Max

Indexing How-to.

Normally, a small site with proper structure, correct linking, clean code and a couple of good backlinks gets indexed in very short time and you start finding it in SERPs. But what about large sites and doorways?

Some webmasters are building sites with over 100k pages with several levels of linking. If you have troubles with indexing of such sites, then use these tips to get your huge site indexed quicker:

- You need some links to force GoogleBot read your site, so buy, or exchange links.
- Don’t point all links to the index page of your site, but put several of them to the index page and put at least one link per each subcategory. This means that if, for instance, you have four levels of linking - each category of each level must have an inbound link.
- If you haven’t got enough links to feed all your subcategories, put them to second level only and when it will get properly indexed, change links to feed thrid level. However, this way is not recommended.
- In case if your site stays unindexed, refer to some site analyzing software that will spot broken links, inaccessible areas of your site and other mistakes related to linking.
- Check your .htaccess and robots.txt files for consistency with current project.

It is also possible to create site’s categories and subcategories on subdomains of general domain and link there. It’s up to you what strategy to choose, but remember - there’s nothing impossible in SEO, so even very huge site can be forced to be indexed.

//Max

Overoptimization. What is it?

Many of us have heared about overoptimization, many of us had experienced it. So what is overoptimization and how to avoid it. Actually, I know just few examples of what overoptimization is and I’d like you to share your opinions concerning this question.

Most frequent overoptimization mistake is too high keyword density, proximity, frequency. This means that you overstuff your page with keywords. To avoid keyword overoptimization one should use keyword density analisying software.

Then we have overlinking mistake, when you put too much inbound links to your site and get sandboxed. To avoid this mistake - try to increase quantity of links slowly, I’d say “naturally”. Imagine that your are not a SEO webmaster, but an ordinary webmaster, who had created an interesting site. Site will probably receive one link after week of existance, one more after two weeks, plus two in three weeks and so on. This is what “natural” way means.

Third mistake is overoptimization in anchor text - overstuffing of anchor text with keywords. It is probably the same to keyword density and almost all analisyng software includes anchor text in check.

These are that important overoptimization spots of a site, but maybe you will tell about your own experience and what overoptimization mistakes have you seen?

Make Your Banners and Design Always Visible

Due to wide popularity of banner blocking software many sites are displayed without banners, or even without pieces of design, because these pieces had some attributes of banners and were recognized by ad blocking software to be banners. To avoid such mistakes and to make your banners visible, throwing ad blockers of guard, do as follows:

Check that neither images, nor banners displayed on your site are of the following sizes, which are standard for banners:

300 x 250
250 x 250
240 x 400
336 x 280
180 x 150
468 x 60
234 x 60
88 x 31
120 x 90
120 x 60
120 x 240
125 x 125
728 x 90
160 x 600
120 x 600
300 x 600

Don’t use the following words in banner links and titles:

link, ads, ad, click, banner, ban, clk, ban-clk, promote, sponsor, advertisement, adv, page, top, and the majority of adult site queries.

Ad blocking software also kills banners and images of the most popular banner exchange services, adult websites, commerce websites, but it cannot kill link of such kind: asd.php?349

Share your thoughts and suggestions.

//Max

Moving from HTML to PHP

This is a problem that many webmasters are ought to deal with sooner or later. Especially those, who have old sites, which were all based on .html files. Of course one can just change all .html extensions to .php and replace the same characters in pages’ code. However, if you deal with SEO and your old good site occupies good position in SERPs, such changes can be fatal for your project for the following reasons:

1. All indexed .html files must be indexed again with .php extensions.
2. All links pointing particular page will be lost, unless you report all of your link partners and site owners, who link to you (re-indexing of new links will take some time too).
3. You will lose a lot of traffic from search engines during re-indexing of the whole site will occur, even if you put an error page that will redirect surfers somewhere to your .php pages.
4. Nobody knows whether your site will return back to good positions in SERPs after it will drop out.

So, what to do if you don’t want to change file extensions for the purpose of SEO, but need to include some php code in your pages anyway? There are several methods.

The first, and the most obvious is to use mod_rewrite (in case if your server supports mod_rewrite and you have permissions to modify .htaccess file). If yes - put the following strings in your .htaccess file:

RewriteEngine on
RewriteRule ^(.*)\.html $1\.php

Now all requested .html pages will be automatically substituted with .php pages.

Another method works with .htaccess again. Add the following string to .htaccess file:

AddHandler application/x-httpd-php .php .html .htm

I think that this method is the most convenient one, because it simply allows executing PHP scripts to run in .html files. If you have no access to your .htaccess file, contact your hoster and request to make appropriate modification of httpd.conf for your site.

If you were using SSI on your site, for instance like this:

Than you can replace it with the following string in your .php files:

< ? include('file.txt'); ?>

You can also ask your hoster to add the following to httpd.conf file. In this case you can avoid using mod_rewrite:

AddType application/x-httpd-php .php .phtml .htm .html

//Max

Publishing Borrowed Content

Sometimes you need to put somebody’s content on your site. This may be some unchangeable documents, FAQs, excerpts from articles, pdf documents, etc. However, you risk to get penalized for duplicate content. I have got such problem and this how I guess it can be solved:

I have a couple of downloadable archives with software of side publisher, but I had to put support documentation of this side publisher on download and support pages. Of course it is nonsense to rewrite long documents, which sometimes contain over 100 pages. I wrote short preview passages for each document with a link to the original document. Then I forbid indexing of full documents. That’s how it works on my site over a year and I have no problems with duplicate content penalty.

Sincerely yours, Max.

Important: Your Comments

Hi, everybody! I’m very glad that you find UptimeNews useful and that it helps you (I hope). And thank you for interesting discussions we make here: your comments. However, due to that I receive a lot of spam comments, I want to give short guidelines on writing comments:

1. This guidelines are currently concern just few vistors, who flood comments that have no significance.
2. We allow posting your urls, signatures under posts like “Visit my cool site” and URL, but we don’t accept insignificant and senseless comments, that make no sense for visitors of this site and me. For instance, I have received 4 comments, which were as follows “Cool, keep goin”, “Thanks for good article”, “Heh, good”, “Yep”. Such comments are allowed in topics like “Attention, Webmasters!”, where I asked general opinion of visitors. Other topics are for discussion and I won’t approve any comments of such kind, unless it is a comment given by author, who had good posting history before. Please, make reading interesting, do not flood it and you will enjoy this site and facilitate my job. Thanks.

P.S. This guidelines are only for those who come to spam here. I beg pardon of everybody else, but I had to write this.

Platforms, Coding, Site Building

What editors have you used when just started making first sites? Personally I have started with Macromedia Dreamweaver, but very soon I made sure that it ads a lot of bugs in HTML and started learning the language itslef. Since then I’m using Allaire Homesite and PsPad editors (Now there is Home Site 5 released by Macromedia after they’ve bought Allaire, but I don’t like it too). I”m telling this not just to discuss editors we use, but to stress your attention on importance of clean HTML. because the more bugs you make in code, the more corrupted it appears in serps and title “$#ajgd^&87″ or url “..php?gophp127jags7a…” don’t looks attractive, huh? However, after several years of practice, those webmasters, who work with lots of content and have less time to edit HTML are moving to various content management systems. So do I.

I have tried a lot of them. One I was using up to last year is PhpNuke available at http://www.phpnuke.org. It is convenient, includes a lot of useful tools for site management. However, it contains a couple of bugs that are unwanted for SEO. For instance it always builds ugly-looking urls and has problems with putting correct titles. When I have worked on PhpNuke I spent a lot of time by tuning and adjusting it to fit my needs. I found plugins that replace page title with title of first article on this page, modules that made permanent urls and so on, but it took a lot of time to make it rolling for each new site I’ve made and I started looking for something more easy and covenient. That is how blogs became platforms for the majority of my sites.

After trying several blog scripts I have finally chosen two of them, which, I think are useful for building good sites. The first one I have tried is MT, which is available from http://www.movabletype.org/. Powerfull platform for creating site. Rather easy installation and management. Good layout. Try it yourself to have your own opinion of convenience.

My second choice, which I consider to be the best choice for today is WordPress. Uptimebot is currently working on this platform and I am completely satisfied with it’s functional abilities. Of course it has lesser functions that MT and much less functions than PhpNuke, but ease of five minutes installation, attractive layout and amazingly clean code make WordPress to be the best script for building text sites, which I’d recommend for everybody, moreover that google loves blogs and this additionaly attracts me. Besides, there is a WordPress plugin that allows visitors to see when GoogleBot came for the last time - you can see it in footer of our page.

The only thing I’d like to be developed by WordPress is multi-site WordPress that would allow to build several blogs using one cpy of script (as it is possible with MT). They currently have only beta of multi-site script, but it is yet half-done and I wouldn’t recommend to use it.

Wordpress is available for download from http://www.wordpress.org/. Enjoy it!

I’d also want you to share your thoughts about site platforms you are using, their advantages and disadvantages and so on. Thanks!

Sincerely yours, Max.

Link Popularity, Relevancy and Link Text

I want to discuss relationship of Link Popularity, relevancy and text links. As you surely know, link popularity is counted exactly by number of links pointing certain page, but these are just basics. Method of building certain value of Link Popularity that I have already described was working on Google few years ago, but it had changed and that is the point of interest - what changes occur and how can we improve our link popularity strategies?

Certainly, when relevancy became one of the most important criteria of appreciation of each page, it has also affected Link Popularity calculation. Due to my little investigation, a page that has ten inbound links with same keyword in link text will have better link popularity than a page that has the same ten inbound links, but with different keywords inside this link.

However, there is some limit of quantity of same inbound links, and you risk to get your site filtered or banned for spamming if you cross this limit. I tried to guess what can I do in this situation and the only thought I had is to put synonims and associated words after each thenth ibound link to my sites. For instance if I’d had a site about gourmet food, I’d put 10 links with “gourmet”, ten links with “delicious” and ten links with “tasty” keywords. This will dilute keyword density, but prevent my site from loosing link popularity, because Google knows that
these keywords are synonyms.

The other way I think about is that Google considers two phrases to be same when they are identical by symbols. If you add some extra words like adding “gourmet food” to “gourmet” - you will lose relevancy of your general keyword “gourmet”, but popularity is lost because of dilusion by something meanful and I thought what will happen if I add something senseless to my keyword? For instance if I add “+” to “gourmet”, then “gourmet +” will be different to “gourmet”, but at the same time it won’t gain any additional meaning. I consider the same tactic, when choosing domain names. Google likes, when domain is corresponding site title and most frequent keywords on site, but the majority of good domains are already taken. At the same time if you buy a domain that contains extra words, it is loosing relevancy. That is why I oftenly buy domains like “gourmet1″ or “gourmet-1″ that are containing my general keyword and a meaningless symbol that won’t affect relevancy and popularity.

These are techniques I use, but I’m sure you have much interesting to tell too. Waiting for your opinions.

Protected: Other Top100-like resoures?

This post is password protected. To view it please enter your password below:


Ranking Opinion

Jay G. Have written an interesting comment, so I have decided to put it in articles. Jay, you can write articles and submit your questions right here - it is more useful than submitting it in comments, because more people will see it and it is more likely that you will receive answers for your questions.

Jay G. Says:

I read a lot about how you should link your site with others of similar content. Of course we should all do this, not only because it is good for our site visitor, but it seems like it would make sense to the search engines.

I do have one question though…if it’s all about related content…how does DMOZ have such a high pagerank? And Yahoo? They are all scattered…linking to pages having little to do with one another and vice-versa. I know that shear volume counts, but there are many sites, such as general directories that have very high pagerank. Doesn’t make much sense to me.

Here is my theory…forget all about the algorithms for a minute. I think pagerank and good search engine results are achieved simply by how many times the search engine visits your site. Seems simple, but think about it. If you are linked to by many sites with low pagerank, you will be scanned by the search engines. You may not be scanned deeply and you may not be visited often, therefore giving you a low pagerank. If you are linked to by many sites with high pagerank, you will be scanned much more frequently and more deeply, giving you a higher pagerank.

So I think the volume of sites that link to you matters as well as the pagerank of the site. Fewer sites with higher pagerank would equal many sites with lower pagerank.

Perhaps I am way off, but from my observance over the years, this is the simplest way to figure it out, since none of us really “know.” I do love reading all of the crazy theories though.

Last example….I was just analyzing a motorcycle related website with a pagerank of 7. There are tons of links going to it…the majority from real estate websites, cooking websites, etc…what does that say about relevancy?

Makes you think…

Domain or subdomain? Sandbox question.

Recently I have received an e-mail with the follwing question:

Is the whole domain, or just a page gets sandboxed?

Due to my research in this field whole domain and subdomains are sanboxed too, unless this is a “hilltop” domain like geocities.com, when single subdomain can get sandboxed, while other subdomains, domain, and domain’s children pages experience no affection of this filter.

Please, give your opinions concerning sandbox. I think that it is affecting pages, which gain a lot of backlinks in short period of time, but some of my friends have different opinions concerning this question. Well, what do you think?

Increasing traffic conversion.

Creating I site I don’t care details of each banner and text link, but when the traffic is already flowing through my site, I try to increase conversion ratio. You can earn additional 15-20% by making your text and graphic advertisement more attractive for surfer.

There is no definite how-to, but you can always look throug your pages and ask yourself - is this banner attractive? Would I click it if I’d be a surfer? I find some misleading graphic and text ads and try to change it time to time and study conversion ratio. As far as I find the best variant - I leave it working and enjoy increased ratio.

For instance: if you are advertising with help of banners, it is good to provide each banner with text description giving more detailed description of what banner is telling about. Make meanful stresses on advantages that surfer may receive if he will purchase the product.

In case if you are using PPC (Pay per click) strategy - add text description to the top of the page that, for instance, you suggest to click through search results because various companies offer discounts, wholesales and so on and it is necessary to see a couple of sites to find the best offer fitting surfer’s needs.

Just think about it and interesting ideas of increasing ads productivity will definitely appear. Same traffic + optimized ads are really increasing your income - just work on it.

Great work is just ahead!

Tired figting with Google? In view of Yahoo! and MSN updates it seems that we are going to have really serious work ahead.

If Yahoo! successfully attracts their 15% of users and MSN will attract even more after Microsoft will release Windows Longhorn with installed search linked with MSN search, then we all will have to learn optimization strategies for all three engines.

How do you think, does Yahoo! and MSN have chances of taking at least 30-40% of total quantity of searches?

To purchase or not to purchase?

This is the question I have every time I find a promissing optimization guide. There are a lot of SEO professionals that release guides based on their experience and their research.

Unfortunatelly, since Google has made a great shade over it’s algorythm, the majority of articles and guides of this sort became worthless. I’ve seen a hundred of them and all were talking about same things in different words - “make good content”, “stay in good company”, “build link startegies”, etc. I mean that each and every guide tells us about already known facts and each of them say that it’s a pack of unique and brilliant ides.

Of course its up to you whether to purchase such guides or not, but in my opinion they are really worthless, because a lot of same ideas and guides are available for free - for instance see my previous post - many of my suggestions are sold in variety of “brilliant” guides for huge price.

Anyway. If you are going to buy such a thing - discuss it on forums. If the guide is worth purchasing, then you will definitely hear a lot of positive testimonials concerning it. If not - consider to avoid it.

That’s all IMHO, but I really haven’t seen any worthy guide for over a year.

P.S. This all is about optimization in general. Some interesting articles about, for instance, usage of SEO services, maintaining hosting to meet google’s demands and so on are still useful, but I repeat, discuss such things to save your time and money.