• The Negative Marketing Technique

    Date: 2011.02.24 | Category: Promotion | Response: 0

    Negative marketing is a wonderful thing in its own right however, negative marketing can, surprisingly enough have a NEGATIVE effect on your sales.

    How many times have you seen a site that has, about half way down the page some text telling the surfer no to click on anything because ‘these are only counters’?

    Counters in themselves can be VERY useful tools to the adult webmaster however, counters are given to us for free because of one simple reason, the graphics used on them are made in such a way that they will actually draw clicks from your traffic.

    Most of the time however, these counters that take your hits are helping you much more than you know, from giving you addition traffic, valuable surfer stats and many other things.

    Now, the same is also true for banner exchanges as is for counters, they are a useful addition to the variety of tools available for adult webmasters however, many webmasters, as mentioned above tell the surfer NOT to click on them, something i just never seemed to be able to get my head around. As you reading this post kind of proves, tell someone not to do something and you can guarantee they WILL do it

    However, as i started off this quick article saying, Negative marketing is a good thing, after all, you have now got the proof to tell you that it works why not put this to use on your site?

    For example, rather than telling a surfer…

    ‘Click Here For The Hottest Porn Site On The Web’

    Tell them…

    ‘DO NOT CLICK HERE’

    Wonder what they will do

    Article written by Lee

  • The Next Big Traffic Craze – Thumbnail Link Lists

    Date: 2011.02.24 | Category: Link Lists | Response: 0

    As adult webmasters are constantly thriving to create the next craze in traffic sources to garner sales from their sites it comes as no surprise that there is already talk amongst the ranks of the next big thing, what is this new idea? The Thumbnail Link List.

    Thumbnail Link Lists – Re-Inventing The Wheel.

    As the past year and a half have taught us as webmasters, regular TGP’s have almost become a thing of the past with more and more thumbnail TGP’s being created and submitted to daily, why then, has it taken so long for someone to think up the idea of the Thumbnail Link List? Quite simply I think it has been a case of to much has happened over the last 12 months in the adult industry for webmasters to think this idea up.

    So What Is A Thumbnail Link List?

    A thumbnail link list is in effect a way of displaying free sites on your own standard Link List by utilizing small thumbnail samples of the images contained within the free sites galleries, in fact, much the same way that a thumbnail TGP works however, instead of only listing single image galleries your link list will consist of links to individual free sites.

    Much like the Thumbnail TGP traffic source, the thinking behind the Thumbnail Link List is that by showing your surfers what type of pictures the sites within your link list contain they will be more likely to visit the free site thus improving your CTR to your webmaster submitted sites and, ultimately, your site overall allowing you to manipulate the traffic to garner more sales for yourself as the Thumbnail Link List owner.

    Submitting Your Site To A Thumbnail Link List.

    Looking at the Thumbnail Link List idea from a webmaster who would be submitting your free sites for listing (and ultimately traffic) how do the rules of the Thumbnail Link List differ to that of the regular link list which we are all used to seeing, well for a start, the main difference will be that you either need to submit a thumbnail yourself or, enter the url to one of your gallery pages in addition to the main entrance to your free site, this will actually be the only significant change in how you operate your link list submissions compared tot he current link list method, however, as each Thumbnail Link List owner will have their own individual rules you should check before submitting as to what is required from you as a submitter.

    Thumbnail Link Lists – Overview.

    The whole Thumbnail Link List idea is one that, in all seriousness should mean more traffic not only for the submitters of the free sites but, also for the Thumbnail Link List owner themselves, by offering the surfers a preview of the content contained within the free sites they will be visiting they can simply reduce the amount of sites that do not appeal to them and focus more on the sites that do meaning that the webmasters who submit highly niched free sites to the links lists will now be able to benefit from a larger traffic base and ultimately, more sales.

    Article written by Lee

  • Geo Targeting – What Exactly Is It?

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

    As the adult industry reaches further and further across the online global community we are beginning to realize the importance of our foreign surfers, gone are the days of shifting them off to a dialer site instead, we find more and more companies actually using geo-targeting techniques to filter and monetize this profitable traffic more but, how does geotargeting work and, more importantly, is it any good? They are the questions we will look at in this article.

    GEO::IP – The Basics.

    The Geo::ip module is a relatively simplistic database of IP addresses and, the matching country to which the IP address belongs. This means that the GEO::IP module can be used for a variety of purposes including automatically selecting the language and countries of your visitors, for credit card fraud detection, and for software export controls.

    Geo Targeting – The Basics.

    As described above, the GEO::IP module is what drives any and all forms of geographical location targeting system (geo targeting). Geo targeting is the method most commonly used in the adult industry to either send a surfer to a localized version of a paysite or, send them off to a dialer in an attempt to monetize them it works by checking either the surfers browser language, country ip address or, both of these.

    Putting Geo Targeting To Work.

    Despite what most webmasters may think about the complexities of geo targeting and the GEO::IP Module for Perl they are easy to use and implement and, furthermore, there are cost free and highly effective ways of using geo targeting on your sites to monetize your international traffic. Lets look at two easy free solutions for webmasters to geo target their traffic.

    JavaScript.

    Using JavaScript you could add the following code between your HTML <head> and </head> tags to redirect international traffic to a specific url on your server:

    <SCRIPT LANGUAGE=”JavaScript1.2″>
    <!– Begin
    if (navigator.appName == ‘Netscape’)
    var language = navigator.language;
    else
    var language = navigator.browserLanguage;

    if (language.indexOf(‘en’) > -1) document.location.href = ‘english.shtml';
    else if (language.indexOf(‘nl’) > -1) document.location.href = ‘dutch.shtml';
    else if (language.indexOf(‘fr’) > -1) document.location.href = ‘french.shtml';
    else if (language.indexOf(‘de’) > -1) document.location.href = ‘german.shtml';
    else if (language.indexOf(‘ja’) > -1) document.location.href = ‘japanese.shtml';
    else if (language.indexOf(‘it’) > -1) document.location.href = ‘italian.shtml';
    else if (language.indexOf(‘pt’) > -1) document.location.href = ‘portuguese.shtml';
    else if (language.indexOf(‘es’) > -1) document.location.href = ‘Spanish.shtml';
    else if (language.indexOf(‘sv’) > -1) document.location.href = ‘swedish.shtml';
    else if (language.indexOf(‘zh’) > -1) document.location.href = ‘chinese.shtml';
    else
    document.location.href = ‘english.shtml';
    // End –>
    </script>

    Php.

    Using .php you can add the following to your sites pages to redirect traffic based on their browser language.

    <?
    $user_lan = $HTTP_ACCEPT_LANGUAGE;

    if($user_lan==’de’) {
    ## German
    $redir_url = “http://www.germanlanguagepageurl.com”;

    } elseif($user_lan==’fr’) {
    ## French
    $redir_url = “http://www.frenchlanguagepageurl.com”;

    } elseif($user_lan==’it’) {
    ## Italian
    $redir_url = “http://www.italianlanguagepageurl.com”;

    } elseif($user_lan==’es’) {
    ## Spain
    $redir_url = “http://www.spanishlanguagepageurl.com”;

    ## US traffic or Rest of world not defined above
    } else {
    $redir_url = “http://www.yourmainpageurl.com”;

    }

    header(“Location: $redir_url”);
    exit;

    ?>

    As you can see from the above two examples, monetizing your international foreign traffic is a relatively easy step and, with the right sponsors to send this traffic to you will be able to reap the profits of countries that other webmasters are not targeting yet.

    Geo Targeting – Overview.

    When all is said and done geo targeting can be a cost effective way to increase your bottom line profits, whether using a free method as described above or, using one of the many filtering services available on the net you should start to monetize your global surfers. One thing you should also consider however is that far from sending your international traffic to a dialer you should search around and find a good mix of adult affiliate programs with a variety of localized paysites, this in itself will enable you to see just how much traffic you have been wasting by using dialers in the past and, it will also allow you to realize the full potential of your new found geo targeted adult traffic.

    Article written by Lee

  • Filtering Adult Traffic For More Sales

    Date: 2011.02.22 | Category: Traffic | Response: 0

    When webmasters build sites there seems to be the train of thought that just because they use one of the top converting sponsors site they will make sales regardless of what type of traffic they are sending.

    Unfortunately, this is often not true.

    One of the first steps that we should take as webmasters when it comes to creating a new site, whether it be a free, avs or a TGP site is to learn the art of targeting our sponsors tour with the content and, more importantly, the traffic we are going to use.

    taking it to the simplistic levels, a straight teen sponsors wont convert on a site that gets mostly mature traffic, the niches, although complementary, are so far apart its unrealistic.

    That said, lets take a look at some options we can all implement on our sites to better target and filter our traffic to ensure optimum conversions.

    One of the simplest ways to target and filter your traffic is to build yourself a hub or a surfer trap. Of course, we also have to take into consideration the type of traffic we are currently receiving to our site and, that we ‘could’ receive in the future.

    Just because we receive 10,000 hits to our teen TGP doesn’t mean that ALL of that traffic IS looking for a teen site, this is where our surfer trap or hub site can come into play.

    Even if your main focus is the teen niche, you should make sure that the first thing the surfer see’s when visiting any type of site you build is a multi-site FPA (Full Page Ad) where applicable.

    This then starts your filtering process. If they know that they can find other niches than teen on your TGP then chances are, they will go to them either because that is what their niche is or, they are curious about that niche.

    Another thing we can do as webmasters is to ensure we use the headers and footers of our pages in the proper fashion, offer our surfers a choice of the main niches, Asian, Gay, Ebony, Teen, Ect using only text links and, you will probably find that by lining these text links to your hub or surfer trap that you actually have a diverse range of traffic available to you.

    In addition, rather than sending our surfers directly to our sponsors, send them via a filter page whether this is an FPA, or a page full of text links you made yourself detailing the benefits of the sponsor you are going to send them to, again, you will let the surfer know where they are going and, give them a choice as to whether they want to continue to that site or, choose an alternative.

    Overall, webmasters who target their surfers by niche can, for the most part have some excellent sales with a variety of sponsors that otherwise they would not be able to see.

    Target, Filter, Micro-Niche, however you do it, make sure your traffic is not wasted and, more importantly, make sure your sponsor is able to offer your surfer what you are telling them is inside the site.

    Article written by Lee

  • Article Writing For Publicity And Credibility

    Date: 2011.02.21 | Category: Writing | Response: 0

    If you’re looking for a powerful way to get free publicity and build your credibility at the same time, then writing articles may be your answer.

    If you’ve been on the Internet for a while, you’ve probably subscribed to a few ezines including this one, hopefully. Many ezine publishers will include an article written by a guest author. At the end of the article are a few lines of text about the author referred to as bylines or resource box. These lines of text are basically just an advertisement for the writer. They usually contain a couple of lines about the author and a web address.

    The writer gives the publisher permission to publish their article, free of charge, in exchange for the publisher including the author’s bylines.

    By writing articles and allowing them to be published, your articles will have the potential to be viewed by millions of Internet users. They may be published by several ezines with subscriber bases of a few hundred to several thousand. In addition, they may be displayed in ezine archives or on high traffic websites.

    Most ezine publishers prefer short articles between 500 and 750 words. Short “tip” articles of just a couple of paragraphs are also very popular. Articles should be formatted to 65 characters per line or less, including spaces, and written in short paragraph sections.

    When you begin writing your article, avoid using your standard word processing programs, as they do not allow for proper formatting. Instead, use a text editor such as Notepad. It should already be installed on your desktop.

    When you begin typing your article, use a hard carriage return (hit enter) when your text reaches 65 characters, including spaces, and leave a space between your paragraphs. This will enable publishers to easily copy and paste your article into their publication. By taking the time to properly format your article, you will increase your chance of being published significantly.

    Most publishers receive many article submissions each week and only select a few to be published. Here are some basic guidelines to assist you in getting published:

    (1) Make sure you follow the publishers’ submission guidelines. Articles submitted to publishers that don’t follow the submission guidelines will most likely be deleted.

    (2) Make sure your article is properly formatted.
    Publishers won’t take the time to format your article.
    They’ll simply delete it and move on to the next article submission.

    (3) Keep your bylines down to 6 lines or less.
    Publishers will not publish articles that contain excessively long bylines.

    (4) Select a descriptive title to intrigue your readers.
    Use a powerful headline that demands attention and try to keep it all on one line.

    (5) Use proper grammar and spelling.
    Publishers will not take the time to edit your article. Make sure you read your article several times and use spell check.

    (6) Avoid articles that are nothing more than a sales letter.
    Publishers want quality content and will simply delete an article that is written like a sales letter.

    (7) Avoid referring readers to an affiliate URL.
    Articles containing affiliate links may make your article appear to be biased and untrustworthy.

    (8) Write your articles with a sincere desire to teach and inform. Talk to your readers and share your expertise.

    Once you’ve written your article, you’ll need to develop a list of publishers that may be interested in publishing it. The best way to accomplish this is to display your articles on your website. Place a subscription box on each of your article pages to enable your visitors to subscribe. This list should be used to send your new articles to your list of publishers.

    Of course, you are already in one of the right places to start, we are always looking for industry related articles so, if you been given the motivation by reading this article to give it a try why not submit one to us for publication?

    Writing and distributing free articles on the Internet will be one of the best promotional decisions you’ll ever make. Not only will it provide you with free publicity, but if your articles are good, you’ll become a trusted professional in your area of expertise.

    Article written by Lee

  • Building A Surfer Trap – Stage 2

    Date: 2011.02.21 | Category: Traffic | Response: 0

    In the last tutorial we hopefully got the foundations of our surfer trap laid and in this stage, we will start to put this thing together.

    Ok the first step of stage two of building your surfer trap is to start linking each of the individual FPA’s to your Multi-Site FPA.

    The easiest way that I have found to do this is to give each FPA its own sub directory on your server and have the html page named index for each of the single site FPA’s.

    So for instance, if you have the site All Petite on your Multi-Site FPA you would link it to:

    mydomain.com/all-petite/

    Or whatever you called the sub directory for the All Petite single FPA.

    Now, once you have linked these single FPA’s to your Multi-Site FPA we need to start ‘playing’ with them once again.

    You should now have copy’s of your single site FPA’s and Multi-Site FPA on both your server and Hard Drive.

    Take the copy’s you have on your hard drive and add a small NICHE pop up console to each of the single site FPA’s AND the Multi-Site FPA.

    I would suggest making 6 NICHE consoles.

    These consoles should be pure text and nothing else.

    Each of the links on this small console should link to a different niche of your single site FPA’s I usually go with one link for each of the following niches…

    Gay
    Mature
    Teen
    Fetish
    Hardcore
    Asian

    Plus, I usually add a link at the bottom of my console which goes to the POTD program.

    Once you have these consoles built you should upload them to their OWN sub directory on your server, I would suggest calling this directory ‘consoles’ and calling each of the niche consoles the name of the NICHE they represent.

    So, you should now have the following on your HD and on your server:

    1 Multi-Site FPA
    50 or so Single Site FPA’s (All Linked From The Multi-Site FPA)
    6 Small Pop-Up Consoles (Popping Only One On The Multi-Site FPA and The Single Site FPA’s, each different niche Single Site FPA pops a different niche console however.)

    You now have to check that your surfer trap is working so far.

    Article written by Lee.

  • Direct Debit Payment Explained

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

    Something that is very rarely spoken about as a means of payment is Direct Debit, this is a popular payment method across Europe and, especially in the United Kingdom. Direct Debit can offer your surfers a cost effective, easy way to pay for products and services from your site especially, if they have a ‘recurring’ cost associated with them.

    Direct Debit – What Is It?

    Direct Debit is quite possibly one of the simplest ways to collect funds from your surfers basically, a form is filled out by the surfer, where they enter their bank payment details, account number, name, sort code. Then, the form is signed either electronically or, in person by the customer, in this case, electronically by the surfer.

    Once you have the direct form filled in by your surfer, you may continue to deduct funds from the bank account on the Direct Debit form until such a time whereas the surfer cancels the Direct Debit agreement.

    At the present time, around 45% of the population in the UK currently choose to pay their utility bills online by Direct Debit and, around 75% of the total population in the UK have used Direct Debit at least once in addition Direct Debit is also an alternative method of payment in the vast majority of European countries and, it is also used (although not as much) in Australia.

    Direct Debit – What Are The Cost?

    Direct Debit payments cost around $0.5 for you as a merchant to process, however, this charge, rather than happening on the processors side of the transaction, happens when the Direct Debit request hits your banking account.

    This in itself is god news after all, you now ensure that if a membership or product costs $35 per month, you will get virtually the full cost of that membership until such a time when the surfer cancels the direct debit at their bank.

    Direct Debit – An Overview.

    All in all, Direct Debit is probably one of the only payment solutions that allow you to collect the full price from your surfer at the point of sale and, furthermore, because the Direct Debit method of payment is trusted, this offers your surfers something that no other form of payment can – Peace of mind. There is however one major drawback to this method of payment, it is very hard to find processors that will allow you to utilize Direct Debit on your sites in fact, to date, the main use for the Direct Debit payment method has been payments of utility bills, Gas, Electricity, Water Supply, etc however, many financial institutes will let you pay for goods and services using Direct Debit on ‘credit’ terms which can vary from 1 day to a year interest free or, not as the case so often is.

    I strongly feel that within the next 12 months this method of payment could become advantageous to the adult webmaster however, the current online payment processors need to be pushed in order for this to become as widespread as credit and debit card processing is. That said, there are a few online adult companies already accepting Direct Debit as a form of payment so, at least the ‘DD’ revolution has already started.

    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

  • Converting Chinese Adult Traffic – The Niche Paysites That Work

    Date: 2011.02.21 | Category: Traffic | Response: 0

    Converting Chinese Adult Traffic – The Niche Paysites That Work.

    To date we have looked at most of the types of country specific traffic available to webmasters every day and, more importantly, which niches they convert on. In this article we will finish up our look at the foreign traffic and how profitable it can be with the final main country on the net – China.

    Chinese Adult Surfers – Quick Analysis.

    As with Japanese traffic, most webmasters seem to think that Chinese speaking adult surfers are pretty worthless when it comes to buying porn memberships and this is true – If you do not know what niches to offer your Chinese surfers that said, we found some interesting results given the three (3) month test we had on our Chinese traffic and, the results we observed might just make you change your mind about sending the Chinese surfers you get to your sites off to traffic trades.

    Chinese Porn Surfers – The Niches.

    Because we knew relatively little about the Chinese traffic we had on our sites we decided that, rather send it to a specific language hub site we would send it to our main hub page and, allow the Chinese surfers to filter themselves through to the sites that interested them on their own, to our surprise, only 40% of the traffic we knew was Chinese chose to filter itself to a Chinese specific language hub site, the remainder, choosing to go through our main English hub site.

    Fetish.

    Across all of the niches we offered the surfers, the Fetish niche was the one that converted most consistently month after month and, more than converted, actually retained members once they had signed up to the paysites.

    Gay.

    Unlike the traffic we had that was Japanese a lot of the Chinese traffic that hit our site decided to visit the Gay niche paysites we had to offer them and, there was less than 10% difference between the Fetish and Gay signups we observed month after month. Quite a difference when compared to surfers from Japan and, a pleasant one at that.

    Amateur.

    Specifically teen amateur niche sites or, at least sites that had amateur looking teen modes on the tours also did well on our Chinese traffic however, the conversion ratios for the recurring programs didn’t do as well as what we had expected with most memberships being cancelled within 2 months. Non the less, the Chinese surfers did join and most of them re-billed in excess of 1 month before leaving the site.

    Teen.

    As mentioned above, it would appear that Chinese porn surfers are looking for teen niches again though, the teen paysites we used featured amateur looking teens prominently on the pages so whether this was a choice on the surfers part to join the teen sites or, because we only offered amateur looking teen paysites isn’t known.

    Asian.

    Unlike Japanese surfers, Chinese surfers also joined the Asian niches that were offered up to them and, surprisingly enough, we noticed more signups to English Asian sites than localized Chinese pay sites.

    Chinese Adult Surfers – The Results.

    Overall we were very impressed with how the Chinese traffic we had flowing through our sites both acted and, converted on the sites that we offered them to join, especially since the Japanese traffic we had didn’t seem to like the gay niche sites yet Chinese traffic worked wonderfully on exactly the same gay niche pay sites.

    Across the board I think a revisit of Chinese traffic is needed with more options on our part when it comes to the teen and amateur niches especially just to see if the results we experienced thus far were unique or, are truly indicative of how the Chinese surfer navigates and joins pay sites.

    Article written by Lee

  • Source Code – Eliminating HTML Margins

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    Since the inception of the very first HTML document, margins existed that surrounded the document, like in the case with this document.

    The margins are there to act as a cushion between the edges of the browser and the contents of the page, so it’s easier to read the content.

    As good as margins are, wouldn’t it be nice to be able to eliminate them in some cases, where the design of the page calls for their termination? While most webmasters think it is not possible to “flush out” the default margins of a HTML document, it actually is, although only possible in IE 3+, and NS 4+. In this tutorial, I’ll show you how.

    Eliminating The Document Margin In IE 3+

    To get rid of the document margin in IE 3 and above, so content presses right against the edges of the browser, use the IE exclusive “leftmargin” and “topmargin” attributes:

    <body leftmargin=”0″ topmargin=”0″>

    It’s as simple as that!

    Eliminating The Document Margin In NS 4+

    To get rid of the document margin in NS 4 and above, use the NS 4 exclusive “marginwidth” and “marginheight” attributes instead:

    <body marginwidth=”0″ marginheight=”0″>

    Putting It All Together.

    By putting the two techniques together, we can create a document that flushes out its’ margins in both IE 3+ and NS 4+:

    <body leftmargin=”0″ topmargin=”0″ marginwidth=”0″ marginheight=”0″>

    Try out the above coding on your page, and you’ll see what I mean.

    Article written by Lee

Premium Sponsors















Categories

Site Links