-
Mirroring Adult Sites – Stage Four
We are now going to take our basic template and start to make some pages for the link lists for this you will need to open up your original warning page. Once you have this page open you need to visit a couple of the link lists that you use. Go to the submissions page of the link list and download their reciprocal buttons.
In the same way that we did with the TGP pages we created you now need to edit the warning page you have open and insert the recip links on your warning page, ideally and, as most link lists will require this, the recip links should be placed above the enter and exit links.
Once you have done this, you now need to save your newly edited page as linklist1.html in the /FreeSite/LinkList/ folder, do this for as many of the link lists that you wish to submit to, each time saving the new page in the /FreeSite/LinkList/ folder.
Also at this stage, we should add a console to our link list page, ideally a blur console with links going to your surfer trap FPA’s. You can find the Java coding to create a blur console on the tutorial about building a surfer trap.
Once we have done this, we now have some more sites created. However, this time, the page/s we have just created are designed to build the traffic we have to our site/s.
Once you have these pages saved you now need to re-open your original warning page once more.
This time, we are going to optimize the page for the search engines, again, in the same way we added our ALT tags on the surfer trap we are going to add them to the warning page however, we are also going to optimize our keywords, description and, site title.
Once we have optimized our original warning page we should now save this as se1.html in the /FreeSite/Engine/ folder we created at the start of this tutorial. Once one SE page has been created, you need to create a selection of others making sure that you swap around the meta tags to ensure they are all different to each other, I would suggest making three variations of these SE pages each time saving them in the /FreeSite/Engine/ folder.
The next thing we are going to do is to ‘dirty’ these SE pages up some more, pretty much in the same manner as we did with the surfer trap tutorial. What we need to do is add a small pop up console to the three SE pages along with a blur console, these consoles can be the same ones that we used for our surfer trap or, we can create new ones however, I think the smart thing to do would be if we used the ones we currently have online. So once we have added these consoles we need to save the pages.
Also, to these SE pages we should add our Banner exchange code, as these will be going into the search engines there are no rules as to what we can and can not do on these SE pages so we should make sure that even if they just get one hit, we get additional traffic from them. By adding a banner exchange code as we did on the surfer tutorial we can drive additional traffic either to our sites or to our surfer trap, where you send this traffic is your choice. If you want to sign up for our new banner exchange you can find it at http://www.pornclient.com.
Now we have the completed site template built. We need to submit the pages and sites we have just completed to the TGP’s, AVS’s, Link Lists and, the Search Engines.
Once we have submitted these sites all that we need to do to create a new set of sites is to find another set of 50 images, rename the images as we did at the start of this tutorial, pic1.jpg, thumb1.jpg etc and simply upload the site to our server without the full size images and the thumbnails. Once the HTML pages are online, we now have to upload the full size images and the thumbnails and we have a set of sites using different content to our original one built in less than 5 minutes.
The best thing with these sites is that if a any time we want to alter the layout, all we need to do is edit the HTML of the version we have saved on our HD and we have a new template ready to use.
I hope you have found some use out of this tutorial and, I am sure you can think of other ways in which we can use templates of this style, this tutorial was just detailing some of the basics however, we can make the template as simple or as complicated as we like. Our only limits are what we make for ourselves.
Article written by Lee
-
International Billing Alternatives – Online Check Payments
In my previous article i discussed the value involved with Premium Rate Phone billing as an option for your adult surfers and, staying on the topic of payment processing this article will take a closer look at the Online Check payment method or, ACH as it is commonly referred to.
ACH (Online Check Payments) – What Is It?
An online check payment is a method of allowing your customers to pay for their goods using their check’s online, in order for your customer to pay via a check they need to have available certain items these are, a current checking account, a valid routing number (found on the check) and, an account number. Funds paid via online checks are automatically debited from the customers bank account.Online Check Billing – How It Works.
Online check payments are processed in real-time, surfers are automatically accepted and authenticated via their current billing address, social security or, driving license number, once they have been authenticated their payment details are then sent to the ACH (Automated Clearing House) system where this information is automatically accepted as long as the details provided are verified as correct.Online Check Payments – What Are The Costs?
Utilizing the online check method of billing your customers is actually just as, if not more, cost effective as using online credit or debit cards, in effect, you are guaranteed the funds of the check once they clear as, in all reality, the surfer will not have such an easy time declaring the purchase as a ‘charge back’ because the information needed to pay via an online check is information that in reality, only they have access too.So, as with our previous articles, lets say your paysite membership fee for one month is US$35, a surfer signs up to your site using an online check, you make, approximately, US$33 from this membership for each and every month the customer (or surfer) chooses to renew their membership.
The one main advantage with online checks however is that, surfers will often feel more ‘secure’ in using them to pay for 3 or 6 month memberships and, as long as their check clears your account, you are almost certainly guaranteed the funds.
Online Check Billing – The Main Benefits.
As mentioned above already, the primary benefit of the ACH payment method is that the customer will almost certainly have funds available in their online checking account to be able to meet the cost of the paysite membership, after all, they wouldn’t give out their banking details if they were not sure the payment would go through. In addition to this advantage there are also several other advantages to using Online Checks as a payment method for example:Increased Sales.
Reduced Order + Billing Costs.
Faster Payment.
Reduced Credit Card Charge Backs.ACH Check Payments – Overview.
Whilst ACH check payments are a good alternative for US surfers the one major drawback is that, in today’s global market place they are not a method of payment for international surfers unfortunately, at this time, there are no companies who can offer this service to my knowledge to the ever growing global population.That said, there is a place in the industry for check processing for adult payments and, with Visa breathing down our collective necks more and more, now would be an ideal time to take an in-depth look at this processing method.
I hope this article has provided you with some useful information regarding the online check payment method.
Article written by Lee
-
Protecting Your HTML Code With JavaScript
We all know that source code theft is wrong and covered by copyright never the less some webmasters will inevitably try to steal the work that the honest ones amongst us create.
Unfortunately, there is no sure fire way to stop people from stealing our HTML code but, we can make it hard for them.
The following JavaScript coding, when placed in your <body> tag can make it harder for the opportunistic webmaster to steal your coding.
Simply copy and paste everything below into your body tag and change the text in the var message=”” field.
<!–Start Copy–>
<SCRIPT language=”JavaScript”>
<!–
var message=”Copyright 2000 by Your Site. WARNING ! All content contained within this site is protected by copyright laws. Unauthorized use of our material is strictly prohibited.”;
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// –>
</SCRIPT>
<!–End Copy–>Whilst this is not a sure fire way to stop the occurrence of HTML theft as mentioned already it will deter those webmasters who perhaps were there for the simplistic reason of viewing your source code.
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
-
Now They Signed Up – Learn How To Keep Them
Member retention is going to have a large effect on the adult industry over the next few months, with Visa chargeback rates being lowered and, many affiliate programs lowering their payout model something has to give and, hopefully, the thing that does give will be that affiliate programs start to realize that once they have your surfer, it becomes their responsibility to make that member retain.
With that in mind this article will look at a few things that we have been doing on some of our paysites for the last few months and, instead of having to provide an excess of plug in content we have started updating our sites regularly within the niche confines of what our members are actually looking for, also, despite this increase in content, we have started doing something unique so far as member retention goes – actually communicating with the member directly.
Communication Pays.
Actually spending the time to listen to what your members want can be beneficial on many levels for example, how many of the big sponsors offer the member a chance to become involved in a ‘community’ inside their paysites, i can only think of 3 paysites that i have personally visited that do this.Often, offering your members a way to communicate to YOU what they want inside the site can, and usually will increase the value of their membership to you in the long run. offer your members weekly polls, offer them incentives to keep an active membership, perhaps some kind of loyalty program, in addition to a method of your paysite members being able to communicate to each other inside your site.
Content Updates.
We all know that paysites need to update however, how many paysite owners spend the time to ask their member what they are looking for? As mention in the previous section, offer your members polls on the next updates you will be doing, ask them what sections of the site need improving and, more importantly, ask them if they are happy with how your site looks and feels overall.Renewal Time.
So you have managed to keep hold of your paysite member for a few days without them canceling and, their trial period is ending what now? Well, more often than not, communicating to the member that they are about to get rebilled can have a positive effect, send them an email prior to the rebill informing them of what your next set of updates will be, let them know they are a valued member of the site and, more importantly than this, that you are there to help them and listen to their suggestions. This is also an ideal time to remind them of why they joined your site in the first place, you have a lot of exclusive content that, simply put, no other paysite can offer them, you listen to their feedback and, again, value their feedback, all of these things will ensure that your member base retains well over the trial period.Second Month Renewals.
So you have managed to keep your member for a month, and, again they are due a rebill, as with the first rebill you gave them, re-iterate the points of your site and, tell them what has changed over the past month, give them some sales speak about how your site is doing and, more importantly, what you have coming next month, by communicating these updates to your members a day or so before they have to renew, you should, in all honesty, keep their interest in your paysite and, more importantly, make more money from your members.So Your Member Cancels.
Okay, so perhaps you managed to rebill your member for a few month or, perhaps they left after the trial period, what now? Simple, send them a follow up email, find out the reasons they cancelled their membership to your site and, see if you can offer them an alternative to stay, perhaps a reduced cost membership or, maybe even an alternative site altogether, if they entered your teen pay site and, were looking for amateur teen pics, even though you know you don’t have them yet, you will probably know of a site that does, tell this cancelled membership about this site and, get them to try it out, if you can match what the surfer is looking for to a site you own then you have a second chance at keeping their membership and, making money.Retention Overview.
When all is said and done the one thing that is apparent so far as pay sites go is that a lot of them do not communicate with their members and build the sites they operate around what their members are looking for, we can all say we actually do this constantly but, how many of us really, hand on heart, can prove that they ask, listen and, more importantly, implement the feedback from their members base?Article written by Lee
-
Community Forum Scripts
Whether you have little or much traffic one thing that will enable you to benefit greater form this traffic is giving your surfers the sense that they are part of a ‘community’ much like the message boards built around adult webmasters have the feel of a community to them your surfers will end up staying around a lot longer if you can give them a reason to come back to your site over anyone else’s.
That said, one of the main factors in starting your own little porn community is the need to have a place where all the ‘action’ take place. What better way than you own message forum.
However, we hit our first problem, having never thought about starting a forum up before you wouldn’t know where to go to look for scripts or, what the best one is. That’s the reason behind this little guide.
Below you will find a short breakdown of the more commonly used message forum scripts along with a short list of features each one has to offer you when choosing to build your own online community.
VBulletin http://www.vbulletin.com
This is actually quite a good forum script, most of the main forums on the web use either VBulletin or PhpBB when it comes to threaded forums. VBulletin uses MySQL and .php to run the actual forum and, set-up of it can become a little tricky if you want to customize it to your exact needs and color scheme. That said, once you overcome the initial complications in setting the forum script up it is easy to handle and, with a price tag of only $160.00 its an affordable option for many.
Ultimate Bulletin Board http://www.infopop.com
Unlike VBulletin UBB uses Perl programming for the forum script which, means you can install it on any cgi enabled host. However, the one main drawback with this script is that it uses flat text files to store all the data which, can sometimes bog down your server with unnecessary file calls. The cost of $199.00 however can be a bit to expensive for most webmasters.
Ikon Board http://www.ikonboard.com
Ikon board is a nice little threaded forum script and, the fact that it is free to download makes it even more so however, even though it uses MySQL for the backend or, choose to store your data in flat text files this script just seems a little to ‘basic’ looking for my personal taste. That said, there are many types of site using IkonBoard so the script must be good enough for them to be using it. Then again, maybe its the price tag of $0.00 that has made this a popular choice.
PhpBB http://www.phpbb.com
PhpBB is probably the most well known free forum script on the web today, its easy to customize (within reason) supports php and MySQL functions yet seems to offer nothing in return. The basics of a forum are there however, every webmaster and their closest friend seems to be using this script. The whole idea of building up a community is so that your site can stand out from the crowd, in my humble opinion, the script does what it is supposed to but, it doesn’t offer any redeeming qualities to your site.
Site Net BBS http://www.focalmedia.net
Sitenet BBS, formally known as Netboard, is probably one of the better Perl based forum scripts on the market, it price tag of $69.00 makes it an affordable choice for almost everyone and, the installation process itself is VERY simple to understand. The one drawback that i have found with this forum script however is that it stores the data in flat text file which actually slow the server down quite a lot making connections to the forum time-out on numerous occasions. However customization of the script is very easy using only HTML based templates you do not need any additional programming skills and, it has a nice interface with a few good features. For the price it is well worth a look. They also offer a freeware version however the links on the bottom of the forum become annoying after a while.
In summary there are a lot of popular forum scripts available for webmasters to start using some are free other require payment ALL have a range of different functions available in them.
Before looking at installing any of the scripts you should always try a demo first to see which one has the features and benefits you would like to offer your community members.
If you can get your base community built up on a forum they enjoy using then all the rest of your marketing should pay off in dividends long term.
Article written by Lee.
-
Thinking Of Starting An Adult Website In The UK?
We all know that there are many foreign / international adult webmasters and there are some very well known ones based in England however, before you start building your online empire what are the legalities regarding the type of content you can and cant use on your adult pornographic sites?
To be honest with you, there are no ‘defined’ laws in England (At the time of writing this article) regarding the use of online media to promote adult activities however, it is a commonly held belief that as long as you stay to the same standard as what most ‘top shelf magazines’ or ‘R18 Videos’ have in them you shouldn’t go far wrong.
So what are these standards? That’s the information that I am about to give you.
Content that IS NOT acceptable.
1) Any material which is in breach of the criminal law.
2) Material (including dialogue) likely to encourage an interest in abusive sexual activity (e.g., pedophilia, incest) which may include depictions involving adults role-playing as non-adults.
3) The portrayal of any sexual activity, whether real or simulated, which involves lack of consent.
4) The infliction of pain or physical harm, real or (in a sexual context) simulated. Some allowance may be made for mild consensual activity.
5) Any sexual threats or humiliation which do not form part of a clearly consenting role-playing game.
6) The use of any form of physical restraint which prevents participants from withdrawing consent, for example, ball gags.
7) Penetration by any object likely to cause actual harm or associated with violence.
8) Activity which is degrading or dehumanizing (examples include the portrayal of bestiality, necrophilia, defecation, urolagnia).
As you can see from the above, there ARE very specific guidelines regarding water sports, animality and, some of the more ‘out there’ fetishes.
Now you know what you cant use on your adult sites, lets take a look at the list of sexual activities that you can use. Its no surprise that the list of what you can use is considerably shorter.
Content that MAY BE acceptable.
1) Aroused genitalia.
2) Masturbation.
3) Oral-genital contact including kissing, licking and sucking.
4) Penetration by finger, penis, tongue, vibrator or dildo.
5) Non-harmful fetish material.
6) Group sexual activity.
7) Ejaculation and semen.
It also worth noting that the above guidelines are not distinguished between heterosexual or homosexual activities.
So, that’s the low down on what the current status of affairs are with regards to the use of adult content on websites in England and Wales. Actually, that’s not to bad just ensure that you stay within these guidelines and, more importantly, that you do consult a solicitor before commencing any form of adult business after all, that’s what they are there for, to give you SOUND legal advice instead of basic ‘guidelines’.
Article written by Lee
-
Mirroring Adult Sites – Stage Three
So we hit stage three of our tutorial in this stage we are going to make some pages for our top 5 AVS systems. However, as we did in the last tutorial with the new TGP galleries we created we are going to use the same content and same pages that we have already built. On with the tutorial…
Anyone who build AVS sites will know that you need to have a standard site layout. This usually consists of an entry page (or a warning page), a navigational page (or in our case our menu.html page) and some gallery pages.
So the first thing we need to do is open up the warning page. Once this page has been opened we now need to do some editing of the page, what I would suggest is moving the warning text to the lower half of the page and at the top making some ‘juicy’ sales text, depending on the niche you are targeting with this site you may also like to add a couple of the original thumbnail images at the VERY top of your page however, these should NOT be linked to the full size image.
Once you have edited your page to a reasonable standard for the AVS you now need to save this page in the /FreeSite/AVS/ folder that you originally created on your HD. I would suggest saving the page as something like avs1.html or the name of the AVS you will be using this page for.
Once you have done this you now need to duplicate this page but save it as a different name in again, in the /FreeSite/AVS/ folder so you will end up with avs1.html, avs2.html, etc.
At the moment these AVS pages have no AVS script on them so, we need to visit the AVS system we are going to be using and fill out the details to have the AVS generate an AVS signup page script for us. Once we have the coding that the AVS provides we now have to place this on our avs1.html page. You should repeat this for each of the AVS’s you wish to use and save each instance of the generated AVS script to a separate AVS*.html page.
be aware, that when you are putting your information into the AVS to generate the script, you should enter the ‘members area url’ as the page we created for our navigation so, the AVS script location will be /FreeSite/AVS/avs1.html and, the members area page will be, /FreeSite/Menu/menu.html.
Once you have placed the script on our avs.html pages you should now have the following sites ready:
1) 50 Pic Free Site With Pics On HTML Pages.
2) 5 TGP Galleries With Pics On HTML Pages.
3) 5 AVS Entry Pages.Now we are starting to see how using one set of content can amount to a mass of sites all of which can be sending traffic to our sponsors and, to our surfer trap.
This is where stage three of our tutorial ends however, in our next tutorial we will continue to make some more sites and in an effort to get some traffic we start to play with the ones we have currently created.
Article written by Lee
-
Adult Webmaster Health
Sounds to me like you are a webmaster. Most of us realize that working at a computer everyday can and often is, bad for our health in one way, shape or, form. However, how do we alleviate these potential problems with our health?
Well in this article I will detail some of the things that can often affect the webmasters in our industry and how they can be solved.
RSI (Repetitive Stress Injuries) are the results of, as you may have figured out already, the effects of constantly doing the same movements over and over again using specific parts of your body. One of the most common of these that webmasters are aware of is CTS (Carpal Tunnel Syndrome) which is a result of typing a lot.
So, how do you combat the effects of CTS? First and foremost, if you experience any form of pain at all, your first port of call should be the doctor, the pain you are feeling could be an indicator of a bigger problem. If you think your pain might be caused by use of the computer then an occupational therapist might also be a good person to visit.
CTS is often attributed to use of your digits and poor hand positioning when you type one way to solve this problem is to go to Office Depot and purchase a wrist rest, this will ensure your wrist has ample support whilst you are working throughout the day.
You might also like to try re-positioning your monitor, as a general rule of thumb, having your monitor placed about 20 inches away from your face will usually result in good posture and that in itself can often be a solution to the potential medical problems. One other thing on your posture, get a good chair, one with a high back may be good, these generally offer you more support and, can stop that awkward habit of leaning into your keyboard when you type.
Eyestrain, Eyestrain is another common problem that the webmaster faces, often it leads to things such as excessive headaches, fatigue and, blurry vision, the most acceptable relief from eyestrain is the use of screen filter that will reduce the glare your monitor emits.
There of course, some other things you can do to alleviate this problem such as, Adjusting your monitor so the top of the screen is no higher than eye level, as already mentioned, keeping the monitor a safe working distance from you, usually between 18 and 30 inches is recommended by doctors.
We know computers are machines and tend to forget that our own bodies are complex machines which, should be looked after just as our computers should be, we often forget that sitting at the PC building what was meant to be a 10 minute site can turn into an hours worth of ‘online work’. Take some time every now and again to stand up and walk for 5 minutes, even if it is just to the local store to buy some more smokes, you are actually getting some exercise and, even though the tar in your smokes will end up killing you anyway, you’ll at least be able to work a little longer without getting any problematic computer related medical symptoms.
This article is not meant as an alternative to visiting your physician and, should you think that any of the above are relevant to you then it is recommended that you visit your doctors without delay and follow any advice that they give you.
Article written by Lee.
-
Choosing The Right Sponsor For Your Site
Affiliate programs (also frequently called referral or associate programs) have grown today to become one of the most popular ways for you to earn an income from your web site’s traffic. Most affiliate programs are designed to allow you to simply set up and begin earning commissions on visitors and sales you refer. However, the quality of the programs, and the results you will see, very greatly from program to program, making it important to choose wisely which are best for you and your site. It is the purpose of this article to help sort through many of the programs, and offer assistance in determining what to look for.
My personal experience with affiliate programs goes back over a year and a half, pretty long in Internet terms. Over this period, I researched many of the affiliate programs available on the Internet and, tried to best determine what works best. From my experiences, here are several of the top factors you should take into consideration:
1- Stability of the company and program
What I found to be the one of highest priorities for most webmasters is the stability of the affiliate program, and the company. This should be one of your top considerations when evaluating programs. Is the company stable and financially sound? Do they offer assistance with promoting the opportunity? And, do they pay in a timely fashion? Often, webmasters have been lured in by offers of high commissions, only to find out they will never see a paycheck, despite referring hundreds, or even hundreds of thousands, of visitors.
2- Synergies with your site
I am a big proponent of this. All too often, I see sites sign up for every affiliate program they can, figuring if they make a few bucks on each, that they will be profitable. For a select few, this may very well work. However, for most sites it will not, and many cases you will turn off your audience because of the ‘over-commercialization’ of your site. As you are considering the various affiliate programs available, be sure to consider what exactly your audience, your visitors, might be interested in clicking on, and eventually buying.
For example, if your site caters to a general audience, then perhaps general affiliate programs such as Adult Revenue Service, will be effective. Or perhaps Evidence Eliminator, which allows you to sell privacy / security software. If your site only caters to a specific niche, programs such as Adult Revenue Service should be excellent money-makers as they have a wide and varied selection of adult sites which you may promote. The key is to not just think of the affiliate program as a way for you to make some easy money, but rather an extension of your web site, a service you offer your visitors to help them find the products or services they are interested in, at good prices, and with a company they can trust.
3- Commission Tracking
An important aspect to consider is whether or not the affiliate program offers some way for you to track your sales, and even the number of visitors you refer. There are several ways this can be accomplished, such as real-time, online reports showing you sales and your commissions. Or perhaps sales can be tracked through a simple email each time you receive a new customer. This can be very important for allowing you to test and evaluate the effectiveness of the program, make comparisons with other programs or advertising opportunities, and give you piece of mind that you are receiving what is fairly do.
4- Opportunity for Repeat Sales
As any business person knows, a business can not generally survive on one-time purchases. Instead you have to find ways to not only attract new customers, but also keep the ones you have. This is also very true with affiliate programs. One of the largest complaints many webmasters have had with sponsors is that they refer a customer once, see their $35 commission, but in the process the customer bookmarked the Sponsors tour page. The next time the surfer is interested in buying a membership, they return to the sponsors site through the bookmark, and the webmaster never sees another penny.
Several programs have tried to alleviate this. Programs such as Adult Revenue Service avoid this problem by offering services (Daily Updated Pictures, Email Newsletter) which customers, once signed up for, use month after month. This allows them to pay residual commissions for as long as the surfer maintains their free membership to the site or, alternately, keeps returning to the page. This helps turn average programs into exceptional opportunities, because you can earn for months, perhaps even years, on referrals you made in your first, and subsequent months.
Other Factors
In summary, it is important to look at all of these main factors and several others, including the commission rates they pay (I didn’t discuss this because they are generally easily comparable), the frequency of payment checks (they generally range from weekly to quarterly), and/or the minimum dollar value you must accumulate before receiving a check (they range from nothing to $50). A couple of other important factors: be VERY wary of any program the requires a payment or ‘membership fee’ for you to join or act as an affiliate. And, be sure to check what method they use to track sales themselves. Programs that require the visitor to remember your name, or your site’s name, and enter it in when ordering, will result in many lost commissions.
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