-
Newbie Basics – The HTML Layout
In this article we will look at some HTML tags that you will be using in every HTML document that you create. They are the base for every web page and are the essential pieces of HTML coding to ensure that your pages display correctly.
The Structure Tags.
Here is a look at the main structure tags. You will have to get used to these since you will be using them for all your pages.We would suggest that you start by copy and pasting the structure into your document then creating my page once they’re in place.
Make it a habit to ensure that all surfers (regardless of their browsers) will be able to identify your creations. Each of these HTML tags are used in pairs with a start and ending tag in the same way as we mentioned in the previous chapter.
<HTML> </HTML>
The HTML tag tells the browser that your page is a valid HTML page.
The first and last tag on all your HTML documents will be this tag.
The complete HTML coding for the remainder of your document will be placed between these two HTML tags.
<HEAD> </HEAD>
This tag is used to reference your document.
<TITLE> </TITLE>
This tag enables you to give your HTML document a title.
It’s best to insert descriptive text about your page between these tags we will go into this in more detail in the later chapters.
This will also be the name that is displayed in a web browser’s system tray when someone bookmarks or adds your HTML document to their favorites list.
<BODY> </BODY>
The entire coding for your page goes in between these two tags.
Basically, they mark the beginning and end of your web page’s body. They are the essence of your HTML.
All your HTML tags in your document will be resting in between these two HTML tags.
Putting It All Together.
Now that the main tags have been outlined, it’s time to put them all together. Here is an example of what your HTML documents should look like.<HTML>
<HEAD>
<TITLE>The Title Of Your Html Document Goes Here</TITLE>
</HEAD><BODY>
All your other HTML tags and text goes here.
This Is the main body of your HTML document.
At the end of this text you will also see where the closing Body and HTML tags go.</BODY>
</HTML>
This is the basic structure for any HTML document. Once these tags are in place, the rest is down to you. These Tags are not case sensitive. In other words, you don’t have to use all capital letters like we have in our Chapters. It won’t make a difference to the overall outcome of your tags. However we would recommend using Caps for your tags. It makes them a lot easier to distinguish from all the other sections of your HTML document coding, as you can see in the example above.
Article written by Lee
-
Marketing to European Surfers
Marketing to European Surfers.
Today we’ll try to answer couple of questions regarding dialers and how to market them to European traffic.
How to get traffic to your European market targeted site?
Pretty much the same way as for all the other sites, lets German market for example (Germany, Austria, Switzerland) use SE’s, German link-lists, TGPs,… feed site with your own traffic, and don’t forget to use exit-consoles.
Is your site translated into specific language?
Yes, of course you won’t get far using English template on German/Spanish.. sites… You can always contact Adult Site Translation if you need help with translations.
What sponsor should you use?
That is pretty hard to say. Practically since almost every European based sponsor offers dialers so it doesn’t really matter which one you choose. It’s the same with per sign-up sponsors: It depends how good you are in sending traffic to them. And as always try couple of them and see which one works best for you. Most of the sponsors will offer to your surfers to pay by CC, bank account and dialers.
Me personally, I don’t really advertise dialers. I go for sign-ups because most if not all European sponsors are recurring and it brings more money in the long run. But if a surfer wants to pay the (admittedly) high phone bills – that’s fine with me In fact, sometimes I get more money from a 0190-number (dialer number in Germany starts with 0190) than I’d get if the surfer would sign-up with his CC and would cancel his membership after the first payment.
Why are dialers so successful in the German/European market?
Well, I can think of 3 reasons for this:1.) 0190-numbers are very common in Germany. Many support-hotlines use them, you can download logos for your cell phone via 0190, you can get health-tips via 0190, fax-numbers, etc… Germans see those numbers everywhere and get used to them. Of course they know that they are expensive but I think they tend to forget this because they are so common.2.) Much of my income from dialers is from Swiss and Austrian people. Especially surfers from Switzerland LOVE dialers (Some of them spend hours/nights with dialers and in the end if i get 50% of that for me is not bad, isn’t it?
I think they love dialers because they hesitate to give out the information on their CC (if they have any) and they can’t/don’t like to transfer their money via bank transfers. So dialers are actually their only way to get into the members-area.3.) Credit cards are not very common in Germany. I would guess only some 30% have one and many who have one don’t believe that CC transactions on the internet are secure. So most of the surfers have only 2 options left: Paying by bank account or using a dialer. The bank account has 2 disadvantages in the eyes of the surfers: 1st “The sponsor knows my name, my account number, where I live and that I’m a greasy little wanker who pays for porn. -Maybe this sponsor is going to tell my neighbors about it-” 2nd “How can I explain this to my wife?” On the other hand the dialer has advantages: 1st It is anonymous. Nobody knows who and where the surfer is. 2nd The dialer is faster than typing all the necessary information needed for a bank transaction. A few seconds for a 35kb download and the surfer is ready to go. 3rd You can always find a reason why there’s this 0190-number on the phone-bill. “Well darling, you know, I had problems with my new graphic card and I had to contact the customer-support. Those damn bastards are on a 0190-number what what can I do?”
Well, that’s about it on dialers. One warning at the end: If you like to give them a try beware of those that do auto-downloads and auto-installations. Surfers don’t like them. Use dialers where the surfers needs to click somewhere to download and install them.Article written by Lee
-
Adding Images To Your Web Pages
The Basics
Adding Images To Your Web Pages – The Basics.
So you have just got into the online adult business but don’t know your ass from your elbow, you have the simplistic stuff relating to HTML down but, you want to find out how you can start adding banners and images to your pages here is a quick guide to help you on your way.
What Is An Image?
The answer, is, believe it or not simple, An image is a picture on a page of your website. There are however, many way to display images on your site from the size of it to the overall effect you want the image to have on your HTML page and from borders around the image and many other things.
However, I don’t want to blind you with information at the moment considering you need to actually know the basics of adding images before you can start using fancy styles and the likes.
Adding A Basic Image.
The HTML code to add an image on any HTML based page is a straight forward one however, before you can use this HTML tag you need to know where on your page you want the image to appear.Now that you have decided where you want your image to display you need to use the image tag, the HTML coding to place an image on your page should be IMG. Also, you will need to tell your page where you want the image to come from or, in other words, you need to tell it the source of the image you want to use the HTML tag to do this is SRC.
For example, lets say you have an image called porn.gif (you need to include the extension in your SRC coding) you would display this image on your page using the following code:
<IMG SRC=”porn.gif”>
Simple huh?
Well, actually, maybe not, for example, what do you put if the images you are linking to is NOT in the same location as the page you want it to appear on? That’s not a problem, all you need to do is use the FULL location of the image in your IMG HTML tag like this:
<IMG SRC=”http://www.domain.com/images/porn.gif”>
You should now be able to include images on your pages without any problems.
Image Sizes.
Ok we can now include an image on our pages but, what if we want to make this image fit the feel of the rest of our page / site, how do you manipulate the graphic to ‘look’ right?There are a number of ways images can be manipulated for example, if you want the image to be 100 pixels wide by 100 pixels high you can add the WIDTH and the HEIGHT tag to your HTML coding like this:
<IMG SRC=”http://www.domain.com/images/porn.gif” WIDTH=”100″ HEIGHT=”100″>
That will now resize your image into a square that is 100 pixels wide and high.
Now we have the image on our page in the right size we require what else can we do with it? Read on..
Borders + Colors.
In addition to placing the image and resizing the image on our pages we can also add a border and, a border color to the mage to make it stand out if needed for example:<IMG SRC=”http://www.domain.com/images/porn.gif” WIDTH=”100″ HEIGHT=”100″ BORDER=”2″ BORDERCOLOR=”FF0000″>
As you can see we have now added the two tags ‘BORDER’ and ‘BORDERCOLOR’. The first ‘BORDER’ tag tells your HTML what size of border you want around your image and, this can be any size you want to make the image stand out on your page. The second ‘BORDERCOLOR’ tag tells your HTML code what color you want the border to be again, this can be any color you like to match the rest of your sites pages.
Linking An Image.
In addition to resizing, adding borders and colors we can also link our image to a specific URL (the most common form of this is with banner advertising) and, if you want to link your image to a URL you would use the following coding:<A HREF=”http://www.sponsorsurl.com”><IMG SRC=”http://www.domain.com/images/porn.gif” BORDER=”2″ WIDTH=”100″ HEIGHT=”100″ BORDERCOLOR=”FF0000″>
This will create an image that is 100×100 pixels in size, with a border size of 2 pixels in the color FF0000 that is linked to http://www.sponsorsurl.com
Also, the order of the HTML tags we use is not important however, you should try to get used to arranging them in a certain way to make your work easier if it ever comes to editing your images.
Hopefully this has been of use to you and you can now see that adding banners and images to your sites isn’t as daunting as you first thought.
Article written by Lee.
-
Building A Surfer Trap – Stage 1
The last 2 weeks I have had a LOT of webmasters email and ICQ me regarding traffic and, not getting any sales.
So, I thought it would be a good idea to make a step by step tutorial on building your own surfer trap.
Now these are some of the arguments I have heard why people haven’t already built one over the last few weeks…
* To complicated to follow.
* I want surfers returning to my site.
* Don’t have the time.The first two however seem to be the ones that I hear over and over again.
First of all, a surfer trap IS NOT complicated, in fact, it is probably one of, if not THE easiest type of site to build.
Secondly, Why get a surfer visiting your site over and over again if they are not paying for trial memberships? All you are doing is wasting your bandwidth.
Thirdly, A surfer trap can be built over a period of time, my very first trap was built within 1 hour my next was built in a day and my next one was built in a week.
So onto the start of building our surfer trap…
The first thing that I want you to do is to look at the Multi-Site FPA’s that ARS in the marketing section and choose ONE of them.
Download it, optimize the keywords on the FPA, make sure you add meta tags, titles descriptions and Alt tags on all images.
Once you have done this, you now need to search through ALL of the single site FPA’s and download and optimize one for each of the ARS sites that you have on your Multi-Site FPA. (Even the gay sites!)
This should take you 2-5 minutes for EACH FPA, any longer than that and you are doing TOO much work!
Once you have all of the single FPA’s downloaded, optimized and uploaded onto your server that is the first stage completed.
Article written by Lee
-
Marketing Campaigns – Testing Your Variables
Irrespective of the medium, an online advertising campaign needs to be tested and optimized constantly in order to provide you with the optimum results. This is where advertising testing can play an important role in your marketing strategy. Despite the advantages to testing your online marketing campaigns, relatively few companies actually go out of their way to see what what works, what doesn’t and, more importantly, why.
Steps To Testing Your Ad Campaign.
1) Set expectations as to how you envisage your campaign to perform. This in itself will guide you’re optimization methods. An example of this is, if you expect your ad medium to get a 15% click thru rate or a, 10% conversion rate, you have justification in making adjustments to your campaign if the creative you are using does not perform to your level of expectation.2) Don’t get tied into a campaign, If you are going to be purchasing an advertising campaign on a resource site, ensure you have an ‘out clause’. This out clause will enable you to terminate the campaign as long as it has run for a set amount of time, usually, many resources will be happy to give you an out clause especially, if after testing your marketing materials, the results you were hoping for have still not shown themselves.
3) Consider the variables in your ad campaign, usually, webmasters only think of the one variable in their advertising campaign – Price. However, there are many more variables to be looked at for example, if you are doing a mail drop, the subject line of the email, format and, copy text of the email body itself, all of these things can have a drastic effect on any given advertising campaign, at any given time and often, these can, and most probably will, fluctuate from site to site where you are purchasing ad space.
4) Stats tracking, tracking your campaign makes it easier to test and review how your advertising medium is working for you, many sites offer live stats for your ad campaigns however, some still do not, where this isn’t a problem in itself as, most companies you choose to advertise with will be more than happy to provide you with statistics as and when you need them after all, you are paying for their services and support.
5) Pull the plug on campaigns that are not performing, however, ensure you have changed your creative several times before doing so, often, you will find a simple change such as a new creative can drastically increase your marketing efforts. Also, do not just pull advertising as you feel like it, if your campaign has only been active for a week, don’t expect hundred / thousands of hits instantly, often it takes webmasters a while to realize there are new ad mediums running on the sites they visit so often.
Online Advertising – Review.
By constantly assessing and testing your advertising campaigns you can pull some interesting figures which can help you long term however, don’t rush into pulling campaigns that you have only just started. Give it a few days, change your copy text and creatives and, if that doesn’t work talk to the company, they will be able to offer you advice and help on improving your sales from your advertising medium after all, they want to keep your business.Article written by Lee
-
Adult Exit Traffic
How Do You Use It?
I honestly do not think there is a webmaster working in the adult industry to date who has not seen a warning page for a free or avs site with both an enter and an exit link, the enter link goes to the main body of the site in question whilst the exit link goes to some other link, normally disney.com or google.com or some other url where the webmaster in question is quite literally throwing their traffic and money away.
Instead of wasting your exit link traffic to a site that doesn’t make you a cent why not utilize this traffic to feed additional revenue streams, for example, most of the larger adult sponsors now have penis pill programs or dating sites, you could include your affiliate id in the exit link and send your traffic there, after all, the surfer you have on your site isn’t looking for porn so, offer them an alternative which, can still add to your bank balance.
So What Are The Alternatives?
The alternative types of sponsors you should be using on your exit links can vary widely however, the best type of site to send them to would be a sponsor offering products and services such as penis enlargement programs, online pharmacies, history eraser type products or, even a link to a site like amazon.com if the program you use allows for that.Basically you should try to maximize all the traffic you get to your site whether that be by using exit consoles or links, make sure that for each and every surfer you send to the front page (warning) of your site that if they decide to back out or click on a link to leave that you send them somewhere to give them the option of spending money and ultimately earning you revenue.
Article written by Lee.
-
Do You Keep The Surfers Attention?
A new discovery says that people are born to respond to information a certain way. It also indicates that when we use our in-born or natural style to process information, we relax and feel good. The same research also indicates that 92% of thousands tested have changed that style to one they think works better. The change causes stress. So 92% of the viewers of your site are stressed. Because people often visit your site and click off almost instantly, you face the problem of getting their attention and keeping it long enough to persuade them to buy.
The fact is that people today have shortened attention spans. If you don’t get them in the first few seconds, you lose them! You can either build a terrific web site — or just end up with “click thrus.” Many site owners think it enhances a site to add animation or cool sounds. But the answer is to make your site appeal to the individual. Great sites of the future will know how to “individualize” their message.
Even though we all have to learn how to use a computer, high tech has not made people think the same way. You are not battling high technology; you are fighting to keep the attention of three (3) basic in-born styles. This may sound overwhelming, but it is really a simple matter of anticipating a viewer’s response before he or she gets to your site. Anticipation of responses makes or breaks your site.
So how do you anticipate how a viewer responds before it happens? It is really simple. You start by learning how you personally respond to information. Why is this the beginning place? It is because you and the way you react when receiving or giving out information influences everything about your site. Next you learn about the other ways people respond to information. It is easy to begin anticipating reactions as you get a whole new perspective on how people are born to process information. Things start to make sense to you and people are no longer such a mystery.
These conclusions are drawn after over 20 years of research. The research verifies that it is possible to appeal to most views rather than 2 – 4 in a thousand. So, when someone tells you how to write killer copy, or make your site jazzy with new technology, you are hearing from only one of the basic in-born styles. Take everything with a grain of salt until you evaluate it according to the simple guide that lets you appeal to ALL styles rather than only one.
Article written by Lee
-
The Ins and Outs of European Domain Name Registration
A domain name is more than just your online adult business address; it’s a crucial aspect of your online adult business. It is closely linked to the way a surfer thinks of and, more importantly, remembers your site. In many European countries, domain names that end with a country code carry more weight with the Internet-surfing public than dot.com domain names. So, if you want to have of a chance of selling to a foreign adult surfer in a European country you might consider registering a European country code top-level domain name (ccTLD) for your site.
Obtaining a ccTLD could potentially:
- Increase your chance of getting listed on a national search engine. Many national search engines require a company to be local, however that may be defined, to be listed with them.
- Get you a higher ranking with a local search engine.
- Make your business more accessible to customers and vendors in a specific country.
- Make your business seem more local and thus help overcome any fear local customers might have of buying from a non-European outfit.
What Is a ccTLD, Anyway?
Generic top-level domains (TLDs) are not linked to any geographic area. They include the well-known and familiar .com, .org, and .net domain names. In contrast to these generic TLDs, there are ccTLDs: Each country and territory in the world has its own TLD. They include, for example, .at for Austria, .be for Belgium, and so on.
Essentially the domain name policies regulate who can register what type of a domain. In principle, nearly anyone can register a generic TLD.
It is important to keep in mind that you might lose a domain name you recently registered in Europe if another company can prove in court that the name is rightfully theirs. If the court decides that the plaintiff has a right to it, you will lose that domain name however, I am assuming that nobody reading this is going to be considering registering ccTLD’s for the purpose of cyber squatting.
Each country or region has its own rules, policies, and regulations about who can register a ccTLD, and how. Common restrictions include the requirement to be a local registered company or to have registered the company and/or company name as a national trademark in a specific country. However, some countries are less strict about who can register. As always, it depends on the country and its particular rules.
The table below is meant to give you easy access to the information you will need when you are ready to register a European domain name for your site.
Here is an explanation of the categories used in the domain registration table:
- Country: Name of the country you might want to obtain a domain name for your business in.
- Name of domain: The ccTLD (a two-letter abbreviation).
- Must be local: This can mean that your business presence, your company’s physical presence, or your trademarks must be local.
- More domains possible: Some countries limit the number of domains that you can register.
- Same name as owner: Some countries require that the registered name be the same name as the owner’s company name or trademark.
- Signed contract: Some domain name registration agencies demand a written, signed declaration or contract to be sent in. If in doubt, read up on specific rules relative to the specific domain name registrars you will be using.
Country Name of Domain Must be local More domains possible Same name as owner Signed contract Austria .at No Yes No No Belgium .be Yes Yes No Yes Denmark .dk No Yes No No Finland .fi Yes No Yes No France .fr Yes Yes No No Germany .de Yes Yes Yes No Greece .gr Yes No No No Iceland .is Yes No Yes Yes Ireland .ie No Yes No No Italy .it No Yes No Yes Luxembourg .lu No Yes No No Netherlands .nl Yes Yes No Yes Norway .no Yes No Yes Yes Portugal .pt Yes Yes No No Spain .es Yes No No No Sweden .se Yes No Yes Yes United Kingdom .uk No Yes No No Now you can see the possibilities available in respect of registering more than just dot.com addresses perhaps you might like to find a country you would want to gain some extra traffic from and see about registering a ccTLD and developing it.
Also, you could improve your chances of gaining additional traffic to your new ccTLD domain by having some country specific language on that domain, again, how your site comes across to the surfer is just as important than the domain and, there are plenty of Adult Site Translation companies out there who can assist you with this part of the ccTLD development.
There are, of course, other ways to gain additional foreign surfers other than just registering a ccTLD for example, on European Webmasters we have a domain name registration section that will allow you to translate specific text in order to gain type in foreign traffic on dot.com TLDs perhaps, if you don’t want to or, cant register a ccTLD in the country of your choice you might like to take this approach at gaining additional foreign traffic to your sites.
I hope this article has given you a little insight into the varieties of domain names available in and around Europe and that you might just register a domain and see for yourself how profitable the European markets are.
Article written by Lee
-
Pop Up Consoles Work – To A Point
As webmasters we are constantly thinking up new ways to generate sales to our sponsors however, the one medium to generating sales that has been and most likely will remain to be popular is the method of using consoles on our sites. Whether these are exit consoles, blur consoles or, on entry consoles one thing holds true, the more consoles you use, the more you annoy your surfer.
Marketing Console Numbers.
Through some research of my own i have noticed that a trend appears when the use of consoles on our sites takes effect this trend is that anything after the first console you use actually cuts your chances of making a sale in half, thus, the maximum amount of pop up consoles we should use on our sites, in my humble opinion should be two or three at the very most.Console Sales Figures.
Okay lets take a look at some average (signups per month divided by days in the month) sales figures based on a three month period (sending roughly 10,000 hits per month).Average signups to sponsor (A) = 113
Sales From Console (1) to sponsor (A) = 11
Sales From Console (2) to sponsor (A) = 2The setup above uses pop up consoles in the following manner, on entering the site you get a Blur Console which hides itself behind the current page you are viewing, once you close the current page you see the blur console, once you close the blur console you see a smaller console, once you close the smaller console, the browser window closes altogether.
Evaluating The Figures.
From the above figures we can see an immediate pattern, namely that console (1) makes up roughly 10% of our total sales and also that console (2) makes up roughly 20% of console (1) sales. Putting these figures into practice across further consoles will show you that by utilizing any more than 3 consoles on your sites really does not amount to any significant raise in sales unless you send a higher amount of traffic to your sites in the first instance.Console Sales – Recap.
We have now seen that from a steady flow of traffic over a monthly period we can influence the potency of specific consoles within our exit chains and, by analyzing the figures we get from these consoles we can almost certain figure out firstly, the correct (or comfortable) amount of consoles we use on our sites and secondly, that the more consoles we add to our sites, the lower the potential sales figures will be from each subsequent console.I will be the first person to admit that overall pop up consoles are an excellent marketing tool however, the figures above show that the more consoles we use, the less chance we have of making a sale further down the chain, use consoles wisely and they will benefit you however, abuse the use of pop up consoles on your sites and not only will be wasting bandwidth, youll be wasting a surfer too.
Article written by Lee
-
Why Cant I Get Indexed By The Search Engines?
Unfortunately, this is an all too common question. If it makes you feel any better, you’re not the only one frustrated about the length of time it takes to be indexed, or the many pitfalls involved. It often takes anywhere from two days to as much as six months to be listed on a search engine. For example, last month Excite finally updated its index for the first time since last August! Luckily, Excite is the most extreme case lately, but waiting several weeks to a month can also be extremely frustrating especially when your livelihood depends partly on these search engines.
The Web Position Submitter report will give you current time estimates for each engine so you’ll know what to expect. However, an engine at any time could choose to delay their indexing beyond the “norm” for maintenance or other reasons. On the flip side, you could get lucky and submit just a couple days before an engine does a complete refresh of their database. Therefore, submission times can never be an exact science since we’re all ultimately at the mercy of the engine.
If you’ve submitted your site and have waited the estimated time to be indexed and there’s still no listing, what do you do now?
Here are 16 tips that should help you solve this problem:
1. First, be sure you’re not already indexed but just don’t know it. Unfortunately, none of the major engines are kind enough to e-mail or notify you as to if and when you’ve been indexed.
The method to determine if a page or domain has been indexed varies from one engine to another, and in many cases, it’s difficult to tell for sure. Never assume that you’re not indexed just because you searched for a bunch of keywords and you never came up in the first few pages of results. You could be in there but buried near the bottom.
In addition, it’s not very practical to check the status of a number of pages on each major engine each week. Fortunately, Web Position has a URL verification feature in the Reporter that makes this process much easier. Each time you run a mission, it will report which URLs exist and do not exist in each engine. If you’re using Web Position and are not finding your URLs after submitting, be sure to see this page for common pitfalls to watch out for:
http://www.webposition.com/urlnotfoundhelp.htm
2. Make sure you have uploaded the pages to your site before submitting them. This one seems obvious, but submitting a page that does not exist or submitting with a subtle typo in the URL is a goof we might all make at one time or another. If you’re using Web Position’s Submitter, there’s a checkbox on tab 2 that forces Web Position to verify that all your URLs are valid before submitting them.
3. If you have information inside frames, that can cause problems with submissions. It’s best if you can create non-framed versions of your pages. You should then submit the non-frames versions of your pages which can of course point to your framed Web site. Alternatively, you can enter your relevant text within the NOFRAMES area of a framed page which most search engine spiders will read.
4. Search engine spiders cannot index sites that require any kind of registration or password. A spider cannot fill out a form of any kind. The same rule applies regarding indexing of content from a searchable database, because the spider cannot fill out a form to query that database. The solution is to create static pages that the engines will be able to find.
5. Dynamic pages often block spiders. In fact, any URL containing special symbols like a question mark (?) or an ampersand (&) will be ignored by many engines.
6. Most engines cannot index text that is embedded in graphics. Text that appears in multimedia files (audio and video) cannot be indexed by most engines. Information that is generated by Java applets or in XML coding cannot be indexed by most engines.
7. If your site has a slow connection or the pages are very complex and take a long time to load, it might time out before the spider can index all the text. For the benefit of your visitors and the search engines, limit your page size to less than 60K. In fact, most Webmasters recommend that your page size plus the size of all your graphics should not exceed 50K-70K. If it does, many people on dial up connections will leave before the page fully loads.
8. If you submit just your home page, don’t expect a search engine to travel more than one or two links away from the home page or the page that you submitted. Over time they may venture deeper into your site, but don’t count on it. You’ll often need to submit pages individually that appear further down into your site or have no link from the home page.
9. If your Web site fails to respond when the search engine spider pays a visit, you will not be indexed. Even worse, if you are indexed and they pay a visit when your site is down, you’ll often be removed from their database! Therefore, it pays to have a reliable hosting service that is up 99.5% of the time. However, at some point a spider is going to hit that other 0.5% and end up yanking your pages by mistake. Therefore, it pays to keep a close eye on your listings.
10. If you have ever used any questionable techniques that might be considered an overt attempt at spamming (i.e., excessive repetition of keywords, same color text as background, or other things that the Web Position Page Critic warns you about), an engine may ignore or reject your submissions. If you’re having trouble getting indexed in the expected amount of time, make sure your site is spam-free.
11. If your site contains redirects or meta refresh tags these things can sometimes cause the engines to have trouble indexing your site. Generally they will index the page that it is redirecting TO, but if it thinks you are trying to “trick” the engine by using “cloaking” or IP redirection technology, there’s a chance that it may not index the site at all.
12. If you’re submitting to a directory site like Yahoo, Open Directory, NBCI.com, LookSmart, or others, then a human being will review your site. They must decide the site is of sufficient “quality” before they will list it. I recommend you read the submission guide on the directory tab of the WebPosition Submitter. It contains tips to improve your chances of obtaining a good listing on these directories.
13. A number of engines no longer index pages residing on many common free web hosting services. The common complaint from the engines is that they get too many “junk” or low-quality submissions from free web site domains. Therefore, they often choose not to index anyone from those domains or they limit submissions from them. It’s always best to buy your own domain name (very important) and place it on a respected, paid hosting service to avoid being discriminated against.
14. Some engines have been known to drop pages that cannot be traveled to from the home page. HotBot has been rumored to do this. You may want to consider submitting your home page that links either directly or indirectly to your doorway pages.
15. Make sure you’re submitting within the recommended limits. Some engines do not like more than a certain number of submissions per day for the same domain. If you exceed the limit, you may find that all your submissions are ignored. Fortunately, WebPosition’s submitter will warn you regarding current limits and recommend you stay within them. Some submission consultants feel it is dangerous to submit more than ONE page a day to a engine for a given Web site. For those who wish to be ultra-conservative in their approach, the Web Position Submitter includes a checkbox to limit submissions to one URL per day per engine.
16. Last but not least, sometimes the engines just lose submissions at random through technical errors and bugs. Therefore, some people like to resubmit once or twice a month for good merit in case they do lose a submission. Certainly if you’ve followed all the “rules” and are still not listed, re-submit! Sometimes a little persistence is all that’s needed.
If any of the above scenarios apply to your submission, you should make the necessary adjustments and re-submit. If that still does not work, you should consider e-mailing or calling the search engine and asking them politely why you have not been indexed yet. Sometimes they will reply back with “Sorry, there was a problem with our system and I’ve now made sure you’ll be indexed within the next couple days.” Or, sometimes they’ll tell you why you were not indexed. In other cases, they will ignore your e-mail and you’ll have to keep e-mailing or calling them until they respond. Still, it’s definitely worth the effort to get your site listed with the major engines assuming you also take the time to optimize your pages so you’ll achieve top rankings.
Article written by Lee
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing