• Domain Name Registrars – Saving Your Business

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    The one thing that all webmasters rely on to make their money is something that all of us have, a domain name however, what would or should happen to your domain names when and if, your registrar files for bankruptcy or just disappears, surprisingly enough i do not recall this ever happening in the industry to date however, being prepared for the worst case scenario is always a good thing.

    Prevention Is Better Than A Cure.

    As the age old adage goes.

    The first thing that you should do before even registering a domain name is to check out the background of the company you are considering using, you need to ask yourself a variety of questions about this company including the following:

    1) Is the registrar ICANN accredited?

    ICANN (Internet Corporation for Assigned Names and Numbers) is a non profit corporation which was formed to assume the responsibility over the IP and entire domain name structure as we know it. This in essence means that if your registrar is ICANN accredited then you at least know your domain name registration will be handled professionally and, should be reasonably secure so far as your registrar going out of business.

    2) What are you paying for?

    Many of the domain name registration companies packages vary greatly, with some companies you register a domain yourself, some companies register it on your behalf and, others will register your domain including some form of hosting etc, check with the company you are using to see what added services and support features they offer.

    3) What is their transfer policy?

    Some domain name registration companies have specific policies so far as transferring domains to other companies, registrars and, individuals go. Check with your registrar before you buy your domain to see what this process involves and, as always, check with one of the other registrars to see which registration company offers the best ‘bang for your buck’.

    Saving Your Name – Help And Advice.

    First and foremost, if you discover your domain name registrar has closed its doors you should immediately send an email to them and ensure you keep a copy of this email for your own records, ask them what is happening and, more importantly, what controls / access you still have available (if any) to manage your currently registered domains.

    Usually, you will receive some form of communication within a few days from your registration company letting you know what is happening and how you can continue to use your domain name.

    In most cases, when a domain name registrar company closes what you will find is that they will already be in the process of transferring the management of your domain to another registration company.

    If however, you are still able to control the domain yourself then you should immediately seek out a new registrar with whom you can manage the domain / domains that you own. At this point you should contact them and ask if they have any fast track solution to transferring your domain to their company.

    If All Else Fails.

    If after everything else you are still at a loss as to how your domain name transfer or registration is being handled then you should contact ICANN ( http://www.icann.org ) directly. Ultimately it is their responsibility to ensure that once you have registered a domain name, you are able to access it as you would like, in most cases however, contacting ICANN is always the last move you should make and, only use this form of information should you exhaust all other methods mentioned above.

    Article written by Lee

  • Gay Adult Marketing 101

    Date: 2011.02.22 | Category: Promotion | Response: 0

    There is a myth out there that gay traffic is hard to convert because a gay surfer is reluctant to buy. This isn’t so. Conversions come down to two things:

    • The gay surfer is discriminating; a membership to a site that has exactly what we want
    • The gay surfer is loyal; I, believe, this comes from our experience as a community. When a Gay surfer decides to purchase a membership, it’s typically for a longer period of time.

    This is evident with the better Gay Pay Sites; conversions may be lower than a straight hardcore site however, membership tend to be longer than the industry average. The gay surfer is discriminating; we look for a long-term membership with a site that has we want whether it’s teens, bears, amateurs, etc.

    With that idea, I always advocate that age-old niche free site philosophy use a variety of sponsor programs on your sites. Typically, my free sites will have one main sponsor (I use Quality Males) then I’ll break my other banner slots down one Teen site, a Twink site and maybe a product like Viagra. But this will vary depending on the “flavor” or “personality” of your site – if you have a gay leather site, my main sponsor will be a Leather sponsor or product, with a variety of other sponsors (one mega site, a teen site, and maybe an adult toy store).

    One marketing option, I tend to see working well is the full-page ad vs. only banners. I, honestly, do not know whether it’s a quality issue, a larger ad or the surfer’s disgust with banner ads, but it works well in our market.

    One thing that experience has proven to me, it makes no difference whether you’re a webmaster to gay or straight traffic, you need to analyze your traffic. If you’re sending traffic out to sponsors and your not seeing the conversions, maybe you need to really look who your surfers are. If you’re lucky enough to know who your surfers are, then look for a specialty sponsor (whether partnership or click-thru program). It’s all a matter of finding the right sponsor programs and tweaking your site (and we all know how that can be). Don’t be afraid to experiment. It’s the long term that we need to be looking at. Remember that this isn’t “Who wants to be a Millionaire is 30 days or less”.

    Gay traffic isn’t difficult to manage as many people think. It’s a matter of patience and understanding your market. And the best way to understand that market, is to ask a successful webmaster in the gay adult market..

    Article written by Gary-Alan

  • Formatting HTML Text Using Tags

    Date: 2011.02.22 | Category: WebDesign | Response: 0

    Formatting HTML Text Using Tags.

    As we know there are many elements to a website from graphics to text. In this article we are going to have a closer look at text and, more importantly how we format the text to look like we want it to.

    The text of the HTML pages we create, as you already know goes inside the <body> tag of our HTML pages but, unless you are using a WYSIWYG editor you can not just click a button and make it appear bold or italic therefore we need to get to know some of the text property tags that can be used to enhance our HTML text. Lets take a look at some of these now.

    <b> Any text inside these two tags will appear bold on our page</b>
    <i> Any text inside these two tags will appear in italic on our page</i>
    <u> Any text inside these two tags will appear to be underlined on our page</u>
    <big> Any text inside these two tags will appear BIG on our page</big>
    <small> Any text inside these two tags will appear small on our page</small>
    <sub> Any text inside these two tags will appear subscript on our page</sub>
    <sup> Any text inside these two tags will appear as superscript on our page</sup>

    There are also things called ‘heading tags’ these will work the same as the formatting tags mentioned above however there are only six of them and they look like this <hx> with the x being replaced by a number from 1-6 the lower this number is in the tag the LARGER our text will become so for example:

    <h1> Will be the largest heading text</h1>
    <h2> Will be the next smallest heading tag</h2>
    <h3> Will be smaller again </h3>
    <h4> Will be one size smaller again</h4>
    <h5> Will be the second to smallest heading size</h5>
    <h6> Is the smallest of the heading tags</h6>

    Also, you should remember that it *IS* possible to use more than one of the text tags in any single line of portion of text on our web page so for example, if i wanted to have bold underlined italic text my tags for the text would look like this:

    <b><i><u>This text is bold, in italics, and underlined</u></i></b>

    You will notice from the above example that the tags were opened and closed in the same order they were created this doesn’t have to be done like this but, in the long run, it is easier for you as a webmaster to code your pages this way.

    Hopefully this article has given you a further understanding on how we can format out text and you will be bale to put this into practice on the next site you build.

    Article written by Lee

  • The Successful Marketing Approach

    Date: 2011.02.24 | Category: Promotion | Response: 0

    In today’s volatile and competitive marketplace, the strategic manager must possess a sophisticated perspective regarding creating and maintaining the overall image of the organization.

    In order to accomplish this goal, marketing must play a key role, regardless of the company’s size.

    To be truly effective, a company must be up-to-date with it’s marketing ‘psyche’. In bygone times, companies concentrated on items it was able to produce, not on customer needs and wants. This type of outdated thinking will most likely lead to a rather short lifespan.

    Today, marketing is a holistic approach that is often more complex than first thought.

    What Is Marketing?

    It is a process through which an organization identifies a need and then provides a means of filling or satisfying that need.

    Customers are more informed and savvy than in the past and they expect more – in the quality of both products and service. Today’s customer is not willing to merely sit passively by and consume – he wants a voice and relationship with the companies with whom he chooses to conduct business.

    Marketing is not deciding where and how to advertise. This is only one component of the process. Effective managers make sure they have a well-defined and mapped out strategy that deals with the entire lifecycle of the process. The most successful companies have a keenly honed customer-centric marketing model.

    This model outlines a process that allows the company to determine the needs and wants of a “target market” and deliver this while instilling in the customer the belief their company’s ‘satisfaction solution’ is better value than the competition’s.

    The first step in a marketing strategy involves the identification of unmet needs within a market and delivering/developing products and/or services to meet those needs.

    Define Your Market First.

    Is it a business-to-consumer company, a business-to-business company, or both? Regardless of the target(s) a company must be able to clearly identify a common need amongst a large portion of this market, as well as that portions propensity and ability to buy that product or service.

    Once the target market has been identified it is time to do some analysis. The depth, complexity and related cost should remain proportionate to the ratio of overall business this product or service is anticipated to generate.

    Analyze Internally.

    What will be involved in creating this product or service? Is there access to all of the necessary components? How much volume can be handled? Are their efficient distribution channels? What will it cost to make or provide this? The next phase is an external analysis that looks at specific trends within the target market. With this information in hand, a company is then able to make an informed decision as to whether or not it is feasible to proceed. Now that the target market has been identified and the operational side has been flushed out, a strategy can be addressed. How a company decides to communicate its message should be in correlation to its overall marketing strategy. Whether the most effective method of conveying you message to the target audience is through traditional advertising channels, the Internet or more innovative activities, it should be apparent from the prior analysis. The final phase of a marketing strategy should examine the component of customer relationship management: What processes are in place to service our customers? How do we ensure a positive resolution of customer complaints? What performance measurements will be used to determine how well clients are being serviced? And, most importantly: How will customer relationships be maintained so they will do business with us again and again? By developing a comprehensive strategy that spans the entire lifecycle of new to repeat client, a company will find it is able to effectively address the present needs and wants of it’s target markets, as well as being able to incorporate new areas as they develop. Article written by Lee

  • How To Use ALT Tags On Your Sites

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    One simple technique can improve your search engine rank, make site navigation easier, and increase the accessibility of your site to disabled visitors. Yet, as many as 78% of sites don’t use it! Boost your site’s profile with human visitors and search engine spiders with the <ALT> tag.

    Inserting ALT Text

    Adding <ALT> descriptions to your <IMG> tags is quick and easy. You don’t have to do any complex HTML coding. If you can describe your image or link, then you can add ALT tags to your code.

    We’ve used some examples below:

    <img src="thumbnails/porn.jpg" 
      width="100" height="78" ALT="Explicit Teenage Sex Pictures">

    You can also include an ALT tag when your image is a link:

    <a href="porn.html"> 
    <img src="thumbnails/porn.jpg" 
    width="100" height="78" ALT="Explicit Teenage Sex Pictures"></a>

    Ideally, your ALT text descriptions should be complete sentences, rather than a list of keywords or obscure phrase like “company logo small 2.” Remember that all visitors are likely to see (or hear) some version of your ALT text so be sure that it’s meaningful.

    Optimize ALT Descriptions For Search Engines

    Besides helping human visitors, ALT descriptions help you rank higher in some search engines. AltaVista and Google are two of the search engines that use ALT descriptive text when they rank Web sites. The growth of search engine/directory partnerships means that a high rank in one engine can often translate into an improved rank on its partner sites.

    Search engine algorithms calculate the number of times keywords are repeated and give higher rank to pages that use them often. Keywords in the ALT descriptive text help you increase their frequency on the page. Search engines assume the terms are more relevant and important if they’re used in the page content, not just listed in the META tag.

    For instance, the descriptive text in the example code uses keywords and keyword phrases from the META keyword tag: Explicit Teenage Sex Pictures. Since these are relevant to the site’s content, they’re easy to include as descriptive text.

    If you’re having problems choosing relevant, targeted keywords, refer to this article, How To Pick Your Keywords. It provides helpful tips about selecting keywords and using them to improve your search engine ranking.

    Make Your Web Site Sticky

    ALT tags help you promote your site in another way too: they help make it “sticky.” Sticky means that visitors stay at your site longer so they see your advertising and purchase your memberships. Visitors who feel comfortable at a site will stay longer – and hopefully return more often to make further purchases.

    Disabled visitors who use text-only or spoken word browsers rely on the ALT text for clues about the image’s content and function. This can be a lucrative audience: they represent a worldwide audience of 750 million and spend twice as much time online as the average user. But it isn’t just a disability issue: ALT tags make your site more accessible to everyone.

    Visitors see your ALT text while the images are downloading or when they mouse over images. The descriptive text helps them decide if they want to wait for an image to download or move on to a different page. If your image is also a link, then visitors can read the explanatory text and quickly jump to the section they want.

    Site navigation is easier, so impatient visitors are less likely to leave the site.

    Don’t Follow The Crowd

    ALT tags are a small addition to your HTML code that can make a big impact on your site. Since many of your competitors don’t use them, give your site and edge and include them on all images.

    Article Written By Lee

  • Tips For Submitting To TGP’s

    Date: 2011.02.24 | Category: TGP | Response: 0

    One of the most popular ways for getting traffic to sites these days is to submit galleries to TGP’s and because it is so popular there is a lot of competition for getting listed. If you like, it is a buyer’s (TGP’s) market, with the supply of galleries exceeding the demand. For example, at Richard’s Realm we only list about 60% of the galleries submitted and that’s after we’ve filtered out unwanted free hosts, free email addresses and submission bots. If we didn’t do that we would be listing about 20%-30% of all submissions.

    Before you begin

    Submitting to TGP’s is a numbers game. It’s all about volume and percentages. The amount of money your gallery generates can be estimated using a formula with 4 elements:

    Total Hits To Gallery X Click Through Ratio X Signup Ratio X $ Per Signup = Total Revenue

    So, for example, 1 in 25 surfers to your gallery clicks on a banner or a link, you use a sponsor paying $30 a signup and you have a 1:400 signup ratio with them from your TGP traffic. The formula then becomes:

    Total Hits To Gallery X 4% X 0.25% X $30 = Total Revenue

    You can see now that the only thing remaining that will affect your Total Revenue is the Total Hits To Gallery. If you increase the Total Hits To Gallery the Total Revenue will also increase.

    Of course, experienced TGP submitters also know that you can work on improving the other elements of the formula to improve Total Revenue. They tweak their galleries and change banner and link placement to maximize the Click Through Ratio. If it is improved and rises from 1 in 25 (4%) to 1 in 20 (5%), their Total Revenue increases overall by 20%.

    Building the gallery

    Examine the formula above and you will see that two elements can be manipulated at the gallery building stage: Click Through Ratio and Signup Ratio.

    It is always said, and surprisingly often overlooked, but select a sponsor for a gallery which complements the gallery’s content. For example, if you build a big tits gallery use a big tits sponsor. With more and more TGP’s becoming categorized people surfing the big tits category will be looking for bit tits and are more likely to be interested in a big tits sponsor!

    In addition, be sure to use sponsors which are not overly-used, sponsors which are little known. If you go through a TGP you will see the same sponsors and banners showing up all the time. If a surfer sees a banner 10 times they are only going to click on it the once. So even if you build the perfect gallery with top notch banner placement and pictures, if the surfer clicked on the same banner on the previous gallery they’re not going to click on yours!

    Selecting TGP’s

    There are hundreds of TGP’s you can submit to. It is usually advantageous to select TGP’s that only post your type of gallery, as well as the more generic ones. For example, submit to TGP’s which only list big tit galleries or galleries with one-legged midget lesbians (if that’s your niche). The more targeted traffic will usually result in better click-through ratios and better signups, especially if you’re using a new or little-known sponsor for the particular niche.

    TGP’s with a moderate level of traffic that send a few hundred hits tend to be quite good. Admittedly, to get any real volume you need to submit to quite a few, but consider using TGSW to do the bulk of it. My reasoning for using the smaller TGP’s is that they tend to list fewer pages and the surfers tend to be less “professional” and adept at dodging banners.

    Submitting your gallery

    There are no real tricks to this bit, but it is very important to remember that TGP’s usually get far more submissions than they need or want. You must try your best not to give them a reason to reject your gallery:

    • Read the rules carefully and follow them. The TGP webmaster doesn’t put them there for fun and if you break them it’s possible you will be blacklisted.
    • Look at the galleries already listed on the TGP to get some idea of what the webmaster likes.
    • Don’t try to be smart and use different names and email addresses to avoid the per webmaster submission limits. Although galleries can look very different, reviewers have a good memory and can often recognize designs, layouts and descriptions. If they spot you trying to cheat you’ll probably end up getting blacklisted.
    • Take a look at their TGP and see what kind of description they like, Adult Buffet have very different descriptions to Richards-Realm. This might not determine whether or not you get listed, but it’s a chance to get a good description of your choice and, hopefully, more hits.
    • Select the right category for your gallery. If you submit your gallery to the “Teens” category and it should be in the “Mature Women” category it will get put there or rejected. If you get the gallery listed in the wrong category you may get more hits, but if a surfer is expecting a nice young lady in the pictures he’s just going to hit his back button and look at the next gallery in the list – probably not even giving your banners a chance to load.

    Monitoring your gallery

    Once you’ve submitted your gallery you should keep an eye on how it performs. View the stats to see who listed you, how many hits they sent and how much you made from the gallery. It is even worthwhile to create galleries dedicated to specific TGP’s, so you can monitor their performance even more closely. If a TGP sends lots of hits but no signups it’s probably worth no longer submitting to them or changing the gallery to see if you can improve the click throughs or signups. Compare before and after stats if you make changes in the gallery layout or sponsor to see if they’re working.

    Whatever you do keep tweaking and monitoring your galleries to get the best possible performance for each of the elements in the revenue formula.

    Article written by Richard

  • Golden Rules For Finding A New Domain Name

    Date: 2011.02.22 | Category: Domain Names | Response: 0

    We all know by now that domain names are being registered at an unbelievable rate and, whilst the vast majority of ‘decent’ domain names have already been registered there are still some god domains to be registered and, this article will give you some insight into how you can choose an effective domain for your business purposes – regardless of what they are.

    Avoid Play On Words.

    Whilst sitting at a bar you come up with an idea for a domain www.4play.com and, at the time this might seem like a great domain name to buy however, before you head to your favorite register and purchase the domain stop to think about the long term implications.

    Let me explain this a little more using the example www.4play.com lets think about this, every time you mention the domain in a conversation people are more likely to head across to www.foreplay.com or www.fourplay.com first as a type-in. This is also true of the other abbreviation styles of ‘internet slang’ remember the days of the ‘dot com’ registrations, you know domains such as www.dotsex.com looking back now, these seem ridiculous to have been registered however, at the time they were popular but they died their death years ago.

    Think Investment.

    A good ‘commercial’ domain must be able to distinguish itself from the competition, there are several ways to achieve this for example:

    Consider Your Target Audience.

    Aim your domain at a specific, yet broad market audience. use tools to narrow down what your customers (surfers) are looking for, narrow this list down to a select few domains and then, narrow the list down some more.

    Follow Trends Or… Create Them.

    If you are serious about picking a good domain name or two then be prepared to invest the time required to get a good domain name. Research the latest trends on the internet, see what products or services are ‘hot’ and will be around long term and also see which domains are just a flash in the pan.

    A good example of ‘long term’ domains would be www.europeanwebmasters.com which i registered several years ago when, in all honesty, the foreign markets were not even thought about however, you cant go to any forum nowadays without someone asking about the international marketplace.

    Act On A Whim.

    In complete contrast to my opening statement in this article, if you think you have a solid business idea, act on it, the chances are someone else will also think of the same idea as you and, if you don’t get the domain name first, they will.

    Alternative Buying.

    So you have decided that you do want to buy www.4play.com before you make your purchase have a look at what other variants of this domain are available, for example, you might like to check registrations of www.4-play.com, www.for-play.com, www.forplay.com, etc etc.

    If you have a great business idea, make sure you have all of your bases covered, just because you are starting a new craze, that doesn’t mean the domains will be available for registration tomorrow or next week.

    By purchasing all the variants of the high quality domain you have thought of you are, in effect, eliminating all of the competition you could face long term.

    Don’t Cyber-Squat.

    If you are a serious domain buyer, avoid tailgating on other peoples domain names unless of course, it has enormous potential for example, if someone has registered a generic domain such as www.123456.com but failed to register www.123-456.com why not register the available domain? You are not impeding on anyone’s property rights and, you might benefit from some mis-typed traffic at the same time. As with any type of mis-typed domain, before you register it, seek legal advice, a few dollars spent before registering the domain could save you thousands afterwards.

    Fools Rush In.

    Don’t automatically buy the first domain name you think of, think on it some more, sleep on it if you have to, ask your family and friends on their opinions. Although the really good domain names have virtually almost all gone, its better to carefully think out each and every domain name purchase you make and save yourself some money long term than to rush in and buy a domain that wont be any use and have to register a new domain to take the place of the first.

    In addition to the above don’t sit on a really good domain name idea forever because, forever comes a lot sooner than you may think.

    Hopefully this article has given you some useful information in respect of registering new domain names and you can put this information to good practice when buying domains. Article written by Lee

  • Mirroring Adult Sites – Stage Three

    Date: 2011.02.23 | Category: Promotion, Tutorials | Response: 0

    So we hit stage three of our tutorial in this stage we are going to make some pages for our top 5 AVS systems. However, as we did in the last tutorial with the new TGP galleries we created we are going to use the same content and same pages that we have already built. On with the tutorial…

    Anyone who build AVS sites will know that you need to have a standard site layout. This usually consists of an entry page (or a warning page), a navigational page (or in our case our menu.html page) and some gallery pages.

    So the first thing we need to do is open up the warning page. Once this page has been opened we now need to do some editing of the page, what I would suggest is moving the warning text to the lower half of the page and at the top making some ‘juicy’ sales text, depending on the niche you are targeting with this site you may also like to add a couple of the original thumbnail images at the VERY top of your page however, these should NOT be linked to the full size image.

    Once you have edited your page to a reasonable standard for the AVS you now need to save this page in the /FreeSite/AVS/ folder that you originally created on your HD. I would suggest saving the page as something like avs1.html or the name of the AVS you will be using this page for.

    Once you have done this you now need to duplicate this page but save it as a different name in again, in the /FreeSite/AVS/ folder so you will end up with avs1.html, avs2.html, etc.

    At the moment these AVS pages have no AVS script on them so, we need to visit the AVS system we are going to be using and fill out the details to have the AVS generate an AVS signup page script for us. Once we have the coding that the AVS provides we now have to place this on our avs1.html page. You should repeat this for each of the AVS’s you wish to use and save each instance of the generated AVS script to a separate AVS*.html page.

    be aware, that when you are putting your information into the AVS to generate the script, you should enter the ‘members area url’ as the page we created for our navigation so, the AVS script location will be /FreeSite/AVS/avs1.html and, the members area page will be, /FreeSite/Menu/menu.html.

    Once you have placed the script on our avs.html pages you should now have the following sites ready:

    1) 50 Pic Free Site With Pics On HTML Pages.
    2) 5 TGP Galleries With Pics On HTML Pages.
    3) 5 AVS Entry Pages.

    Now we are starting to see how using one set of content can amount to a mass of sites all of which can be sending traffic to our sponsors and, to our surfer trap.

    This is where stage three of our tutorial ends however, in our next tutorial we will continue to make some more sites and in an effort to get some traffic we start to play with the ones we have currently created.

    Article written by Lee

  • Search Engine Optimization, Is It Worth It?

    Date: 2011.02.24 | Category: Search Engine Optimization | Response: 0

    One of the trendiest takes on Internet marketing these days seems to be the notion that securing top search engine rankings “no longer works.” Where it started, I have no idea.

    But rarely does a week go by when I don’t see one or more Internet marketing “experts” claiming that search engine positioning is largely a waste of time and should not be a primary focus of Website owners.

    Well, as the saying goes, “there are two sides to every story.”

    But let’s not make this article about my side, or your side, or anyone else’s side. Let’s forget about my opinion and other “expert’s” opinions and stick to the indisputable facts, as reported by highly credible third party sources:

    According to a Forrester Research Media Field Study, getting a loyal audience in the first place is best done by Search Engine Placement.

    According to a GVU Users Survey, 84.8% of Internet users use Search Engines to find Websites.

    In a study released by ActivMedia Research in September 1999, Search Engine Positioning was ranked as the #1 Website promotional method used by eCommerce sites.

    And look what I just found in the April 2000 issue of Target Marketing Magazine.
    “Top Ways Websites are Discovered”

    Banner ads: 1%

    Targeted email: 1.2%

    TV spots: 1.4%

    “By accident”: 2.1%

    Magazine ads: 4.4%

    Word-of-mouth: 20%

    Random Surfing: 20%

    Search Engines: 46%

    You’ve now seen the numbers and know that search engine promotion is very much alive and kicking. But let’s take this a step further. Let’s talk about the *quality* of prospects coming to your Website through search engines as opposed to other advertising mediums.

    Every time your potential customers use the search engines, they qualify themselves as *hot prospects* by conducting searches on keywords that are directly related to your product or service. Their choice of keywords is proof that they have a genuine interest in what you offer. These people spend their valuable time exploring the search engines for your type of product or service.

    Think About That.

    They didn’t stumble upon one of your ads, or wander past a hyperlink to your site. And they didn’t get a banner ad thrown in their face. They made the *decision* to actively search the keywords that brought them to YOUR Website. And when they get there, they are ready and willing to do business with you. At the very least, they’re seriously considering it and, that’s the most powerful sales tool you can have!

    But merely getting your Website “indexed” or listed in the search engines is not enough. In order to get any significant traffic from the search engines, your Website must be listed within the top 30 search results (preferably the top 20).

    Very rarely will anyone look beyond the first 30 results returned from a search. This makes perfect sense because the most relevant sites are always listed at the top. So if your prospect doesn’t find what they want within the first 20 to 30 listings, they’ll simply do a new search.

    If your site falls anywhere below the 30th listing, you don’t stand a chance against anyone in the TOP-20. Hence, it should be your goal to achieve Top 20 positions.

    How Do You Get Your Website Listed In The Top 20?

    1) You can attempt to gain these Top 20 rankings yourself. However, this can easily become a full time job. (I think this is why so many marketers advise against focusing on search engine positioning.)

    2) You can hire a reputable company who can achieve AND maintain your Top 20 rankings for you (be sure they guarantee their service and have several verifiable clients that currently have multiple Top 20 rankings).

    3) You can do nothing at all. But as you’ve seen from the third party statistics referenced above, search engine positioning is something you can’t afford to ignore.

    Whatever choice you make, I hope that your eyes have been opened to the tremendous profit potential that exists with top search engine placement.

    Article written by Lee

  • Why Cant I Get Indexed By The Search Engines?

    Date: 2011.02.24 | Category: Search Engine Optimization | Response: 0

    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

Site Links