-
Using Full Page Ad’s
Full page ad’s can be used for more than just ‘adverts’ in fact, there is a wide and varied range of uses for them, below I have detailed some of the uses that I have tried in the past and from my experience, they seem to work well enough.
Creating A ‘Hub’ Site – By interlinking FPA’s together in a range of niches and, offering your surfers a money bar linking to other FPA’s in different niches, you can actually get some good rankings in the SE’s and, if you utilize banner exchanges or counters on your FPA ‘hub’ site you can also ensure you get a fair amount of additional traffic. One thing I like to do with my FPA hub is use it as the ‘exit’ page when a surfer leaves one of my sites. This ensures that I am getting optimum traffic for my time spent a) building sites and B) building my hub.A lot of people I have spoken to about ‘hub’ sites simply forget about them once they have been built, personally, I do not see the point in doing this, if you build something like this why not send your exit, top list, counter, banner exchange traffic to the first page of your ‘hub’?
Doorway Pages.
FPA’s also make exceptional SE doorway pages, by optimizing your image names, meta tags and text on the individual FPA’s you are not only ensuring they WILL get ranked by the SE’s but, if you ‘hub’ them together as explained above you will also get some premium listings from them.
Filter Pages.
What I learnt to do early on is rather than send my surfers directly to the sponsors using the ‘standard’ linking codes is to send them first to an FPA with a money bar (or table ad) on it, this way, if they click the link in error and not realize that they are going to a pay site, you can give them an option, not only to use their ‘back’ button but also, to go to a different niche or, to continue into the sponsors tour. Now that you can link directly to a specific tour page on ARS sites, this method is a good way to give your surfers a ‘fresh’ tour front page.
PPC Listings.
An FPA is an ideal way to get sites listed in the PPC engines, not only do you show the surfers EXACTLY what is in the site they have just clicked on but, you also have the added option of being able to utilize blur consoles and exit consoles on them.
One other thing that I will mention, is that often, you will find that FPA’s that you have made yourself, no matter how ‘amateur’ looking they are will work better than the ‘pretty’ sponsor built FPA’s.
Hopefully, this article has given you some ideas on how you can better utilize FPA’s and not just use them in the same manner as every other adult site on the internet. If you have some good results from using FPA’s in this manner feel free to post about it on the ARSR Support forums and likewise, if you can think of any additional uses that have not been mentioned here let us know on the forums.
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.
-
Using Basic Server Side Includes (SSI)
Server side includes are what their name sounds like. A way to include the contents of another file into your current web page BEFORE the web page gets sent off to the surfer. Not only does this include contents of a static file but you can also include the results of a CGI program and on some web servers, you can even have it display the current date and time.
Now, many web hosts do not normally have server side includes turned on. You will have to ask your host if they have SSI turned on and if they do, what is the file name extension for SSI. By default, SSI files have an .shtml extension.
Sometimes, you can turn SSI on yourself. If you host doesn’t have SSI turned on for you already, you can try adding the following two lines to your .htaccess file. Then create a file with the .shtml extension, include a SSI command and see if it works.
AddType text/html .shtml
AddHandler server-parsed .shtmlWhen you use SSI commands, you place them exactly in the location within your web page where you want the output of the SSI command to appear when you finally browse the page. If you have SSI, then you can use the following command to include a file. When you include a file, you can either give it a path name to the file or you can give a URL to the file. I’ll list both here.
<!–#include file=”/some/path/above/my/web/to/my/header.html” –>
This is an example of how to include a file based on its path name. Now,
here’s the same file put included with its URL.<!–#include virtual=”/to/my/header.html” –>
And this is an example of how to use a URL. With a URL however, it cannot be a complete URL such as http://www.somesite.com/somefile.html. It has to be within your current website. You can also use the URL method to run a CGI script! Here’s an example of that:
<!–#include virtual=”/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2″
–>As you can see, we can even pass arguments to the CGI script just as if you typed it into your browser! There is also another way of running a CGI script but this is not as widely used any more and you should use the #include virtual method instead. Here is the same example so that you will know what it means when you see it.
<!-exec cgi=”/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2″ –>
As I mentioned earlier, you can use SSI to display the current time and date. Here’s how:
<!-echo “$DATE_LOCAL” –>
This will display the current date and time. SSI is usually used when you want to have a standard header or footer on each page. It’s also used for displaying rotating banners or page counters. As you see above, you can also use it to display the current date and time or the date when the page was last modified.
SSI has also been used for cloaking and some tracking software uses SSI to track each incoming hit to the web page. If you would like more information about SSI, go to
http://www.apache.org/docs/mod/mod_include.html. This is the definitive guide on SSI on the Apache web server.Most other web servers that use SSI also follow these conventions.
Article written by Lee
-
Tips For Submitting To TGP’s
One of the most popular ways for getting traffic to sites these days is to submit galleries to TGP’s and because it is so popular there is a lot of competition for getting listed. If you like, it is a buyer’s (TGP’s) market, with the supply of galleries exceeding the demand. For example, at Richard’s Realm we only list about 60% of the galleries submitted and that’s after we’ve filtered out unwanted free hosts, free email addresses and submission bots. If we didn’t do that we would be listing about 20%-30% of all submissions.
Before you begin
Submitting to TGP’s is a numbers game. It’s all about volume and percentages. The amount of money your gallery generates can be estimated using a formula with 4 elements:Total Hits To Gallery X Click Through Ratio X Signup Ratio X $ Per Signup = Total Revenue
So, for example, 1 in 25 surfers to your gallery clicks on a banner or a link, you use a sponsor paying $30 a signup and you have a 1:400 signup ratio with them from your TGP traffic. The formula then becomes:
Total Hits To Gallery X 4% X 0.25% X $30 = Total Revenue
You can see now that the only thing remaining that will affect your Total Revenue is the Total Hits To Gallery. If you increase the Total Hits To Gallery the Total Revenue will also increase.
Of course, experienced TGP submitters also know that you can work on improving the other elements of the formula to improve Total Revenue. They tweak their galleries and change banner and link placement to maximize the Click Through Ratio. If it is improved and rises from 1 in 25 (4%) to 1 in 20 (5%), their Total Revenue increases overall by 20%.
Building the gallery
Examine the formula above and you will see that two elements can be manipulated at the gallery building stage: Click Through Ratio and Signup Ratio.It is always said, and surprisingly often overlooked, but select a sponsor for a gallery which complements the gallery’s content. For example, if you build a big tits gallery use a big tits sponsor. With more and more TGP’s becoming categorized people surfing the big tits category will be looking for bit tits and are more likely to be interested in a big tits sponsor!
In addition, be sure to use sponsors which are not overly-used, sponsors which are little known. If you go through a TGP you will see the same sponsors and banners showing up all the time. If a surfer sees a banner 10 times they are only going to click on it the once. So even if you build the perfect gallery with top notch banner placement and pictures, if the surfer clicked on the same banner on the previous gallery they’re not going to click on yours!
Selecting TGP’s
There are hundreds of TGP’s you can submit to. It is usually advantageous to select TGP’s that only post your type of gallery, as well as the more generic ones. For example, submit to TGP’s which only list big tit galleries or galleries with one-legged midget lesbians (if that’s your niche). The more targeted traffic will usually result in better click-through ratios and better signups, especially if you’re using a new or little-known sponsor for the particular niche.TGP’s with a moderate level of traffic that send a few hundred hits tend to be quite good. Admittedly, to get any real volume you need to submit to quite a few, but consider using TGSW to do the bulk of it. My reasoning for using the smaller TGP’s is that they tend to list fewer pages and the surfers tend to be less “professional” and adept at dodging banners.
Submitting your gallery
There are no real tricks to this bit, but it is very important to remember that TGP’s usually get far more submissions than they need or want. You must try your best not to give them a reason to reject your gallery:- Read the rules carefully and follow them. The TGP webmaster doesn’t put them there for fun and if you break them it’s possible you will be blacklisted.
- Look at the galleries already listed on the TGP to get some idea of what the webmaster likes.
- Don’t try to be smart and use different names and email addresses to avoid the per webmaster submission limits. Although galleries can look very different, reviewers have a good memory and can often recognize designs, layouts and descriptions. If they spot you trying to cheat you’ll probably end up getting blacklisted.
- Take a look at their TGP and see what kind of description they like, Adult Buffet have very different descriptions to Richards-Realm. This might not determine whether or not you get listed, but it’s a chance to get a good description of your choice and, hopefully, more hits.
- Select the right category for your gallery. If you submit your gallery to the “Teens” category and it should be in the “Mature Women” category it will get put there or rejected. If you get the gallery listed in the wrong category you may get more hits, but if a surfer is expecting a nice young lady in the pictures he’s just going to hit his back button and look at the next gallery in the list – probably not even giving your banners a chance to load.
Monitoring your gallery
Once you’ve submitted your gallery you should keep an eye on how it performs. View the stats to see who listed you, how many hits they sent and how much you made from the gallery. It is even worthwhile to create galleries dedicated to specific TGP’s, so you can monitor their performance even more closely. If a TGP sends lots of hits but no signups it’s probably worth no longer submitting to them or changing the gallery to see if you can improve the click throughs or signups. Compare before and after stats if you make changes in the gallery layout or sponsor to see if they’re working.Whatever you do keep tweaking and monitoring your galleries to get the best possible performance for each of the elements in the revenue formula.
Article written by Richard
-
The Next Big Traffic Craze – Thumbnail Link Lists
As adult webmasters are constantly thriving to create the next craze in traffic sources to garner sales from their sites it comes as no surprise that there is already talk amongst the ranks of the next big thing, what is this new idea? The Thumbnail Link List.
Thumbnail Link Lists – Re-Inventing The Wheel.
As the past year and a half have taught us as webmasters, regular TGP’s have almost become a thing of the past with more and more thumbnail TGP’s being created and submitted to daily, why then, has it taken so long for someone to think up the idea of the Thumbnail Link List? Quite simply I think it has been a case of to much has happened over the last 12 months in the adult industry for webmasters to think this idea up.So What Is A Thumbnail Link List?
A thumbnail link list is in effect a way of displaying free sites on your own standard Link List by utilizing small thumbnail samples of the images contained within the free sites galleries, in fact, much the same way that a thumbnail TGP works however, instead of only listing single image galleries your link list will consist of links to individual free sites.Much like the Thumbnail TGP traffic source, the thinking behind the Thumbnail Link List is that by showing your surfers what type of pictures the sites within your link list contain they will be more likely to visit the free site thus improving your CTR to your webmaster submitted sites and, ultimately, your site overall allowing you to manipulate the traffic to garner more sales for yourself as the Thumbnail Link List owner.
Submitting Your Site To A Thumbnail Link List.
Looking at the Thumbnail Link List idea from a webmaster who would be submitting your free sites for listing (and ultimately traffic) how do the rules of the Thumbnail Link List differ to that of the regular link list which we are all used to seeing, well for a start, the main difference will be that you either need to submit a thumbnail yourself or, enter the url to one of your gallery pages in addition to the main entrance to your free site, this will actually be the only significant change in how you operate your link list submissions compared tot he current link list method, however, as each Thumbnail Link List owner will have their own individual rules you should check before submitting as to what is required from you as a submitter.Thumbnail Link Lists – Overview.
The whole Thumbnail Link List idea is one that, in all seriousness should mean more traffic not only for the submitters of the free sites but, also for the Thumbnail Link List owner themselves, by offering the surfers a preview of the content contained within the free sites they will be visiting they can simply reduce the amount of sites that do not appeal to them and focus more on the sites that do meaning that the webmasters who submit highly niched free sites to the links lists will now be able to benefit from a larger traffic base and ultimately, more sales.Article written by Lee
-
Censored Gay Adult Pornography
You’ve heard it said over and over “Make them pay for the pink” or in the case of the gay market “make ’em pay for the MEAT”. But how far can you get without hardcore on a gay site?
Depending on the method you use to get your traffic softcore verses hardcore can make a big difference. If you’re working the SE’s, you set the tone by way of your descriptions and keywords – and you hope that they get you the rankings and the surfers. On the other side of the fence, when you use link lists and categorized directories, their categories will dictate where your site will go. Thus, you are totally out of the loop when it comes to its placement.
For the past six months I have been conducting a test. I built ten free sites, all to derive their traffic from link lists. Five were strictly softcore and the others a mix of softcore images and “selective” hardcore images. Each had 40 pics in order to play to the larger LLs and directories.
Let me give you a little background. The reason I started this test was to track the traffic trends in the gay market as it applied to the notion of “make ’em pay for the meat”. It was something I had done with my straight sites, but something I totally avoided with my gay sites. The reason for that one a statement I made a while back “If I wanted to see softcore I could look in the mirror when I got out of the shower.” While this is a totally narcissistic comment, it does demonstrate my ongoing point about selling to gay men.
Now don’t get me wrong in the scheme of thing I do like softcore images of the right person, but as a surfer who is looking to get off, I want what I can’t normally have. And that idea is going to send me to a site that will has what I want, OR in the case of this test, THINK that I want.
Now back to the test sites. For my softcore sites, I took various images of single men in different phases of undress from stripping to provocative poses. For the hardcore I was much more selective. I used what I call US Cable or Int’l Tele guidelines. What that means is, what do I see if I turn on a cable station or one of the satellite channels from around the world. I found “simulated sex”. Just like an R rated movie, there were scene where two guys are together with no close ups of actual penetration. So, when I went through my web images I looked for similar scenes. The images were sexual but nothing so blatant as up close penetration but suggestive enough to arouse a surfer – the taunt factor I would need to sell my sponsor sites.
With my distinct sets of sites, I began to submit to the Link Lists. 99% of the sites were accepted for each of there categories (the one that didn’t get accepted had a hardcore description and softcore images – oops). But after making the correction it was accepted.
The traffic started to come in. In the first day, the difference I anticipated was right there. I decided I wouldn’t effect anymore change in traffic so I didn’t submit to any other link lists. I wanted to test this out. At the end of the month the trends I expected were in fact there. The total of all the traffic generated 10% came in to Softcore sites. The remaining 90% came in through the hardcore sites. So this tells me that most gay surfers are hitting the hardcore categories on the LLs. It confirmed my previous assumptions.
What’s the sense of doing all of this and not watch all avenues, right? Now having scrutinized where the traffic was coming from and how, I wanted to trace how it was going out.
I used an older cgi program to track the hits out. It’s one of those standard programs that I learned to use years ago and can’t get rid of. Now remember, all of the sites are pretty much the same with wording, sponsors, color schemes, etc. The only real difference was the pics.
Based on the numbers collected from the program I found that approximately 75% of all the traffic coming into the softcore sites left on a link to one of the link lists. I had 20% go out on a sponsor’s link and the remaining 5% did not resolve (which in this program I was using tried to count the click but was unsuccessful).
Now reviewing the information from the hardcore sites, I found a distinct difference. I will not lie to you. I expected a difference. I don’t want you to think I was awestruck LOL. But, I was surprised with what I found. This time the majority went out to my sponsors – 50% went to a sponsor site, 20% went out to the reciprocal links, 19.9% went to a free gay email site (which wasn’t enough to mention on the softcore sites), 5% did not resolved. The remaining 5.1% I have no idea – they probably whacked off and logged off (I hope it was good for them LOL)
While it is not the point of this article, I will add that the traffic produced reasonable well at the sponsor end.
Let me say that my “trends in gay adult traffic” research is by no means complete. However, over the period of six month these ten sites were enough to say there is marked difference between softcore and hardcore sites. So does “make ’em pay” work in the gay market? For now, there is a definite factor depending on where you get your traffic. If links lists are your specialty, then the answer is yes.
My next step in the evolution of this is to submit these sites into the search engines. With all things considered, I’m looking forward in tracking that information. I’m off to submit. I will share the data I collect from that test soon.
Now, I just hope DMOZ doesn’t give me a hardcore time ; )
Article written by Gary-Alan.
-
Online Billing Alternatives – Token Payment Systems
In this article we will continue our look at the various payment solutions that are available to webmasters for use on a global scale and, this time we will look at the ‘Token’ system of generating income to our sites.
Token Payments – What Are They?
Token payments, as they name suggests is a way by which your surfers can access your members area by using pre-purchased tokens as a cash alternative. These tokens are available in a variety of values ranging from US$1 to US$5 and above.Token Payments – What Are The Costs?
The cost to the surfer (as mentioned above) can vary from solution to solution however, on average the tokens which are redeemed for payment are bought in amounts ranging from US$1 to US$5 and above, these tokens then grant the surfer access to any of the sites that uses the specific token system the surfer purchased ‘credits’ for.Token Payments – Price Comparisons.
Okay so based on our previous articles we will again say that access to your members area costs an average of US$30 for a months access, now, using the token payment method, you are now able to set certain ‘restrictions’ immediately on the level of ‘access’ your new member can have although, the reality of it is, these restrictions are set by the token provider themselves.Lets say a surfer has gained access to your site using a US$5 token, what can they get actually have access too – not a lot. Your surfer only has access to as much of the content in your site that his ‘credits’ or ‘tokens’ will allow him to, in fact, the token system itself is much like the current pay-per-view model only, IMHO, not as satisfying to the surfer.
back to the issue at hand, how much will you make from this surfer with the US$5 token who has just accessed your site, well, if your members area is good and you have enough content to keep the surfer there until their tokens run out of credit, then, you will make upto 95% of the initial US$5 token purchase.
The good thing about this payment solution from a webmasters perspective however, is that YOU can actually set how much time each token will last on your site. Therefore, the reality of it is, you could have a surfer join your site with a US$5 token and only see one movie file whereas, a surfer who joined with a Credit card for 30 days access, could in effect strip your site of its content and move onto the next paysite.
Token Payments – Overview.
All in all, i strongly feel that there is a place in todays adult industry for the token payment solution after all, webmasters have to limit access to the amount of content surfers are able to see for free (or cheaply) and start to ‘educate’ todays sufer that they need to spend some money in order to access ‘the good stuff’.By allowing webmasters to control the content and value of the token payments on their sites this payment solution could, somewhat start this education process for the surfers. Whether this will be a good or, a bad thing however, will depend entirely on the amount of use these relatively new payment solutions get from both webmasters and, ultimately, surfers.
Article written by Lee
-
Domain Name Registrars – Saving Your Business
The one thing that all webmasters rely on to make their money is something that all of us have, a domain name however, what would or should happen to your domain names when and if, your registrar files for bankruptcy or just disappears, surprisingly enough i do not recall this ever happening in the industry to date however, being prepared for the worst case scenario is always a good thing.
Prevention Is Better Than A Cure.
As the age old adage goes.The first thing that you should do before even registering a domain name is to check out the background of the company you are considering using, you need to ask yourself a variety of questions about this company including the following:
1) Is the registrar ICANN accredited?
ICANN (Internet Corporation for Assigned Names and Numbers) is a non profit corporation which was formed to assume the responsibility over the IP and entire domain name structure as we know it. This in essence means that if your registrar is ICANN accredited then you at least know your domain name registration will be handled professionally and, should be reasonably secure so far as your registrar going out of business.
2) What are you paying for?
Many of the domain name registration companies packages vary greatly, with some companies you register a domain yourself, some companies register it on your behalf and, others will register your domain including some form of hosting etc, check with the company you are using to see what added services and support features they offer.
3) What is their transfer policy?
Some domain name registration companies have specific policies so far as transferring domains to other companies, registrars and, individuals go. Check with your registrar before you buy your domain to see what this process involves and, as always, check with one of the other registrars to see which registration company offers the best ‘bang for your buck’.
Saving Your Name – Help And Advice.
First and foremost, if you discover your domain name registrar has closed its doors you should immediately send an email to them and ensure you keep a copy of this email for your own records, ask them what is happening and, more importantly, what controls / access you still have available (if any) to manage your currently registered domains.Usually, you will receive some form of communication within a few days from your registration company letting you know what is happening and how you can continue to use your domain name.
In most cases, when a domain name registrar company closes what you will find is that they will already be in the process of transferring the management of your domain to another registration company.
If however, you are still able to control the domain yourself then you should immediately seek out a new registrar with whom you can manage the domain / domains that you own. At this point you should contact them and ask if they have any fast track solution to transferring your domain to their company.
If All Else Fails.
If after everything else you are still at a loss as to how your domain name transfer or registration is being handled then you should contact ICANN ( http://www.icann.org ) directly. Ultimately it is their responsibility to ensure that once you have registered a domain name, you are able to access it as you would like, in most cases however, contacting ICANN is always the last move you should make and, only use this form of information should you exhaust all other methods mentioned above.Article written by Lee
-
Pay Per Click Traffic – More Than One Use
We all know the stigma surrounding getting traffic to our sites and, this is no different with that of the PPC traffic sources. We have all heard varying stories of success and failure when it comes to this type of traffic whether it be from Googles Adwords program, Overture PPC engine listings or in fact, highly targeted Sex.com adult traffic.
But how much do we all actually know about maintaining this level of traffic once we actually get it and at a minimal cost to our bank balance?
First of all there seems to be a belief that PPC traffic should be sent to a sponsor or one of our existing sites, this is all good and proper but, what happens when the sites we own or the sponsors we use don’t convert on this traffic do we just give up? For the most part, yes webmasters do tend to give up and mark this source of unrivalled traffic as a flop.
Enter the world of traffic manipulation.
We all know about a variety of programs that are available to drive traffic to our existing sites from banner exchanges like Pornclient to text link exchanges like TextPop even to top lists.
So why don’t we utilize these when we buy PPC traffic? Quite simply many webmasters forget that traffic can be manipulated regardless of where it comes from initially.
Lets take a simple listing on sex.com, you fund your account and traffic starts to flow, you get 1000 hits per day for as long as you have funds in your account. Were you aware that this 1000 hits could in fact, become 10,000 hits if we actually thought about our pay per click listings.
How you may be asking especially with so many rules being levied upon us by the PPC traffic sources? Simple, set up a filter page, on this page you should place a single text link which would be your entry link however, you should also place a few other items on the page this is what i will explain next.
Ideally you want to be able to use the traffic you are paying for in order to build up a larger traffic base this is where the use of such programs as banner exchanges and the likes come in handy.
As well as your entry link you should also place a banner exchange (or a text exchange) code on your filter page this will mean that for every visit your page gets from the PPC Engine you are accruing credits towards additional visitors.
In addition to the link exchange you might also like to consider placing a counter on this page specifically, a toplist counter such as Outster or sextracker so, for every page view you receive you get rated further on their toplist.
Also, as we are on the subject of top lists why not place a text link to one on this page? Even though you are sending your traffic out you are actually getting sometimes in excess of twice that back depending on the toplist you choose to use.
Now we have the basics set up we need to look at what else we can do to maximize this traffic, i would suggest having a single console (preferably a blur console) load on this page if the PPC SE allows again, this should contain a link exchange of some description however, you will need to make sure that the account you are using is separate to the one on your filter page.
Finally, remember the entry link, that shouldn’t go directly to your sponsor instead, send it to an FPA (Full Page Ad) first and, on this FPA place a table ad which is pure text at the bottom again, sending this traffic to a variety of other niche filter pages all set up in the same method as the one we have just made above.
Hopefully by using these methods your ventures into the Pay Per Click search engine world will be more fruitful than the webmasters not using the above method.
Article written by Lee
-
Domain Name Renewals – The Basics
As an adult webmaster there is one thing that we all own which we build our businesses on, a domain name and, with this comes the responsibility to ensure that as long as we are running our business from any given domain that we ensure they are constantly under our control this is where domain name renewsl come into play.
Domain Name Registration Periods.
Almost all reputable domain name registrars will allow you to purchase a domain for anywhere between one and ten year periods. Many webmasters however only choose to register their domains for one year at a time and this, is where many webmaster can run into problems with their domains. More often than not webmasters will either forget to renew their domain names completely or, are not aware that they are even coming up for renewal. For this reason it is usually best to ensure that you register your domains for a minimum period of two years, this gives you a good time frame to start using the domain as well as ensuring you have enough funds available by the time the domain name comes due for renewal.How To Stay On Top Of Your Renewals.
The simplest way to ensure that you keep on top of the domain names you own and when they are due for renewal is to keep a written document detailing as much information as possible about your domains, this document should include information such as the domain name itself, the registrar you used to register your domain name, the cost of the domain name and, most importantly, where the domain is pointing to, the period of registration and, the date when the domain needs to be renewed. By having this information readily available and, by keeping this document up to date with each new domain name purchase you should be able to ensure that no matter when your domain/s become due for renewal that you are on the ball with paying the domain name renewal fees.Domain Name Renewals Overview.
Regardless of when you register a domain name the one way you can be sure to be the owner of the domain for years to come is to ensure that you keep accurate, detailed records of each domain name purchase, whether you keep this written on a calendar, on a piece of paper or, somewhere else, you should make part of your monthly routine checking this document and making sure that the domains you own are all fully working and, more importantly, are fully paid up.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