-
Domain Name Registration Services What To Look For
Once upon a time, if you wanted to register a domain name, you could only do it by visiting Network Solutions at http://www.networksolutions.com/ and paying them whatever they asked for, about $35.00 per year.
Then ICANN, http://www.icann.org/, The Internet Corporation for Assigned Names and Numbers (ICANN) that is the non-profit corporation that was formed to assume responsibility for the IP address space allocation, protocol parameter assignment, domain name system management, and root server system management functions previously performed under U.S. Government contract by IANA and other entities, decided to change the rules.
The initial testing phase of the new competitive Shared Registry System for the .com, .net, and .org domains quietly began to take place in April of 1999.
It started with five participants who were the first to implement the new system for competition in the market for .com, .net, and .org domain name registration services.
Previously, registration services in the .com, .net, and .org domains were provided by Network Solutions, Inc. under an exclusive contract with the United States government.
In the two years since this program began, things have really changed.
Just this last week, ICANN reported that two of their registrars, Tucows and New York-based Register.com, had recorded more new registrations for Top Level Domains (dot-com, dot-net and dot-org) than VeriSign’s Network Solutions.
This marks the first time ever that VeriSign’s Network Solutions was out-sold by any of the registrars and signals that their past dominance of domain name registration is certainly fading.
Why?
Because besides others being allowed to make domain name registrations, these new registrars are also cutting prices.
The Rules have most certainly changed.
The Shared Registration System (“SRS”), ICANN’s accredited registrars program, allows people to submit application to become a registrar along with a non-refundable $1000 filing fee.After someone is accepted into the program then they must pay a yearly fee of $5000 to maintain their status as an accredited registrar.
This situation has created a very competitive environment which can only be beneficial to all of us as the price to register a domain name has fallen like a rock from a very tall building.
However, if you plan to register a new domain name using a virtual unknown registrar, make certain they do indeed have the legal accreditation from ICANN by visiting the ICANN web site and viewing their posted list of ALL accredited vendors:
http://www.icann.org/registrars/accredited-list.htmlIt will only take you a few moments to make sure you are dealing with a reputable vendor of domain names. Those few moments will make the entire process legal and worry-free.
Article written by Lee
-
Everybody’s Going Gay
The past few months in the online adult industry have seen some rather dramatic changes happen from Visa charging additional fees to accept their credit cards online, Paypal no longer processing adult and, several large companies going out of business. However, one thing that also seems to be changing for the better is the amount of webmasters looking at new niches to promote. Surprisingly, the one niche that many webmasters are looking at is that of the gay niche.
Where The Money’s At.
For years, the adult webmaster community has been split amongst themselves, those that are only focused on straight niches and, those that focus on gay niches however. As of late, more and more of those webmasters from the first group are looking to make additional income from the gay niche. With this inevitable surge in gay adult sites coming online, there are bound to be some knock-on effects, and those webmasters just starting to look at the gay niche, will return to what they know. However, for most, i think this is going to be a fruitful encounter with one of the industry less socially accepted markets. Many of the webmasters who have been concentrating solely on the straight market for their income are going to realize just how much money they have been losing out on for all these years. And with this realization, comes its own set of problems for the industry as a whole.The Gay Market.
Whether you are a straight webmaster or a gay webmaster the one thing that will become apparent is that your sites are going to reflect you in both, how they look and, the marketing techniques you use. More importantly, the attitude you have towards your gay surfers will in fact show through. Many of the straight webmasters whom, perhaps are not as tolerant towards this niche will, almost certainly fail before they can really get going. Marketing gay adult sites is far different than marketing straight adult sites. You have to know the surfer, understand what they want and, more importantly, know the terminology in the gay market. Many times a post can be seen on various message boards belittling those webmasters who are openly gay – often accompanied by terms such as ‘fag’, ‘queer’, ‘homo’, etc along with with images being posted that, quite frankly, would turn most people’s stomach.The gay niche is much more than just a single online market, it is a whole lifestyle unto itself. While this lifestyle is affluent (having an abundance of readily available money to spend) it will take a lot of work and perseverance to ensure you get your share of this market.
Starting Points.
As I mentioned above, the main thing many webmasters are going to have to learn are the terms of the gay market, what is a twink? A bear? A cub? What products work well on gay sites? Despite what most people think, you cant just throw up some banners with naked men on them and turn a profit. Match your content to a niche and then, match your advertising to your content, what use is it having bears on a site if, the paysite you are promoting features Teens ‘n’ Twinks?Similarly, your text links, ‘Click Here For Hot Gay Action’ might get you a few clicks but, by targeting your surfers even more, you will see how some of the gay niches can really turn a profit. The trick is this, get the surfer to your site and actually give them something that you think will suit their desires. This may mean making a 10% commission on a sex toy sale as oppose to a $35 commission on a pay site membership. And so be it. Those 10%’ers start to add up after a few sales.
In Summary.
To summarize, the gay niche will make you money however, to make money you will need to invest something that, perhaps isn’t for everyone – a lot of time and understanding. Marketing the gay niche isn’t for everyone, we have seen this too many times. However for those who are, spending time adding a gay market portfolio to there straight, with a little time increase your overall income significantly.Article written by Le
-
JavaScript Know How
JavaScript can be one of the most useful additions to any web page. It comes packaged as standard in Microsoft’s Internet Explorer and, Netscape Navigator and allows webmasters to perform field validations, mouse-over’s, pop ups and a whole entourage of other nifty little features on our sites.
In this article we will show you how to:
– Display the browser name and version number
– Change the text in the status bar of the browser
– Use an input box to get text from the user
– Use a message box to display text to the user
– Change the title of the browser windowBefore that, however, we need to know how to setup our web page so that it can run the JavaScript. JavaScript code is inserted between opening and closing script tags: <script> and </script>, like this:
<script language=”JavaScript”>
–> JavaScript code goes here <–
</script>
These script tags can be placed anywhere on the page, however, it’s common practice to place them between the <head>and </head> tags. A basic HTML page that contains some JavaScript looks like this:
<html>
<head>
<title> My Test Page </title>
<script language=”JavaScript”>function testfunc()
{
var x = 1;
}</script>
</head>
<body>
<h1>Hello</h1>
</body>
</html>For the examples in this article, you should use the basic document format I have just shown you, inserting the JavaScript code between the <script> and </script>tags. When you load the page in your browser, the JavaScript code will be executed automatically.
Displaying the browsers name and version number.
The “navigator” object in JavaScript contains the details of the user’s browser, including its name and version number. They can be displayed in a browser using the document.write function:document.write(“Your browser is: ” + navigator.appName);
document.write(“<br>Its version is: ” + navigator.appVersion);I run Windows 2000 and Internet Explorer version 6, so the output from the code above looks like this in my browser window:
Your browser is: Microsoft Internet Explorer
Its version is: 4.0 (compatible; MSIE 6.0b; Windows NT 5.0)Changing the text in the status bar of the browser.
To change the text in the status bar of a browser window, just change the “status” member of the “window” object, which represents the entire browser window:window.status = “This is some text”;
Using an input box to get text from the user.
Just like in traditional windows applications, you can use an input box to get some text input from the user. The “prompt” function is all you need:var name = prompt(“What is your name?”);
document.write(“Hello ” + name);The prompt function accepts just one argument (the title of the input box), and returns the value entered into the text box. In the example above, you get the users name and store it in the “name” variable. You then use the “document.write” function to output their name into the browser window.
Using a message box to display text to the user.
You can display a message box containing an OK button. These are great when you want to let the user know what is happening during their time on a particular page. You can use a message box to display the “name” variable from our previous example:var name = prompt(“What is your name?”);
alert(“Your name is: ” + name);The “alert” function takes one argument, which is the text to display inside of the message box.
Changing the title of the browser window.
To change the title of a web browser’s window, simply modify the “document.title” variable, like this:document.title = “My new title”;
One bad thing about the “document.title” variable is that it can only be manipulated in Microsoft Internet Explorer. Netscape’s implementation of JavaScript doesn’t allow for modification.
In Closing.
As you can see from the examples in this article, JavaScript is a powerful scripting language that can be used to enhance a visitor’s experience with our site. However, you shouldn’t use JavaScript too much because in some cases it can annoy visitors and send them packing before your site even loads!Article Written By Lee
-
Promoting Safe Sex In The Adult Industry
To most webmasters, the only thing that needs to be considered when building and marketing our websites is the layout of the site, the sponsors that they will be using and ultimately, the amount of money they will make from the site however, there is another side of the adult industry that we should also be considering, the moral side.
Safe Sex – Morally Speaking.
We all have our own morals and work ethics however, I think that sometimes most of us push these to the back lines a little when it comes to making a buck which is understandable however, we are in a position of power somewhat over a lot of things that many of us do not even think about, we know that for the vast amount of industry webmasters there are more than 90% of them will actively report child porn sites when they find them however, how much further does this reach and, how much harm could you potentially be doing long term?Promoting Safe Sex – The Issues At Hand.
Step out of your webmaster persona for a short while now while you read this next paragraph and actually think about what is being said, all of us in our communities realize that sexually transmitted diseases and especially HIV/Aids is on the increase although maybe not reported as much the one thing that you can be certain about whether you go to a gym, a bar or a doctors is that we are constantly shown images promoting safe sex, ask yourself how you feel about that and, furthermore, ask yourself if you would have unprotected sex with someone if the answer to this question is yes then the rest of this article will be of no consequence to you however, if the answer is no, then you may like to read on.Safe Sex Online.
Now we have ascertained how you feel about safe sex, why do you not promote this more often on your sites and galleries? We are giving surfers a product that will, in all likelihood fulfill their fantasy and, quite possibly, be mimicked by them at some point in the future. With this in mind I would suggest the following to you if I may. When purchasing content, try to purchase photosets where the models are practicing safe sex, if a surfer see’s a famous porn star using a condom then, ultimately, they themselves may use a condom when they next have sex. When building a site or gallery why not promote a condom affiliate program on the site, either through the use of a text link or a button or banner, not only are you being responsible but, you are also still going to make money should your surfer buy something from your condom sponsor. A good sponsor for Condoms is http://www.condomexpress.com.Promoting Safe Sex – The Bigger Picture.
As mentioned in the opening paragraph of this article, more often than not, webmasters choose to go with bottom line profits over their morals however, thankfully this isn’t always the case. Whether you decide to start promoting safe sex as a method to promote condom sales or, whether you choose to promote safe sex as it is a moral that you believe in, one thing alone will stand true, by showing the surfer that sex can be safe and fun, we are definitely doing our part towards making sure that not every webmaster is seen as morel-less.Article written by Lee
-
Time Management – Organizing Your Content Purchases
From time to time it is inevitable that as adult webmasters there will be two things that will happen:
1) You will buy some licensed content.
2) You will use this content for a gallery.
However, unless your content is organized you can end up spending to much time to make a 10 pic gallery page. This article is going to offer you some sound advice on how to organize your content from the second you take delivery of it which, will save you a lot of time long term.
So we have taken delivery of our adult content either by download or, on cdrom what next, we could just file it away on cdrom but, by taking a little extra time to organize your content from the start you will end up not only building sites MUCH quicker but also saving time all round.
Here are some helpful hints to get you on the way to content organization.
1) Unzip all your content sets and, if applicable, separate them into model and niche sets.
2) Create folders for each model and, each set of 10 images within the main model sets.
3) Rename all your images in the 10 pic sets starting from pic1.jpg through to pic10.jpg.
4) Crop, compress and thumbnail each image within each set of 10 that you have.
5) create a html page that calls your thumbnails and main pics using relative urls i.e. /set1/gallery1/image1.jpg for the larger image and /set1/gallery1/thumb1.jpg for the thumbnail image.
6) Inside each of your 10 pic/thumbnail folders place this HTML page you have just created.
7) Burn each of the gallery folders to cdrom.
Lets now look at what an hour spent has enabled us to do.
Instant Galleries.
Say we want to build a 10 pic gallery to add into a free site or an AVS site that we are building, we know we have all the galleries already made, its just a case of finding the correct gallery and uploading it to our server.Image Swapping.
What happens if we need to swap an image from one of our pages to a more appropriate one for the niche we are marketing to, simple, you go to the image set you want, look for the image name and simply change the image without having to upload it as, you will now know the EXACT location on your server of the image you are changing to e.g., /set6/gallery8/image9.jpg would change to set24/gallery2/image2.jpg.
There are of course other ways this can benefit you for example, you can plug in your galleries to any site you own if you have them all uploaded to a central content location domain.
The benefits of organizing your content from the instant you take delivery are endless, the above is just a sample of how I have successfully saved time and effort by becoming more organized, the only limitations you have with your organizational skills are those that you impose on yourself.
Article written by Lee
-
Designing A 404 Error Document
Designing A 404 Error Document.
Now that we know how to use .htaccess let’s get into how exactly to effectively design a 404 error document page. Here are a few tips when building your document:Keep The Design Constant.
That is, whatever design your web site supports, consider keeping that design when building your error document. This is not mandatory, however. If you have a good reason to stray from your design, then do so. Otherwise, keep it constant.
Use Attractive Dialog.
Do not use the word error. Error signifies something is terribly wrong, and while that may be so, you should give that information to your visitor in a very friendly way. Instead, consider writing “Sorry, the page you were looking for is not available at the moment”.
Include Contact Information.
Obviously, you want to fix the error, so give the user every opportunity to e-mail you about the error. Some users will not bother to do so, but you still need to give them the opportunity.
Keep The Visitor Moving.
Often, 404 error pages are like road blocks, or brick walls that the user cannot pass through. You need to break through the barriers and allow the visitor to keep traveling through your web site. If your web site supports a search capability, include a form on your error document to let them search for the information they were originally seeking. At the very least, include a link to your home page.
Give Them A Site Map.
When the user clicks upon a page that is no longer available, or was mistyped by the webmaster, consider adding a link to a site map page, or include your site map right on your 404 error document, so the user can get their bearings within your site, and can locate their desired content quickly and easily.
Give Them Help.
List tips on your error document page to help the visitor diagnose the error. For example, ask them to double check the URL in their browser’s address bar. If it’s correct, politely ask them to e-mail you to report the error. Also suggest that they visit your home page (or search utility) to find the information they are after.
List Some Popular Links.
Provide the user with a few links to your most popular content areas of your web site, as it is more likely they were searching for that content than anything else.
As you have seen, error documents are more important than you may think. Merely having a custom error page shows you have put forth effort on your web site and want to help the user find the information they need. Error documents are easy to create and adds professionalism to any web site.
Article written by Lee
-
JavaScript – Redirecting Foreign Surfers
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
-
Marketing to European Surfers
Marketing to European Surfers.
Today we’ll try to answer couple of questions regarding dialers and how to market them to European traffic.
How to get traffic to your European market targeted site?
Pretty much the same way as for all the other sites, lets German market for example (Germany, Austria, Switzerland) use SE’s, German link-lists, TGPs,… feed site with your own traffic, and don’t forget to use exit-consoles.
Is your site translated into specific language?
Yes, of course you won’t get far using English template on German/Spanish.. sites… You can always contact Adult Site Translation if you need help with translations.
What sponsor should you use?
That is pretty hard to say. Practically since almost every European based sponsor offers dialers so it doesn’t really matter which one you choose. It’s the same with per sign-up sponsors: It depends how good you are in sending traffic to them. And as always try couple of them and see which one works best for you. Most of the sponsors will offer to your surfers to pay by CC, bank account and dialers.
Me personally, I don’t really advertise dialers. I go for sign-ups because most if not all European sponsors are recurring and it brings more money in the long run. But if a surfer wants to pay the (admittedly) high phone bills – that’s fine with me In fact, sometimes I get more money from a 0190-number (dialer number in Germany starts with 0190) than I’d get if the surfer would sign-up with his CC and would cancel his membership after the first payment.
Why are dialers so successful in the German/European market?
Well, I can think of 3 reasons for this:1.) 0190-numbers are very common in Germany. Many support-hotlines use them, you can download logos for your cell phone via 0190, you can get health-tips via 0190, fax-numbers, etc… Germans see those numbers everywhere and get used to them. Of course they know that they are expensive but I think they tend to forget this because they are so common.2.) Much of my income from dialers is from Swiss and Austrian people. Especially surfers from Switzerland LOVE dialers (Some of them spend hours/nights with dialers and in the end if i get 50% of that for me is not bad, isn’t it?
I think they love dialers because they hesitate to give out the information on their CC (if they have any) and they can’t/don’t like to transfer their money via bank transfers. So dialers are actually their only way to get into the members-area.3.) Credit cards are not very common in Germany. I would guess only some 30% have one and many who have one don’t believe that CC transactions on the internet are secure. So most of the surfers have only 2 options left: Paying by bank account or using a dialer. The bank account has 2 disadvantages in the eyes of the surfers: 1st “The sponsor knows my name, my account number, where I live and that I’m a greasy little wanker who pays for porn. -Maybe this sponsor is going to tell my neighbors about it-” 2nd “How can I explain this to my wife?” On the other hand the dialer has advantages: 1st It is anonymous. Nobody knows who and where the surfer is. 2nd The dialer is faster than typing all the necessary information needed for a bank transaction. A few seconds for a 35kb download and the surfer is ready to go. 3rd You can always find a reason why there’s this 0190-number on the phone-bill. “Well darling, you know, I had problems with my new graphic card and I had to contact the customer-support. Those damn bastards are on a 0190-number what what can I do?”
Well, that’s about it on dialers. One warning at the end: If you like to give them a try beware of those that do auto-downloads and auto-installations. Surfers don’t like them. Use dialers where the surfers needs to click somewhere to download and install them.Article written by Lee
-
Sex Toy Affiliate Programs
For the past year I’ve been playing with sex toys AND I’ve been selling them too!
Over the last couple of articles I have tried to enlighten you on secondary and third level sponsors, to supplement your site income. Another successful addition is sex toys – which are a hit in the gay market. Personally, I sell toys and videos in the secondary spots simply because the payouts are typically lower than most sponsors are – but my motto is money is money!
The basic reaction by most straight webmasters has been, I didn’t realize gay men liked sex toys, too. Well we do.
While there are a number of great toy sponsors out there, not many cater directly to gay men. That’s why I worked a deal on Gay Adult Shopping (http://store.gayadultshopping.com/partners/). I have joined others, but typically, they sell to a straight clientele. When I say market to straight, I’m referring to the packaging of their inventory. This is not a judgment call but a plain fact; I’d rather buy something that has an image of guy on it rather than a woman.
Now mind you, BOTH markets favor many of the products sold. I know if a straight female friend and I went into an adult store, we would look at the same dildo; and, perhaps even buy the same item regardless of the package. But when you’re surfing the net from home, it’s no holds barred. The surfer is no longer locked into the inventory of a shop on the street. He’s going to look for what HE wants. It is all perception. And, knowing that is half the battle.
Ok on to selling! I have taken three approaches in my experimenting – free sites, TGPs and memberships sites. Within a paysite, I typically didn’t SELL the store as much as I told the surfer it is there if he wants it. The real work in selling came with the free sites and galleries.
I’m a text man. I love writing copy and seeing how it works. However with the toys, I used a graphic and embellished it with text. For my free sites, I found direct eye contact shots (Images where the model is “looking out”, presumable at the surfer) were more effective than a pic of a guy playing with toys. Along with the pic, I used text like “My boyfriend and I can not get enough of them…” and “I get off watching him play…” or “The one with the most toys… Gets Off!” Other places on my free sites, I just dropped in the text link. Either worked well. I added both sets of ad links to my basic main pages. The results were good – even though I kept them to a minimum not to out sell my sponsor sites.
My TGP experiment was WORK! After my first try I found out that text alone doesn’t work well. This is definitely an approach that requires imagery. On my first pass, I offered pics and a paragraph that that sold all the things I could think of… dongs, dildos, videos and ejaculating butt plugs -You name I tried to sell it. Out of 2000 hits on that one page, I had 60 clicks into the toy store. Even though I had a sale, it wasn’t going to break the bank. But it SOLD, so I decided to try more. This time I hunted through my content for pics with toys in them and eye contact. I added banners and toned down the text somewhat. Instead of listing an inventory, I stayed in line with the text I mentioned above. I gave an overall feel of what the store had (toys, videos, lube, etc.) Then I ended it with a little tease of what delightful experiences were in store when their package arrived.
This time, it worked! On that first day, out of the 2000 hits it received, 500 clicks went into the store. I have never had that kind of click ratio off of a TGP. I was amazed. Most of the sales were for smaller priced items ($10-$20), but I had two orders that totaled over $200 dollars each. Was this a fluke? I wasn’t sure, so I tried it again. With the next few submissions the click rates were smaller, and I don’t know why. It could be that I used the same ads or something too similar to the first. BUT the click to sales ratio was about the same as my first attempt. Needless to say this has now become part of my weekly regiment.
So what did this prove? Sex toys DO sell well in the gay market even under the hard to convert traffic scenarios. I guess we like our toys just as much as anyone else =)
Selling adult products, whether on a free site, a TGP or a pay site, will bring in a few extra dollars that many webmasters didn’t even know was out there.
Article written by Gary-Alan
-
The Death Of The AVS – The Birth Of The AEN (Adult Entertainment Network)
Well after a long and tedious few months of speculation, rumors and facts being presented to those of us in the adult industry working on AEN sites (Formerly known as AVS sites) it seems that Visa has put a strain on AEN companies to start re-working and, renaming their sites to fall under the ‘Adult Entertainment Network’ name. What does this mean to us as webmasters and, more importantly to the industry as a whole? This is what we shall address in this article.
A Little Visa History Lesson.
This whole mess started in October of 2002 when, jointly, CCBill, Epoch and, iBill issued a new set of operating guidelines that had been passed onto them by Visa. In effect, this meant that 3rd party credit card processors had to be re-classified as an ‘IPSP’ or ‘Internet Payment Service Provider’ this also in turn meant that webmasters needed to start paying ‘fees’ to Visa (via their IPSP) in order to continue charging their surfers for access to products and services by using Visa issued credit and / or debit cards.In addition to the initial $750 however, there is also a need to pay an ongoing fee of $375, two thirds of this fee goes directly to Visa and, the remaining balance goes to issuing banks and IPSP’s for administrative charges.
Shortly after this announcement was made the industry then got dealt another blow by the processing companies, this time, in the form of Paypal announcing they would no longer accept any adult orientated payment through their system. This went into effect on May 12th 2003 and, after initial speculations as to what could and could not be charged to Paypal accounts, it seemed to be the final nail in the coffin for some of the smaller webmasters.
However, the adult industry is strong and rallied together getting as much information as possible about alternates to both of the above situations and companies such as Stormpay and off-shore IPSP’s started to see an increase in revenues from adult payments.
As The Waves Settled – The Next Blow.
Given all of the financial troubles of the previous 10 months in respect of online adult payments the industry as a whole started to settle itself again, of course there was the usual posting on forums, conversion ratio and shaving discussions happening on the main forums as there always was but, in addition to these conversations more rumors started, this time, regarding the AVS business model.Almost as quickly as these rumors started however, they seemed to have fizzled out into nothing but a distant memory but, two months later after the first round of initial conversations on the adult industry message forums, the same AVS business model was dealt another devastating blow.
It seems Visa has its sights set on AVS (Age Verification Service / Systems) with a press release being issued first by Sex Key, then by Free Age Card, which was followed by similar announcements from Global Male Pass and Gay Passport informing adult webmasters that they had 2 days to make their current AVS sites conform to the new requirements set down by Visa.
These requirements were that.
1) Adult webmasters can no longer use the term ‘AVS’ on their sites.
2) Adult webmasters can no longer use the term ‘Adult Verification Service’ or ‘Age Verification Service’ on their sites.
3) Adult webmasters can no longer state that surfers joining up to their AVS will have ‘Access to thousands of other AVS protected sites’.As usual Adult Webmasters started to question the reasons behind this sudden and apparent change of AVS rules on almost every forum and, whilst most questions went unanswered the one thing that was answered (honestly) was that these new rules had been set down by current AVS IPSP’s who, had had these rules issued tot hem by Visa.
So, webmasters started to change out their tour page text to conform to these new rules and, for the most part, it seemed like that was all that was needed to be ‘safe’ working the AVS business model. Little did they know…
One Last Blow To The AVS Webmasters.
Several days after the initial press releases from some of the top AEN (Formerly AVS) companies was made it seems that in between all of the posting ont he boards yet another issues comes to light – That Visa is aiming to have AVS webmasters now pay a $750 fee for the benefit of being able to keep using this business model as stated by Craig Tant (Sex Key) ‘we believe is that every site will have to be registered and pay the $750.’This beleif, although somewhat vague tends to draw conclusions that, through no fault of their own, the AVS / AEN business model in the adult industry as we currently know it is changing and, changing for the worse. If webmasters are forced to pay Visa a $750 registeration fee per AEN system or per AEN site then a lot of todays industry leaders are going to come unstuck, especially those that focus solely on the AVS / AEN model for the primary source of income.
Adult Entertainment Networks – What’s Next?
This is the question that is currently being asked by many webmasters and, the truth of the matter is simply that nobody knows – Except for Visa, the next few days, weeks and months are going to be telling on the industry as a whole from what happens to current sites inside the AVS / AEN companies websites to what happens when surfers start to propagate back onto the adult internet looking for their fix of high quality porn, two things however are definitive throughout all of this, Visa is homing in on the adult industry and, every webmaster needs to be concerned about what will happen next.Article written by Lee
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing