• JavaScript – Redirecting Foreign Surfers

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

    At some point or another we are no doubt going to have the need to redirect some or all of our surfers based on the language they speak, this snippet of JavaScript when placed on your page will enable you to do just that without the need for .php or other more complex scripting.

    Here is the coding that you need to place between your <head> and </head> tags:

    <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>

    To add additional language redirects to this JavaScript all you need to do is duplicate the:

    else if (language.indexOf(‘zh’) > -1) document.location.href = ‘chinese.shtml';

    Section of the coding changing the (‘zh’) language code to that of the language you wish to redirect.

    Article written by Lee

  • Whats A Twink

    Date: 2011.02.24 | Category: General | Response: 0

    I think you would be surprised at the number of times I have been asked, “What’s a Twink?” Or my, personal, favorite “So how do two men have sex?”

    If you know me, you know I am never really bothered by questions – I never mind people’s candor. What does bother me, though, is the bulk of the people who ask are trying to work the gay market. Unsuccessfully, I might add.

    So, let’s expand our webmaster knowledge. Don’t worry, I am not about to explain how two men have sex (that I will save for my story site LOL)

    I have decided, however, to give you a Gay Glossary of sorts. There are many terms that can be included here. But, I thought to start off, we will hit the basics and add to it as time goes on. Keep an eye for future articles and additions on Gay Wide Webmasters.

    Here is a list of the most common terms on the Gay Adult ‘net:

    • Twink – A buff and lean young man; a 20 something. Age and leanness make the guy a twink. The best example is your typical bar room stripper.
    • Teen – This is the same thing as in EVERY market, hot young and under twenty – but LEGAL at 18.
    • Hunk/Stud – Beautiful, built and beefcake. The guys commonly posing for calendars and such.
    • Chubs (or chubby) – Just what it sounds like, a larger man. Not just muscular weight, most often heavy set.
    • Bears – This is a HAIRY man. Not a young guy, most often over thirty, sometimes with a husky build (but not always). You will probably see this niche sold as “Real Men”.
    • Cub – This is a YOUNG hairy guy. Sort of a HAIRY TWINK…
    • Daddies – Daddies are men over thirty, who like younger guys. (Just a side note here to clear up some misconceptions, not all gay men want to do young guys!)
    • Sons – the young male counterparts to Daddies. The young of the two can be a twink, cub or teen – makes no difference. This term is based on the visual couple. For our non-gay friends think of this as an example: the businessman who goes away for the weekend with his NEICE. See the comparison? LOL
    • Transvestite – is a man who dresses as a woman. Whether it is simple underwear or all our female attire. A lot of webmasters confuse this with Transsexual.
    • Transsexual – is a person who has decided to make the complete change and have a sex change.
    • Trans Gender – this is a more general term for people who live life as the opposite sex. They are in the process of, or have completed, a sex change.

    So know go have some fun. Try to classify your friends and lovers in these terms! I enjoy it when a webmistress comes up to me and says, “I heard your interview and I think my husband is a bear. But he’s a little twink-ish. What do you think?” This just makes my day! I have to laugh at the look on their husband’s face when they think I’m going to ask to examine them or something. “Turn you head and cough – OH! You’re a Twink…”

    Along with what works, I have to offer some terms that DO NOT work. If used incorrectly or out of context, then your attempt at marketing to gay men can be dreadful.

    • Faggot – I hate this word, personally. This is a word that is as derogatory to the Gay Community as other words are to a race.
    • Nancy boy – a typically non-US term that basically is used as a derogatory manner.
    • Lil Boys – a derogatory term used primarily in the Southern and Mid-Western US. It’s derived from the negative connotation that gay men are pedophiles.
    • Gay Owned and Operated. Allow me to be blunt – If it is not true, do not say it. This is probably the most OVER used phrase in the gay adult market. So much so, it is relatively meaningless today.

    We all need to remember from time to time, the key to success in any business is knowledge. Whether you are up selling to a sponsor or designing sites, knowing some of the more common terminology in the gay community can only help your ventures in the gay adult market. And remember, do not be afraid to try and NEVER be afraid to ask.

    As always, good luck!

    Article written by Gary-Alan

  • Using SSI For Auto Updates

    Date: 2011.02.24 | Category: WebDesign | Response: 0

    We all realize the benefits of being able to save time when building sites so, I got into thinking, how can I make my sites look as if they are continually updated without the need to go in and update them manually? Enter the world of SSI.

    SSI is actually a nifty little tool, not only can you include files from a central location but, you can include them at specific times of the day, days of the week or even months of the year, very handy indeed if you are building any type of site that needs updating periodically.

    Once the main burst of work has been completed you can pretty much use the same files over and over again to help you out.

    So onto the auto updating SSI, the following SSI coding will enable you to update a page or pages based on which day of the month it is. It will check the day the page has been accessed and display the relevant information again, this is a handy thing to have should your sponsor be running a promotion over several days, all you need to do is update a selection of SSI files and all of your sites are updated instantly.

    <!–#config timefmt=”%d”–>
    <!–#include virtual=”/yourdirectory/$DATE_LOCAL.txt”–>

    What you need to do is create 31 text files named 01.txt right the way through to 31.txt take the SSI call above and edit the location of the SSI files on your server, you may like to have a central folder named /SSI/ for this purpose so the location would be changed to /domain.com/SSI/$DATE_LOCAL.txt

    I the 31 files you created you could have a table ad with eight of your sponsors links, an article in each one or even just a simple text link, anything that you may want to update can be included in these files.

    As I mentioned above you can base the time, date and even month of rotation to whatever you like to alter how the files are rotated and ultimately viewed on the web you should change the %d in the timefmt field to one of the following:

    %d : Day of the month requires 31 files named 01.txt to 31.txt
    %w : Day of the week requires 7 files named 0.txt to 6.txt
    %j : Day of the year requires 365 files named 001.txt to 365.txt
    %u : The week of the year requires 52 files named 00.txt to 53.txt
    %m : The month of the year requires 12 files named 01.txt to 12.txt
    %H : Hour of the day requires 24 files named 00.txt to 23.txt
    %M : Minute of the hour requires 60 files named 00.txt to 59.txt

    As you can see from the above there really are no limitations to the uses of updating using SSI and, apart fro the relative ease of use and the time saved using them should one sponsor not be converting for you all you need to do to swap sponsors is alter your central set of SSI files and you have instantly changed sponsors over all of your sites.

    Article written by Lee

  • How To Choose A Legal Content Provider

    Date: 2011.02.22 | Category: Content | Response: 0

    How To Choose A Legal Content Provider.

    If you spend anytime in this business no matter in what capacity, you are going to hear about how important using legal content is. Legal content is content that you have specific permission or license to use on your sites. Permission can come from your sponsor who offers you free content to promote their site, as long as certain criteria is followed. It can come from the producer of the images if he/she is a friend of yours, though I would still advise you obtain a license from them anyway. And the third way of course is to purchase content from one of the myriad of content providers out there. It is the third way I am going to discuss in this article.

    Being the intelligent Webmaster you are, you have decided to purchase some legal, fresh content for your sites. Makes no difference what type of site(s) you run, free sites, TGP’s, pay sites etc. fresh, unique content is always a plus. So you begin your search for the content you are in need of. You are going to find that in most all cases you are going to find a LOT of content providers that offer what you are after. You can go to any resource board and get a list of providers that covers page after page, some more detailed in information than others. Some names you will have heard of before and some you will have never heard of, so how do you choose? Here are some of the basic questions you should ask yourself:

    Do they carry the type of content I need. Seems simple enough, but if you are looking for Asian lesbian images, no sense wasting your time on a provider that specializes in Gay content. The provider’s site should be laid out that you can easily assess what they offer with the first 2 pages of their site.

    What am I using the content for? This becomes very important when selecting what image packages you buy. If you are going to use the content for free sites or TGP’s where the main goal is to get them off your site and on to your sponsor, then quality is not going to be as important as price. If you plan to utilize them in a pay situation, such as AVS or members site, quality should be your first consideration.

    What price am I willing to pay? By knowing what you are using the images for, you have a fair idea of what they are worth to you. Do not be fooled into thinking that buying a MEGA disc for .10 an image is a killer deal. It could be, but if the image CD only contains 100 images that you can utilize and the rest are trash, what is the point? Much better to pay a higher price per image to get exactly the kind and quality you want. Shop around of course; per image prices can vary greatly per provider.

    How do I know these guys are legit? Excellent question! J More than ever these days you cannot swing a cat and not hit 100 content providers. Every college guy and his brother with a digital camera and a girlfriend think they can make a quick buck in the Adult market. I could very easily list over a dozen so called content providers right now, that have come on with incredible deals only to be gone in less than 3 months. Then the Webmaster finds out the license he has for the images are not worth the paper they printed them on. This is one of the easiest areas for a Webmaster to get ripped off in. So what to do? Research my friends, research!

    a. Ask the provider for copies of the 2257’s they are required by law to have on premises. Any reputable provider will supply these to you; many include them with the license even if you don’t ask for them. Any provider that bulks at doing so upon request should be taken off your shopping list.

    b. Read over the license agreement very carefully, before you buy. Not every license is the same, some allow you a certain percent of images for promotional use, such as creating banners etc. some prohibit it. How many sites and domains you can use the images on vary, as does the price they charge to add or transfer a domain or license. Remember the license is a legal document and should be treated as such.

    c. Ask around! Reputation is so very important in this business and the good providers know it. Don’t be shy about asking the provider directly for references, emailing fellow Webmaster’s and even posting for comments on the boards. Make sure you get a good cross span of answers from all sources, so you can quickly weed out anyone that is deliberately trying to make a provider look bad. This could be their competition or a Webmaster that tried to use the content illegally and got busted. So make sure you ask people your respect and trust. Find out not only about how they’re prices stack up, but also about their customer service after the deal is done. And NEVER assume just because a provider is listed on your favorite resource board that they are legit. Though most resources will try and screen people they list, there is no guarantee. There is no substitute for researching it for yourself.

    Following these simple guidelines will save you a lot of grief in the long run. It may take a day or two for you to get the feedback you need, but it could save you from taking down hundreds of galleries later on. Or worse, paying for a product you never receive. And trust me, that happens.

    Article written by Bestat.

    http://www.exclusivecontent.com.

  • Seasons Greetings For The Adult Surfer

    Date: 2011.02.24 | Category: General, Promotion, WebDesign | Response: 0

    How do the national and, international holidays affect our sponsors sales? More than you would think especially if you can offer your surfers something ‘seasonal’ when they hit your site. However, that said, when should you start planning for these holidays and, more importantly, how can you ensure that once you have implemented your seasonal marketing campaigns that they actually work?

    Seasonal Marketing – The Basics.

    Seasonal marketing is, in effect a method of changing your marketing approach around different times of the year to affect both the volume of sales you make and, more importantly, the uniqueness of the product you are offering your surfers. A good example of this is at Christmas time, many of the sponsors will provide their webmasters with banner with a holiday feel to them, perhaps using scantily clad men in Santa outfits or half naked women in elves costumes. By offering a seasonal marketing approach to your site surfers you actually increase the chances of making a sale.

    Holiday Porn.

    One of the best ways to offer your surfers a fresh marketing angle is to ensure that you plan for all of the major holidays throughout the year in advance so for example, as mentioned above, Christmas is a big holiday as are, New Years, Easter, Thanksgiving (US), Independence Day (US) and, Halloween. By building sites specifically for these holidays you are increasing the chances not only of building your sales but, of gaining additional traffic that you might otherwise lose out on. It has been said certainly over the last four years i have worked in the adult industry that many webmasters experience an increase in search engine traffic searching on keywords such as ‘Christmas Porn’ and, ‘Ghost Porn’ around the various holidays, build now for next year and, when the holiday season arrives, you will be one step ahead of your competition.

    Seasonal Marketing Overview.

    As already mentioned the holiday season especially Christmas time, can be a great way to gain additional traffic, not only from those surfers specifically looking for Christmas Porn but, also the newbie adult surfers who have perhaps only just got their first computer on Christmas day, by adding to your collection of seasonal porn sites year after year you will not only learn a lot about the way the various holidays and seasons affect your sales but, you will also be able to profit from your surfers in a way that not many other webmasters do.

    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

  • Newsletter Know How – A Guide To Writing Newsletters

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

    Email newsletters are a great way to make contact with existing clients and, prospective clients which makes them a great marketing tool. The biggest bonus however, over Email newsletters rather than print ones is that you have virtually no cost involved with writing and, ultimately, mailing them out.

    There is a wide variety of online newsletter on the internet. however, probably the simplest form for most webmasters is the email newsletter. Email provides you with a quick way to keep your name out there, build trust with you readers and, hopefully attract a few sales. If you archive your newsletter also this is a great way to get additional pages into the search engines and, as such, it then becomes a good traffic driver to your website regardless of the amount of subscribers you have. However one of the most important benefits of having an email newsletter sent on a regular basis is that it build brand recognition of your website or business.

    Your newsletter should provide information, not just of an advertising nature but that, should also be informative to your subscribers. In doing this you are offering information of value and, ultimately, ensuring that your subscribers remain. However, remember newsletters are for promoting your area of expertise not just a vehicle for revenue generation.

    One of the first things you should consider when deciding to do a newsletter is the amount of commitment you will have to put towards the project. Whether you start a monthly, weekly or, daily newsletter a great deal of commitment must be made to both the newsletter and, more importantly, your subscribers. For example, We generally spend a good 3 days researching the articles that have been submitted and trying to ensure that the details contained within them are relevant at the time of sending the email, this is not an easy task especially when the adult internet is constantly developing. If you don’t have the time to research and maintain consistency in your newsletter, then don’t even consider doing one, it isn’t for you at the present time.

    Now you have decided you can make the commitment required to run a successful email newsletter what do you do next? Collect email addresses. Probably one of the easiest ways to get email subscribers to join your list is to go through your current mail clients contact list and manually add those email addresses or, further still, you may even have an opt in collection program that you have been using for a while but have never really had the time to commit to writing a newsletter worthy of sending out. Remember though, an email list is only as good as the addresses contained within it. You want to run an OPT-IN email list, any other type of list will be considered Spam and, that will do you more damage than good. Of course, if you haven’t already got an email collection program you can find one online there are literally hundreds of them floating around that you can get for free from sites like http://www.hotscripts.com.

    So, you now have your emails, onto writing your newsletter. I think the greatest part of email is that it is somewhat less formal than writing for print copy. Email in fact tends to be very informal in comparison. The best way at approaching writing for an email newsletter is to write how you talk, it is more enjoyable for the reader and gives your newsletter a personality that no one else can emulate. Content wise, that depends on what you do, what would YOU like to see if you subscribed to an email list of the type you are going to be running and, more importantly, what would ensure you stay subscribed to the newsletter? Ask your friends, colleagues and, peers what they would like to see in an email newsletter, often they have been looking for information that is not readily available, this is an area where you then start to provide a service that no one else does.

    So you are at the point where you are starting to realize that running a newsletter is a lot of work correct? Well, it is. However, the effort, work and, time spent in putting your newsletter together will help you build a relationship with people whom, in all actuality, you may probably not ever meet in a face to face situation and, more importantly, it can become a great income generator over time.

    Article written by Lee

  • Building A Surfer Trap – Stage 6

    Date: 2011.02.21 | Category: Traffic | Response: 0

    Stage 6 already!

    Only 2 more stages to go after this tutorial until you have a fully functional surfer trap!

    Ok as promised in the last tutorial, we are going to implement the table pages you hopefully made in our last tutorial.

    You now need to signup for ANOTHER counter code. Use the same counter as you did last time and, again, make sure the URL you send the traffic from the counter to is your main Multi-Site FPA surfer trap page.

    Ok, you have the new counter code, what you should do with this is place it on every one of the niche table pages we made yesterday. Nowhere else except on these pages.

    Once you have the counter code placed you now need to go back to our consoles, what we are going to do is make these HTML table pages into a secondary console from off the first pop up that we get when a surfer visits any of our FPA’s.

    What you should do is enter the following coding in between the <head> and </head> tags of the niche pop-ups ensuring that you choose a DIFFERENT niche to the one of your original consoles:

    <!—— BEGIN CONSOLE CODE ——->
    <SCRIPT language=Javascript>
    <!–
    var exit=true;
    function exitcnsl()
    {
    if (exit)
    open(“http://www.yourdomain.com/tableconsolepage.html”, “tables”,”toolbar=0,location=0,status=0,menubar=0, scrollbars=0,resizable=0, width=800,height=600,top=0,left=0″);
    }
    //–>
    </SCRIPT>
    <!—— END CONSOLE CODE ——->

    You need to edit the figures for width= and height= to reflect the size of your table, ideally the frame of the console should be around 3 or 4 pixels either side of your tables.

    Ok now once you have added the above to your existing pop-ups you now need to add the following to the newly created table consoles between the <head> and the </head> tags:

    <SCRIPT language=javascript>
    self.blur();
    </script>

    What this will do is once the first console loads, it will immediately load a second console but, this second console should be ‘hidden’ behind the main window that is displayed. We have created a blur console.

    We now have one last thing to do with this ‘blur console’ that we have just created.

    Go to the HTML coding for the table ad console and add the same JavaScript to that page however, this time you DO NOT need to use the self.blur section of the instructions or, change the sizes of the console that pops.

    Instead you need to add the following to the <body> tag:

    onUnload=”exitcnsl()” so as an example your body tag may look like this:

    <BODY BGCOLOR=#000000 onUnload=”exitcnsl()”>

    Now you also need to alter the location for the console that will pop this time, you have a choice, you can send the console directly to the ARS POTD program or, you can send it BACK to your Multi-Site FPA page, at which point the surfer will be able to select another niche or leave your site.

    Now remember, this surfer trap IS aggressive however, every time one of your counter codes load both from the FPA’s where we implemented them AND on the newly created table consoles we are gaining extra traffic.

    If you have ANY questions at all please do not hesitate to post on the forums and myself or one of our administrators will assist you.

    Article written by Lee

  • What Is The Golden Ratio?

    Date: 2011.02.24 | Category: Sponsors | Response: 0

    Its a little known marketing technique that say that, as long as the longest side on any oblong is 1.6 times the length of the shortest side of the same oblong people will be more likely to prefer that shape over any other shape.

    Why do they prefer this size? Because it occurs naturally and, subconsciously EVERY LIVING PERSON is attracted to this trait.

    An example of this is as follows:

    1) Stand Up
    2) Measure the distance from your head to your feet and write this measurement down
    3) Measure the distance from your Navel write this figure down.

    The length of your ENTIRE body is 1.6 times longer than from your Navel to your feet!!

    The same is also true for the length of your arm from shoulder to finger tip, then from elbow to finger tip.

    The same is true for credit cards, the longest side is 1.6 times longer than than the shorter side!

    Think about this for a second, banner ads, what shape are they? Oblong except, they don’t employ the ‘golden ratio’ what if, just what if, you used some banner ads that employed this ‘golden ratio’ who says banners have to be 468×60 in size?

    Why not try making some ‘basic’ banners in paint or a decent graphics program utilizing the 1.6 rule and see if your click thru’s increase, personally, I will bet my earnings last month that they will.

    On the same way of thinking towards marketing, table ads, money bars, etc, why not incorporate this idea into them also? It cant hurt and who knows it may just work.

    the math to work this ‘golden ratio’ out is as follows for Image a above:

    shortest side (60) x 1.6 = (90) Longest side

    You don’t even need to be a genius to make your own ads using this method as the people at Microsoft supplied you with a calculator.

    Article written by Lee

  • Resource Forums – The Changing Face Of The Adult Industry

    Date: 2011.02.24 | Category: General | Response: 0

    Online adult webmaster resource sites are becoming a thing of the past instead, we have witnessed a new breed of resource site being birthed in the adult industry, the resource forum. It seems like almost every major adult sponsor and webmaster has their own resource forum as of the current time however, what is making these forums stand out from one another and, more importantly, can you actually learn anything valuable from them.

    Webmaster Resource Forums.

    Back in the day there were only a handful of resource forums made available for adult webmasters to educate themselves further, these included such sites as Ynot Masters, Netpond (then The Condom Chronicles) and Porn Resource, however, to date there are no less than 200 webmaster resource forums floating around the internet for adult webmasters to post on.

    With this amount of resource forums available to webmasters it seem impossible that many webmasters cant be making a profit however, upon closer inspection a disturbing trend seems to be taking place.

    Resource Forums – Webmasters Posts.

    With the sudden surge of webmaster resource forums in the last 6-12 months there is one thing that is apparent, most of, if not all of the resource forums to have spawned during this time have one thing in common, the webmasters who post on them, often, these webmasters are posting for a single reason, to get other webmasters to click on their signatures, nothing more, nothing less.

    It would appear that the adult industry is heading towards a meltdown of the adult resource forums, with more and more webmasters grabbing free scripts such as phpbb to load onto their domain and launch their own resource forum it would appear at first glance as if the industry is a thriving community of webmasters all willingly helping each other out however, this is not the case, instead, we find post after post duplicated across multiple resource forums in the effort of making the longest thread, getting the most page views and, ultimately, getting the most signature clicks.

    Webmaster Resources.

    So with all of this going on what’s happening to the actual resource sites? Well they are still around and, they are still being used however, these have now become second place to the message forum, often as mentioned above, webmasters will post the same message on several message boards and get several replies of exactly the same answer from exactly the same people. Whilst this in itself is a good thing (the exchange of information) my personal feelings are that we are heading towards an excess of resource forums and, whilst communication is needed, there also becomes a point at which you can get an information overload, new webmasters entering the adult industry will see the variety of forums made available to them and start posting however, in doing so they forget the one thing that they actually should be doing, working.

    Webmaster Resource Forums – Overview.

    I think within the next 12 months we are going to see one of two things start to happen, either the resource forum phenomenon will continue as it is doing now or, the resource forum will become a thing of the past whilst a new medium takes its place, one thing is certain though all these webmasters posting on forums to get sig views and post counts are not doing the one thing they should be, making money and, this becomes all to apparent after watching the same old posts, make the rounds to the same old forums time and time again.

    Resource forums can be great help to the adult webmaster however, at the same time, they can also become a webmasters biggest downfall, remember why resource forums are there, to help you when you need it and to socialize when you have to, at what point to do you stop getting help and start becoming a post whore? Well only you can answer that question.

    Article written by Lee

Premium Sponsors















Categories

Site Links