• Content – Keeping your members coming back for more

    Date: 2011.02.22 | Category: Content | Response: 0

    We know that the first battle for pay site owners is getting the traffic and the signups. But, sometimes this becomes such a focus that we forget the other battle: keeping members interested once you have them. When people pay for a membership to a site they are expecting to get their money’s worth. In return for their monthly fee they are looking for a site that encompasses quality, variety and originality.

    As the web grows, so does the online entertainment industry. Four or five years ago there was only a handful of pay sites around compared to the thousands and thousands that are on the net today. Back then, you could literally put any kind of content on your sites and you would have membership, there just was not much choice out there for the connoisseur of porn. Now, potential members are more informed, they know what is out there, they know what they like, and they know what they want to see.

    What has to be done to cater to these more discriminating porn shoppers? You have to give them what they want. Here are some useful tips for choosing a content provider and/or content for your pay sites that will keep the members coming back for more:

    Go for the exclusive content.

    You want to be able to provide your members with something that is fairly fresh and that is not pasted on every pay site on the Internet. The last thing a potential buyer wants to see is a site that is a carbon copy of half the sites out there.

    Choose leased content.

    Choosing leased content over buying CD’s is a good way to keep your site fresh. Most leased content providers will update their content on a bi-monthly or monthly basis. As well, with leased content, it is just a matter of adding the feed into your site. This alleviates the need for extensive extra graphic design work.

    Have a wide variety of content.

    Make sure that your site has a little bit of everything a potential member could want: pictures, videos, live feeds, etc. The more you have the better. Many content providers have great package deals available that will include all of these things all set up and ready to put on a site.

    Choose a reputable content provider.

    You want to make sure that when you choose a content provider that you do not just go for the best deal out there. You want to also look at things like: how much bandwidth they provide, what their technical support is like and last but not least, do they have good customer service.

    These are just but a few helpful suggestions to follow when choosing content for your pay site. There are certainly many ways to achieve a high rate of member retention. One thing that many of our customers tell us is that they find that having a least one voyeur feed on their site great for keeping the members coming back for more. Laura’s Condo, one of our voyeur feeds, has one of the best member retention rates around. Visitors get attached to the girls, develop a rapport with them and they do not want to lose that. Hence, they will keep renewing to be able to keep their relationship going with their favorite girl.

    The number one thing that pay site owners must remember is that members equal money and in order to keep the cash flow rolling in they must keep the members interested and give them what they want. By spending a little extra money to get high quality exclusive content, you will actually be putting more money in recurring memberships back in your pocket at the end of the day.

    Article written by Meredith Murray

  • Using .htaccess Effectively

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    The .htaccess file is an ASCII text document that can be placed in any directory on your site. It can be used to control access to files and directories, and customize some server operation in your site. A .htaccess file can be created in any word processor but must be saved as text only. You must use FTP software in ASCII mode to upload or edit your .htaccess file. For the examples provided here, place the .htaccess file in your root directory.

    There are a variety of functions that you can control using .htaccess some of the more useful of these are explained below:

    Custom Error Messages.

    Add the following to the .htaccess file::

    ErrorDocument 404 /notfound.html

    After “ErrorDocument” specify the error code, followed by a space, and then the path and filename of the .html file you would like to be displayed when the specified error is generated, each specific error code is detailed below with the recommended codes to be used in the .htaccess file in bold :

    200 OK
    206 Partial content
    301 Document moved permanently
    302 Document found elsewhere
    304 Not modified since last retrieval
    400 Bad request
    403 Access forbidden
    404 Document not found
    408 Request timeout
    500 Internal server error
    501 Request type not supported

    Using the codes above your error section of the .htaccess file should look like this:

    ErrorDocument 301 /notfound.html
    ErrorDocument 400 /notfound.html
    ErrorDocument 403 /notfound.html
    ErrorDocument 404 /notfound.html
    ErrorDocument 500 /notfound.html
    ErrorDocument 501 /notfound.html

    Redirect to a Different Folder.

    Add the following to the .htaccess file:

    RewriteEngine on
    RewriteRule ^/oldfolder(.*)$ /newfolder/$1 [R]

    This redirects the user from /oldfolder/anyfile.html to /newfolder/anyfile.html, when the .htaccess file is uploaded to the otherwise empty “/oldfolder” directory.

    Denying User Access.

    Add the following to the .htaccess file:

    <Limit GET>
    order allow,deny
    deny from 000.00.00.
    deny from 000.000.000.000
    allow from all
    </Limit>

    This is an example of a .htaccess file that will block access to your site to anyone who is coming from any IP address beginning with 000.00.00 and from the specific IP address 000.000.000.000 . By specifying only part of an IP address, and ending the partial IP address with a period, all sub-addresses coming from the specified IP address block will be blocked. You must use the IP addresses to block access, use of domain names is not supported

    Redirect a Machine Name.

    Add the following to the .htaccess file:

    RewriteEngine On
    Options +FollowSymlinks
    RewriteBase /
    # Rewrite Rule for machine.domain-name.net
    RewriteCond %{HTTP_HOST} machine.domain-name.net $
    RewriteCond %{REQUEST_URI} !machine/
    RewriteRule ^(.*)$ machine/$1

    This will redirect requests for the machine name machine.domain-name.net to the directory machine on the site domain-name.net.

    Different Default Home Page.

    Add the following to the .htaccess file:

    DirectoryIndex filename.html

    Then a request for http://domain-name.net/ would return http://domain-name.net/filename.html if it exists, or would list the directory if it did not exist.

    To automatically run a cgi script, add the following to the .htaccess file:

    DirectoryIndex /cgi-local/index.pl

    This would cause the CGI script /cgi-bin/index.pl to be executed.

    If you place your .htaccess file containing the DirectoryIndex specification in the root directory of your site, it will apply for all sub-directories at your site.

    Preventing Hot Linking.

    Add the following to the .htaccess file:

    # Rewrite Rule for images
    RewriteCond %{HTTP_REFERER} <URL of page accessing your domain>
    RewriteRule ^(.*)$ http://<same as above URL>

    You would replace the <URL of page accessing your domain> above with the domain name and path of the page that is referring to your domain. For example: www.theirdomain.com/users/mypage/

    The RewriteCond directive states that if the {HTTP_REFERER} matches the URL that follows, then use the RewriteRule directive. The RewriteRule directive will redirect any reference back to the referring web page.

    Using the above you should, safely be able to publish your sites on the internet knowing that you will not be privy to bandwidth thieves via hotlinking and also, that you will not lose any traffic through pages that are ‘not found’.

    Article Written By Lee

  • Redirecting Questionable Adult Traffic

    Date: 2011.02.24 | Category: 2257, Scripts | Response: 0

    The one thing almost all reputable adult webmasters agree on is that one way or the other, we want to rid the net of those webmasters that profit from traffic primarily gained from either the direct promotion of or, targeting of, keywords relating to child pornography however, how can you tell what traffic you are being sent and, more importantly, how can you do something about the type of traffic that you receive to your site in order to filter out this unwanted traffic? The answer is simple, use a script to redirect the traffic elsewhere before it even hits your site.

    Child Porn Redirection Php Script.

    The following php script when used on your server will enable you to send unwanted traffic gained by the promotion of using ‘illegal’ keywords in the search engines and sites which link to your own.

    <!– Start Copy Here –>

    <?

    // Redirect “Lolita” traffic

    $refer_full_path = “$HTTP_REFERER”.”$PATH_INFO”;

    if(( preg_match(“/lolita/i”, $refer_full_path)) ||
    ( preg_match(“/child/i”, $refer_full_path)) ||
    ( preg_match(“/preteen/i”, $refer_full_path)) ||
    ( preg_match(“/pre-teen/i”, $refer_full_path)) ||
    ( preg_match(“/pedo/i”, $refer_full_path)) ||
    ( preg_match(“/underage/i”, $refer_full_path)) ||
    ( preg_match(“/beast/i”, $refer_full_path)) ||
    ( preg_match(“/rape/i”, $refer_full_path)) ||
    ( preg_match(“/kinder/i”, $refer_full_path)) ||
    ( preg_match(“/incest/i”, $refer_full_path)) ||
    ( preg_match(“/kiddie/i”, $refer_full_path))) {

    header(“Location: $refer_full_path”);
    exit;
    }

    ?>

    <?
    $words=array(“childporn”,”underage”,”beast”,”interracial”,”lolita”,”preteen”);
    for($i=0;$i<count($words);$i++){
    if(eregi($words[$i],$HTTP_REFERER)){
    header(“Location: http://www.fbi.gov/?CHILD_PORN_ON_DISK_LOGGED_AND_REPORTED”);
    }
    }
    ?>

    <!– End Copy Here –>

    In order to use this script, simply add additional keywords or partial word matches to the top part of the script and, include the bottom half of the script at the top of your HTML coding.

    Any traffic being sent to your site via keywords which you have specifically told the script not to allow access to your web site will be forwarded to the url in the bottom part of the php script which again, can be changed to wherever you like.

    Article written by Lee

  • European Surfers – Gold Waiting To Be Harvested

    Date: 2011.02.22 | Category: Promotion, Traffic | Response: 0

    80% Of the internets content is English. 40% of internet surfers cant even read English, let alone understand it. Out of all the countries in the world, German internet users spend an average of 59.2 minutes looking at porn a month closely followed by Norwegian surfers who looked at it 55.4 minutes every month, how many of you have sites catering to this market? Not one of you… I would bet!

    Most webmasters that I know of automatically assume, European surfers = Freeloading Bestiality Loving Sicko’s. That’s bullshit! In fact, a larger and larger percentage of European surfers are looking for porn. Sure, they can find it by the bucket load but, lets be honest, Herman from Munich who cant speak a word of English is going to be making a lot more from this industry than Jason in Miami.. WHY? Because Herman has a captive audience, most of his surfers are German speaking after all, that’s the language he makes his sites in, that’s the language of the sponsors he uses and, like it or not, German surfers are proven to be avid porn surfers and, more importantly, Credit Card spenders!
    But Wait…

    Hang on a second, Credit Card spenders? But I thought the best way of milking $$$ out of foreign surfers was to send them off to a dialer program? hmmm…. perhaps I’m missing something??

    You are! there are a lot of sponsors that don’t have any sites in English, Germany has a load of high converting AVS sites, why is this? Because they are written completely in German, Spain has a lot of good quality sponsor that work wonders, Why? Again because they are written in Spanish.

    You have a lot of AVS, TGP and free sites that don’t make as much as they could, WHY? because you haven’t considered the global market! Let’s be honest here, the big sponsors of this world you use, how many of them say in their terms and conditions, they don’t allow access to German, Spanish, Ukrainian, Russian surfers? Ill bet at least 50% or more of them right? that’s money you have just lost! Sure, you can ship them off to a dialer program and hope they download it, most wont, sure you can send them to an opt-in email program and hope to make some money from them long term, you wont, In fact, European surfers detest having to give any information about them out. Its a privacy thing, they don’t want you to know who they are, so you cant tell their governments who they are, it sounds harsh but, its true.

    So How Do I Do It??

    The best way to milk money from the European surfers is to treat them EXACTLY the same as American surfers, but, with one major difference… You need to build for their language, get this right and you’ll be laughing all the way to the Bundesbank :)

    But, where do you start, how can you build a site in a language you know nothing about? Simple, do some research, there are places out there that cater to European based webmasters, go to the forums, ask for help, you wont be laughed at, you wont be ridiculed and, who knows, you may just learn something in the process!

    Sign up to a foreign sponsor, you can find a lot on our site, most of, if not all of these foreign sponsor will gladly help you out, they have email support in a variety of languages themselves, drop them a line, tell them you need help, Ask for it… It will come.

    Now you have the help you need what next? use it, ask everyday if you have to, there are some good translation services available on the net, spend $50 to get an existing site you have that’s working well translated into a foreign language, I guarantee you, its money well spent! Once you have this translated ‘template’ site use it time and time again, tweak it until you find the best converting site you can, submit it to all the foreign search engines around, you’ll soon pick up that its not much different to working your ‘standard’ sites except, you’ll have trapped a larger percentage of internet porn surfers and, what’s more, this is a percentage that YOUR competitors wont have!

    Integration..

    Is it possible to build foreign sites and English site to work together? YES but, its hard, you have to mimic the responses you have learnt from the trial you did with the first translated site, once you start to see trends happening, build on them, if something doesn’t work, swap it out, put something in its place, even if.. Its a US sponsor. You have the framework, the surfer is in your site, they know what its about, that’s the time to start introducing the foreign (to them) sponsors ads.

    The Results..

    The results of your trial will speak for themselves, you will have tapped into an as yet untamed market, You will have more scope of growth for your business, You will have established a new traffic source, You will be able to reap the benefits. Of course, you need to work for it, don’t expect magic overnight, it just isn’t gonna happen! Remember when you first started webmastering? it was hard work, tapping into the European market is even harder, its like starting all over again from scratch then, realizing you know what your doing but you have been doing it wrong all these years.

    Article written by Lee

  • Masters Of Discipline – Have You Got What It Takes?

    Date: 2011.02.22 | Category: General | Response: 0

    So you want to throw in your day job and become a full time adult Webmaster? Well yeah, I can hear you saying, “Who wouldn’t want to be surrounded by pictures of beautiful women all day, make up their own hours, and be the master of their own destiny?” It just sounds sooo good when it’s put like that doesn’t it?

    Before you tell your boss you quit, you might want to read this article first, as the reality of working in this industry and especially for yourself can be a real wake up call for many.

    The main thing you need to succeed in this business is discipline, and lots of it. If there are temptations when you work for someone else to slack off, take a sick day, or simply not bother showing up, then you can double those temptations when you work for yourself.

    It’s so easy to roll over in the morning rather than get out of bed, stagger to the PC, and actually work.

    It’s so easy to decide to take the day off when the sun is shining and the beach is calling. You simply tell yourself you’ll make up for it tonight, and then find yourself coming home at 3am.

    It’s so easy to not actually work, when you work for yourself, that at times it can be unreal.

    The reality of doing any of the above is longer nights, less sleep, and almost inevitably smaller paychecks.

    Structure Your Day.

    The answer to this problem is to really think about your working day and give it some structure, just as you would if you worked for someone else. Work set hours and take frequent breaks. When you work for someone else they make you take breaks for a variety of reasons, but mostly, because as research has proved, you’ll be more productive after one. It’s also important to make sure others know your hours as well, and always remember to add what time zone you are located in on any correspondence. There is nothing worse than being awoken by an associate at 3am because you forgot that little detail!

    Set A Routine.

    Get into a routine! There are various tasks that must be done each week no mater how boring. By creating a work routine, you can control your time and structure the more boring jobs at the end of the day when for most our creativity levels are less. You can also structure that routine as I do, when I’ve finished those boring tasks at the end of each day, I reward myself with some time doing what I want to do.

    Going Solo.

    This can be a lonely business and if you don’t like working alone then maybe it’s not the right one for you. You’ll likely spend many hours in your own company and as someone else pointed out to me, while boards and instant messengers are great, they can also eat heavily into your working time if you’re not careful. Personally, I use the boards and chats as a treat when I’ve accomplished a goal, unless I need to talk to someone in order to get that set goal done.

    If, like me, your office is in your home, in reality you never really leave work. It’s just always there and there is always something else to be done, and it’s so tempting just to work a few more hours. Having the discipline to stick to your office hours is the trick and where structure comes into play. The saying all work and no play makes Jack/Jill a dull boy/girl is really true here.

    The biggest trick of all though, is learning to recognize your limits. Set them and stick to them. Unlike in the normal workplace, you won’t have the big cheese or even the little one watching over your shoulder, making sure you work or making sure that your paycheck and your bills are covered each week. That’s up to you now.

    Think Before You Leap.

    Another thing you need to consider is can you REALLY afford to give up your day job? Working for someone else means that for the most part you will have a reliable pay check each week or month, when you work for yourself you loose that security. There are other things to consider as well like health insurance, book keeping and how exactly you are going to pay for them. Of course if there is another bread winner in the house this may not be of such a concern, but it’s still something you should consider before you give in your slip. As a general rule of thumb, if you’re considering going it alone, don’t, at least not until you have enough cash saved to cover any outgoings you might have over a six months period.

    How well do you know the law? If you think the law doesn’t affect you because your just one person working from home then think again. If you don’t know your Title 18 USC 2257 from your arse then you may be heading for trouble. Standing in front of a judge and saying I didn’t know won’t get you out of a heavy fine or even a prison sentence.

    The real questions you need to ask yourself now are you up to the challenge, and do you have the personal discipline to make this work for you?

    Article written by Jenne.

    http://www.clitical.com.

  • Search Engine Themes!

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

    It’s safe to say that the ‘pay-per-inclusion’ model is rapidly catching on with today’s search engines and directories as they are forced to become profitable in a hurry. But there’s also another trend that’s come to the fore.

    ‘Theme indexing’ is a process used by search engines to determine an entire site’s primary theme. In other words, your complete set of Web pages is indexed as one, and defined as one.

    This is why sites with multiple product lines and subject content often get poor rankings today. To learn how to combat this, let’s first look at the theme indexing process from the search engine’s point of view.

    According to Search Engine World, the theme indexing search engine follows this basic 5-step progression as it ‘weighs’ what a particular site is about:

    1. Page Titles
    2. Meta Tags
    3. Page Headings
    4. Page Content
    5. Links

    This is a general overview of the approach – each search engine is unique, and no one has the ultimate read on every search site. But to date this has proven to be true of AltaVista, Google, Excite, Lycos and WebCrawler.

    All of these belong on the ‘Who’s Who’ list of major search sites today. If it’s important that your Web business be found among them, today you must write your site with theme indexing in mind. Here’s how:

    The concept itself is simple. Focus your entire site like a laser beam on a single, potent theme.

    The process is ruthless. Get rid of the deadwood. Set up additional sites as needed for each individual product and service ‘family’.

    In the same way that you must now invest to get indexed on Yahoo, LookSmart, Inktomi and other top directories, you need to invest in separating your activities by theme into multiple Web sites. Kick out unrelated content, links and affiliate programs that don’t relate to your market niche. Build new sites as needed, with each focusing on its own unique selling proposition. This is the first step to take in the optimization copywriting process.

    Having done this, here’s how to write each site to get the best possible positioning on theme indexing search engines.

    Focus Your Key Phrase.

    Determine what key phrase your entire site is about – a key phrase people use often on the search engines. To pick heavily searched, popular key phrases, try Word Tracker: http://www.wordtracker.com/.

    Write Your Copy. Throughout your site play variations on your key phrase theme. Every element counts: page titles, meta tags, page headings, page content, links. Remember to write for people first. Search engines are robotic, but people always want to know what’s in your site for them. Tell them what qualifies you to help, and what you have to offer. Balance using your key phrase with the benefits you deliver.

    Once you’ve written your copy, search your text for generic phrases like ‘our product’ and substitute your key phrase. Use long copy where you can. Not only does it outsell shorter copy – it also makes it easier for you to write keyword-rich text.

    Format Your Text.

    Use key phrase bullets. They break up text copy and serve you as mini headlines with an entirely different look and feel.

    Use multiple headlines to create immediate context when a visitor explores your site. Make these headlines specific by using your key phrase. Tag headlines in your source code – <H1>, <H2> or <H3> – to highlight your theme.

    Write your links as mini-headlines. Often people scan pages by jumping from one link to another. Link words look very much like headlines, or highlighted words, and should deliver your primary message and key phrase.

    Measure and Test.

    Conventional wisdom tells us that the ideal keyword density is somewhere between 3-7%. To check this before you submit, try the free Keyword Density Analyzer: http://www.keyworddensity.com/. For a more accurate read on individual search engines, do a search under your key phrase, then take the top 3 returns, enter their URLs and try to match their percentages before you submit. Track your placement and adjust accordingly.

    This is the initial approach to optimization copywriting for theme indexing search engines. Keep it simple: start here.

    Article written by Lee

  • Building A Surfer Trap – Stage 4

    Date: 2011.02.21 | Category: Traffic | Response: 0

    Building A Surfer Trap – Stage 4.

    Here we go with stage 4 in our surfer trap.

    We should now have a pretty basic surfer trap set up with consoles on all of the FPA’s all of the links on all of the FPA’s (Excluding the FPA graphics) should go to either another FPA or, the a POTD Program.

    As mentioned in the last stage we are going to start building up some traffic to our surfer trap even though, we are not finished yet.

    The first place where you can get some good free traffic would be from a toplist counter.

    A good counter that I would recommend would be one of the following:

    Outster http://www.outster.com (A Gay Specific Counter)
    SexTracker http://www.sextracker.com (A General Adult Counter)

    You need to sign up to ONE of the above counters and only ONE.

    Usually a counter will ask you for some details when signing up for them these will usually include:

    Email Address.
    Site Url
    Name

    For the email address, enter a REAL email.
    For Your Name, Enter a name you wish to be known by to the counter owners.

    However, for the URL (The one to SEND traffic to FROM the counter) you should enter the index.html page of your surfer trap (The Multi-Site FPA).

    You will now be given some coding once you complete the counter sign up process. This counter code you now need to place on EVERY page of your surfer trap.

    Place the counter towards the bottom of your FPA’s (Including the Multi-Site FPA) this way, they will load after the rest of the graphics or at least, they should in theory.

    Basically what you are doing by implementing this counter is as follows:

    For each time the counter is displayed or clicked on your site (Depending on the counter you choose) you will earn one credit on the respective counters toplist.

    Each credit you earn on the toplist will move you higher up the list.

    Now, the higher up the list you get, the more visitors to the counter site that you are going to get visiting your surfer trap by clicking your link on the toplist.

    In return, by clicking on your surfer trap link from the toplist, they are ‘registering’ another impression of your counter hence, getting you one more ‘credit’ on the counter toplist hence, moving you higher in the listings.

    See where we are going with this?

    The more clicks you get from the counter to your hub, the higher you will get on the toplist in the process earning you more and more traffic to filter through your surfer trap.

    Adding these counter codes to your FPA’s as they stand at present should take you an hour or so to do so, for now this is where I will leave the traffic generation section of this tutorial.

    Article written by Lee

  • Payment Processors – Advice And Information

    Date: 2011.02.24 | Category: Billing Solutions | Response: 0

    For many, the first step in launching a successful pay site is to find a billing processor that can adequately and efficiently handle all levels of the membership payment process. The processor must also have the technical savvy to grow with your site.

    One such payment processor, iBill, is currently the premier provider of such solutions worldwide. They handle the payments in real time and all of the back-end services that enable you to run your business.

    Of course, there are many issues to consider when deciding on a payment processor apart from their commission rates on your sales, including the following:

    How do they handle the billing itself? Is it processed in real time? If your customers do not have immediate access to your site, they may decide not to join.

    How do they supply your account reports? You may want to know at 3 a.m. the number of members you have and how they are rebilling. iBill allows you to access detailed, real-time reporting 24 hours a day, so you know exactly who is a member of your site and, more importantly, what their username and passwords are. No one wants to find a member has posted a username and password on a trading site. If this occurs, iBill’s real-time reporting tools give you the ability to stop this immediately.

    How comprehensive are the payment options? Do you want to use credit cards, or do dialers or check transactions suit you more? The best way to maximize sales is to accept a full array of payment options. The more options you offer your members, the better the chance you’ll keep them rebilling month after month.

    How good is customer service? Does your payment processor offer access to live representatives 24 hours a day, 7 days a week? If so, you’ll resolve customer issues quickly and effectively, which reflects well on you and encourages loyalty from your members.

    How good is the fraud protection? Internet fraud is a constant threat. Your payment processor should have state-of-the-art fraud protection systems to guarantee the integrity of every transaction.

    Are there multilingual features for international members? Due to the global reach of the Internet, you must find solutions for foreign customers. Ideally, your payment processor’s website should be multilingual and easy to navigate in several key languages, such as German, Spanish, French, and Japanese.

    Choosing the right payment processor is a long, arduous task that, if done right, will result in a long-lasting working relationship. In turn, your members will feel confident in your site and stay with it. We hope this article has given you insight into finding the right billing party for your membership or online store. If you need any further assistance please feel free to contact us directly using the form on our site (URL below).

    Article provided by Internet Billing Company

  • Doorway Pages

    Date: 2011.02.22 | Category: Traffic, WebDesign | Response: 0

    A doorway page is built to rank high for a particular keyword or search phrase. When your doorway page is visited by the searcher it simply has a “click me” button which links to your web site. The major search engines accept these pages as long as the end result does provide what the searcher is looking for. If you are discovered to be using doorway pages for irrelevant keywords you can expect to have your entire domain unlisted. For instance, one of our doorway pages is built to rank high for the search term -Adult Content—which is quite acceptable because when the searcher gets here he can find links to adult content providers from our site. If however, he couldn’t find links to adult content then we would risk the wrath of the all powerful search engines.

    Once you have selected your keywords and phrases (about 50 would be the normal) you need to build a doorway page for each keyword and ideally, for each major search engine. All the major engines look for different keyword density in the text, title and description so you need to do some research by doing a search using your chosen phrase or keyword and studying the top 10 results at each engine (if you can spot them, study high ranking doorway pages).

    Make notes of how many times the phrase or keyword is used in the title, description and body text. Is it used in header text etc? Once you have built a picture of what your doorway page should look like you can build it using your favorite html editor. Once you have done one for a particular engine the other 50 or so pages can be done by simply replacing keywords for keywords. After you have done a page for each keyword move on to the next search engine. Remember that your body text is not important but make each page unique or it may be considered spamming. It is your keyword or phrase density that you are attempting to get right. The page, when visited by a person, will be recognized for what it is, simply a link to the real content so don’t worry too much about what it looks like. When a search engine spider visits the page it is only interested in counting the keyword density in your body text.

    As you have probably worked out there is quite a lot of work involved. 50 phrases or keywords=50 pages X the top 8 search engines= 400 pages. In reality though, you are only creating 8 doorways, 1 page for each search engine. For all the other pages you simply have to substitute the keyword for the next and alter the text around so as not to finish with 50 identical pages. OK, nearly finished but the next step is crucial if your doorways are to work.

    Put all your pages in a folder on your server e.g. Mydomain/doorways/. Then create 2 more pages that have a link and a small description to each of your doorways (200 on each) and to each other. These are called corridor pages because the spider travels down them, visiting each page linked off them. Call these 2 pages index and home and place them in the folder with your doorway pages. Then place links to these two pages from your main index page so that a spider will be able to find them and list all your doorways. Submit only your index page and your 2 corridor pages. Do not submit your doorways to the engines.

    Ideally, and if you can afford it, you should set up a new domain and host for your doorways. This isn’t essential but it does have benefits. These are: If you do get over zealous with your doorways and an engine does ban you for spamdexing at least your real site will be safe. Engines rank sites higher if they have lots of links to them from other domains. You can put your most important keywords in your new domain name, which will increase the ranking of the doorway pages containing those keywords.

    Now all you have to do is wait for the engines to update their databases. We have had the best results with Google.

    Article written by Lee

  • How To Claim Back European V.A.T

    Date: 2011.02.22 | Category: Billing Solutions, General | Response: 0

    With the recent legislations requiring US businesses to charge Value Added Tax to EU Member state customers for purchases of digital product / image downloads there are many new questions going around enquiring how companies and small business owners can claim the VAT back this is what we will look at in this brief article – The basics of claiming back your VAT from Europe.

    What Is V.A.T?

    Value Added Tax (VAT) is a consumption tax levied on goods and services in many countries across the globe. Over the last decade, legislation in the tax systems of Europe, Canada, Japan and South Korea allow for a refund for the majority of non resident entities, worldwide to a refund of VAT in most instances however, especially in the business world, registration must be achieved prior to claiming back your VAT and, preferably before the purchase of Vat able goods takes place.

    Who Is Entitled To A VAT Refund?

    Most businesses will be entitled to receive a VAT refund however, as the laws vary from country to country, the best way for you as a business owner to find out the laws as they affect you is to contact your company accountant who, should be knowledgable enough to inform you of what you need to claim back from each of the EU member states where V.A.T has been charged.

    What Products Can I Claim V.A.T Refunds For?

    Most typically value added tax recoverable expenses can take form as one or more of the following items:

    Business Property Expenses.
    Transportation Costs.
    Inter-company Billing.
    Marketing + Promotional Services.
    Exhibitions, Conferences + Business Meetings.
    Importation V.A.T.
    Digital Downloads (Business Related).

    How Do I Register For V.A.T?

    When a company inside the domestic US conducts transactions in the EU countries where value added tax registrations may be required the registration for the VAT refund should be done prior to the transaction taking place however, on occasions which vary from individual EU member states this registration process may be done retroactively. By becoming registered to claim your VAT back the company is legally required to d the following:

    1) Register for the VAT in the EU country where the transaction takes place.
    2) Account for VAT on all invoices or receipts issued to your European customers.
    3) Deduct the V.A.T incurred from your European suppliers of goods or services.

    Value Added Tax – An Overview.

    When all is said and done, other than the obvious need to increase your pricing structure for certain global markets registering for and, charging value added tax actually has a great deal of benefits. You now get to claim addition refunds from any expenses that you incur from the day to day running of your business, your promotional activities become vat’able so you can now increase the level of global marketing you do and, claim full value back from the EU member states (where applicable). basically, registering in the EU member state will enable your business to grow on a global scale and, at the same time, afford you the luxury of being able to market your goods and services to a greater client base at virtually no cost to yourself this is a good thing especially when you take a look at the growth that international internet usage is making each month.

    Article written by Lee

Premium Sponsors















Categories

Site Links