-
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.
-
Robots.txt – Control The Robots That Crawl Your Sites
By writing a structured text file you can indicate to robots that certain parts of your server are off-limits to some or all robots. It is best explained with an example:
# robots.txt file for general use on web servers.
User-agent: webcrawler
Disallow:User-agent: googlebot
Disallow: /User-agent: *
Disallow: /cgi-bin
Disallow: /logs
The first line, starting with ‘#’, specifies a comment.The first paragraph specifies that the robot called ‘webcrawler’ has nothing disallowed: it may go anywhere.
The second paragraph indicates that the robot called ‘googlebot’ has all relative URLs starting with ‘/’ disallowed. Because all relative URL’s on a server start with ‘/’, this means the entire site is closed off.
The third paragraph indicates that all other robots should not visit URLs starting with /cgi-bin or /log. Note the ‘*’ is a special token, meaning “any other User-agent”; you cannot use wildcard patterns or regular expressions in either User-agent or Disallow lines.
Two common errors:
Wildcards are not supported: instead of ‘Disallow: /tmp/*’ just say ‘Disallow: /tmp’.
You shouldn’t put more than one path on a Disallow line (this may change in a future version of the spec)
Ultimately, without the use of robots.txt files on your servers/domains, you are risking a variety of potential problems including, unauthorized access to your cgi directory, unauthorized viewing of your site stats, possible spamming of the search engines by accidental crawling of doorway pages.One distinct advantage however of having a robots.txt file on your server is that, quite simply, you will be able to tell when and where your site has been indexed or potentially indexed as, all robots will automatically call for the robots.txt file BEFORE any other page on your server so, as long as you keep an eye open for any calls of this file, you can see who is knocking at your site for indexing purposes.
Below is a robots.txt example that you can copy and paste into a text document to use on your own server:
<!–Start Copy Below This Line–>
User-agent: *
Disallow: /cgi-bin
Disallow: /logs<!–End Copy Above This Line–>
The above will allow all spiders to crawl all of your site except the subdirectory’s ‘cgi-bin’ and ‘logs’ which, may be altered to suit any subdirectory’s you do not wish the spiders to crawl on your server.
Article written by Lee
-
Traffic Filtering – Country Specific Redirects
To some, actually marketing to foreign surfers is a waste of time rather than a business practice. Unfortunately, they are missing out on additional revenue. We are already beginning to see some of the major sponsors in the adult industry embracing these foreign markets and, not just by utilizing dialers.
However, filtering your traffic base is often the hardest part of this money making equation. That is where the following piece of PHP coding can come in handy.
PHP FILTERING CODE
<?
$user_lan = $HTTP_ACCEPT_LANGUAGE;if($user_lan==’de’) {
## German
$redir_url = “http://www.germanlanguagepageurl.com”;} elseif($user_lan==’fr’) {
## French
$redir_url = “http://www.frenchlanguagepageurl.com”;} elseif($user_lan==’it’) {
## Italian
$redir_url = “http://www.italianlanguagepageurl.com”;} elseif($user_lan==’es’) {
## Spain
$redir_url = “http://www.spanishlanguagepageurl.com”;## US traffic or Rest of world not defined above
} else {
$redir_url = “http://www.yourmainpageurl.com”;}
header(“Location: $redir_url”);
exit;?>
So, we know that the above piece of coding can redirect surfers based on their country of origin however, in order for you to maximize this to its full potential you will need to know the country specific codes (Also called ISO 639 codes) for each of the main browser languages. Some of these are as follows.
da | Danish
de | German
en | English
es | Spanish
fi | Finnish
fr | French
it | Italian
jp | JapaneseThe problem you now have is finding where to send your filtered country specific surfers to. Of course, there is always the dialer option however, this is not going to be as lucrative to your wallet as what most people will have you believe.
In fact, I very rarely use a dialer on my foreign traffic instead, I tend to send them to a language specific tour page from one of the big sponsors and, if they do not sign up to that sponsors site, this is the point where I throw a dialer at them and, if the dialer still doesn’t make any money off the surfer I then recycle the surfer for a fresh one through a toplist or banner exchange heavy page.
In doing this I find it is often more productive than ‘regular’ English speaking traffic as, if you give the surfer something they are looking for, they will be more inclined to buy.
Hopefully this article has given you some insight into filtering and using your foreign traffic as oppose to just sending them off to a dialer program.
Article written by Lee
-
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
-
Search Engine Optimization, Is It Worth It?
One of the trendiest takes on Internet marketing these days seems to be the notion that securing top search engine rankings “no longer works.” Where it started, I have no idea.
But rarely does a week go by when I don’t see one or more Internet marketing “experts” claiming that search engine positioning is largely a waste of time and should not be a primary focus of Website owners.
Well, as the saying goes, “there are two sides to every story.”
But let’s not make this article about my side, or your side, or anyone else’s side. Let’s forget about my opinion and other “expert’s” opinions and stick to the indisputable facts, as reported by highly credible third party sources:
According to a Forrester Research Media Field Study, getting a loyal audience in the first place is best done by Search Engine Placement.
According to a GVU Users Survey, 84.8% of Internet users use Search Engines to find Websites.
In a study released by ActivMedia Research in September 1999, Search Engine Positioning was ranked as the #1 Website promotional method used by eCommerce sites.
And look what I just found in the April 2000 issue of Target Marketing Magazine.
“Top Ways Websites are Discovered”Banner ads: 1%
Targeted email: 1.2%
TV spots: 1.4%
“By accident”: 2.1%
Magazine ads: 4.4%
Word-of-mouth: 20%
Random Surfing: 20%
Search Engines: 46%
You’ve now seen the numbers and know that search engine promotion is very much alive and kicking. But let’s take this a step further. Let’s talk about the *quality* of prospects coming to your Website through search engines as opposed to other advertising mediums.
Every time your potential customers use the search engines, they qualify themselves as *hot prospects* by conducting searches on keywords that are directly related to your product or service. Their choice of keywords is proof that they have a genuine interest in what you offer. These people spend their valuable time exploring the search engines for your type of product or service.
Think About That.
They didn’t stumble upon one of your ads, or wander past a hyperlink to your site. And they didn’t get a banner ad thrown in their face. They made the *decision* to actively search the keywords that brought them to YOUR Website. And when they get there, they are ready and willing to do business with you. At the very least, they’re seriously considering it and, that’s the most powerful sales tool you can have!But merely getting your Website “indexed” or listed in the search engines is not enough. In order to get any significant traffic from the search engines, your Website must be listed within the top 30 search results (preferably the top 20).
Very rarely will anyone look beyond the first 30 results returned from a search. This makes perfect sense because the most relevant sites are always listed at the top. So if your prospect doesn’t find what they want within the first 20 to 30 listings, they’ll simply do a new search.
If your site falls anywhere below the 30th listing, you don’t stand a chance against anyone in the TOP-20. Hence, it should be your goal to achieve Top 20 positions.
How Do You Get Your Website Listed In The Top 20?
1) You can attempt to gain these Top 20 rankings yourself. However, this can easily become a full time job. (I think this is why so many marketers advise against focusing on search engine positioning.)2) You can hire a reputable company who can achieve AND maintain your Top 20 rankings for you (be sure they guarantee their service and have several verifiable clients that currently have multiple Top 20 rankings).
3) You can do nothing at all. But as you’ve seen from the third party statistics referenced above, search engine positioning is something you can’t afford to ignore.
Whatever choice you make, I hope that your eyes have been opened to the tremendous profit potential that exists with top search engine placement.
Article written by Lee
-
GEO::IP – What Is It?
As more and more webmasters investigate the international market place to expand their online businesses I thought it would be prudent to take a look at one of the more important modules of Apache and, just how this module can help webmasters to monetize their international traffic. What is this module? GEO::IP.
Geo I.p – The Basics.
GEO::IP is an Apache module which is able to recognize countries by specific I.P blocks. GEO::IP in itself is, in effect a database of the current i.p addresses in use on the internet across the globe. When used in conjunction with various scripting languages, Perl, Php, Etc the Apache GEO::IP module can assist online businesses with the following:Detecting credit card fraud.
Automatically select the geographically closest mirror.
Analyzing your web server logs to determine the countries of your visitors.What this means to the webmaster is that they can now market their sites to a specific language or, country in addition to either redirecting or, refusing other countries / languages access to their online sites.
GEO::IP Module – Where To Find It.
The GEO::IP module is available from several sources online in either paid or, free forms. The most up-to-date and professional form of the GEO::IP module can be found on the Maxmind website ( http://www.maxmind.com ).Once you have the GEO::IP module you should either ask your host to, or, install it yourself on your Apache based web server.
Geo I.p – Different Modules.
In addition to the simplistic ‘country i.p’ based detection, there is also another more complex GEO::IP module, this module is often referred to as ‘I.p to Location’ which, in simplistic terms means that you can target specific cities of the world hence, if you want to offer a service to surfers in Miami, you are able to redirect your Miami surfers to a page with content of specific interest to them.Redirecting Traffic.
Geo i.p is the basis behind most of the international traffic redirection systems available for webmasters to use in order to monetize their global traffic more efficiently, whether those systems are paid, free, subscription based or, otherwise they will ALL use the fundamental basics of the GEO::IP module.Through the use of the geoip module you will be able to maximize and filter the traffic sources you currently have and, decide on whether you send your surfers to a Pay site, a dialer or, a traffic trade.
Scripting – Putting GEO::IP To Work.
Many programming firms are now looking at the global market place in addition to webmasters as they now have the ability to offer their clients a wider product base from country specific banner displays to multi-lingual tours, programmers can develop new ways to enable webmasters to profit from their traffic unlike ever before. One such company is Geo Scripting ( http://www.geoscripting.com ).GEO::IP – Overview.
All in all the Geo i.p Apache module is going to become more and more prominent in the industry, sponsors are already starting to use country specific redirects on their affiliates traffic base and, individual webmasters are beginning to capitalize on this module through redirecting their own traffic to the sponsors that offer them multi-lingual paysites. When all is said and done, I am all for anything that can better assist webmasters in monetizing their global revenue streams especially as in the last 4 years I have been online it would only seem to be the last 2 months when this untapped source of income has come into the forefront of the adult industry.Article written by Le
-
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
-
Masters Of Discipline – Have You Got What It Takes?
So you want to throw in your day job and become a full time adult Webmaster? Well yeah, I can hear you saying, “Who wouldn’t want to be surrounded by pictures of beautiful women all day, make up their own hours, and be the master of their own destiny?” It just sounds sooo good when it’s put like that doesn’t it?
Before you tell your boss you quit, you might want to read this article first, as the reality of working in this industry and especially for yourself can be a real wake up call for many.
The main thing you need to succeed in this business is discipline, and lots of it. If there are temptations when you work for someone else to slack off, take a sick day, or simply not bother showing up, then you can double those temptations when you work for yourself.
It’s so easy to roll over in the morning rather than get out of bed, stagger to the PC, and actually work.
It’s so easy to decide to take the day off when the sun is shining and the beach is calling. You simply tell yourself you’ll make up for it tonight, and then find yourself coming home at 3am.
It’s so easy to not actually work, when you work for yourself, that at times it can be unreal.
The reality of doing any of the above is longer nights, less sleep, and almost inevitably smaller paychecks.
Structure Your Day.
The answer to this problem is to really think about your working day and give it some structure, just as you would if you worked for someone else. Work set hours and take frequent breaks. When you work for someone else they make you take breaks for a variety of reasons, but mostly, because as research has proved, you’ll be more productive after one. It’s also important to make sure others know your hours as well, and always remember to add what time zone you are located in on any correspondence. There is nothing worse than being awoken by an associate at 3am because you forgot that little detail!
Set A Routine.
Get into a routine! There are various tasks that must be done each week no mater how boring. By creating a work routine, you can control your time and structure the more boring jobs at the end of the day when for most our creativity levels are less. You can also structure that routine as I do, when I’ve finished those boring tasks at the end of each day, I reward myself with some time doing what I want to do.
Going Solo.
This can be a lonely business and if you don’t like working alone then maybe it’s not the right one for you. You’ll likely spend many hours in your own company and as someone else pointed out to me, while boards and instant messengers are great, they can also eat heavily into your working time if you’re not careful. Personally, I use the boards and chats as a treat when I’ve accomplished a goal, unless I need to talk to someone in order to get that set goal done.
If, like me, your office is in your home, in reality you never really leave work. It’s just always there and there is always something else to be done, and it’s so tempting just to work a few more hours. Having the discipline to stick to your office hours is the trick and where structure comes into play. The saying all work and no play makes Jack/Jill a dull boy/girl is really true here.
The biggest trick of all though, is learning to recognize your limits. Set them and stick to them. Unlike in the normal workplace, you won’t have the big cheese or even the little one watching over your shoulder, making sure you work or making sure that your paycheck and your bills are covered each week. That’s up to you now.
Think Before You Leap.
Another thing you need to consider is can you REALLY afford to give up your day job? Working for someone else means that for the most part you will have a reliable pay check each week or month, when you work for yourself you loose that security. There are other things to consider as well like health insurance, book keeping and how exactly you are going to pay for them. Of course if there is another bread winner in the house this may not be of such a concern, but it’s still something you should consider before you give in your slip. As a general rule of thumb, if you’re considering going it alone, don’t, at least not until you have enough cash saved to cover any outgoings you might have over a six months period.
How well do you know the law? If you think the law doesn’t affect you because your just one person working from home then think again. If you don’t know your Title 18 USC 2257 from your arse then you may be heading for trouble. Standing in front of a judge and saying I didn’t know won’t get you out of a heavy fine or even a prison sentence.
The real questions you need to ask yourself now are you up to the challenge, and do you have the personal discipline to make this work for you?
Article written by Jenne.
-
Are Your European Surfers Male Or Female?
In Europe, the domain of the Web still belongs to the younger generation, with nearly 80% of European surfers under the age of 30. This is not surprising, as Europe is culturally quite different from the US.
The older generation in Europe has typically been slower to adopt new technologies and habits compared to their American counterparts, and we can’t see this trend changing anytime soon. Cultural differences will limit Internet penetration among the older age groups.
Female Internet usage still lags in Europe, with slightly more than 20% of Web users being women. Although this difference is less pronounced in the UK, on the Continent, males still dominate the Web scene.
Our Target Audience
What does this tell us? Well, first of all, it tells us that the European audience is growing more and more each and every day but, we already knew that, what we didn’t know however, until now, was just what percentage of European surfers could be persuaded to buy porn memberships or related goods from one of our sites.
Most paysite owners will tell you that, on average the ages of their members range from 25-30 and, as such, the European market could potentially supply a vast majority of these signups if, they got the overall balance of their sites right.
The Solution
As you should already know by now, the European porn surfer has different expectations to its US counterpart, they wont give out personal information as readily as American surfers, this includes their email address so, this rules out sending them to ‘For Free’ programs, they are also getting really pissed-off at having to download dialer programs to access porn, heck, the average phone bill in Europe is almost double what it is in America, why antagonize these people even more? They know they are overlooked when it comes to porn surfing so we need to stop neglecting these surfers, get a site translated into a foreign language, broaden your horizons, tap into an as yet ‘untamed market’ I feel certain that if you take a few basic steps your bottom line can be increased significantly, it all comes down to this…..
Do you have the balls to try something new?
Article written by Lee.
-
Thumbnail Preview TGPs And The Gay Market Place
One of the latest crazes to hit the gay adult market from a webmasters point of view is that of the thumbnail preview TGP and, more surprisingly than this is the fact that this new breed of gay adult TGP seems to attract more traffic than the standard format TGP ever did so, what is a thumbnail preview TGP and just how do you go about making one of your own? This is what we will investigate in this article.
Thumbnail Preview TGP Basics.
A thumbnail preview TGP is just as the name suggests, a standard TGP with one main difference, the TGP itself doesn’t list gallery descriptions rather a small preview image of the content placed on each of the galleries submitted. This thumbnail preview is usually size between 100×100 pixels and 60×60 pixels in dimension however, the thumbnail preview size can be determined by the webmaster owning the TGP.
How Do I Start My Own Thumbnail Preview TGP?
In order to start your own thumbnail preview TGP you will need a couple of things, first and foremost, a domain name to run it on, the current trend in the gay marketplace is to name your TGP something short, memorable and, well, brand able so, the domain name you choose for your TGP should take all of these aspects into consideration. The next thing you will need in order to run your own gay thumbnail preview TGP will be the script which you use to manage the TGP itself, for this purpose I would highly recommend Autogallery MySQL from http://www.jmbsoft.com it is affordable and, easy to maintain which is a must if you are wanting to run a sizable TGP. One other thing that you may also like to consider investing in for your thumbnail preview TGP is a design, in fact, most of the ‘good’ thumbnail preview TGPs whether they are focused in the straight or gay market, have a clean, almost pay site quality design aspect to them. Of course, you do not need to keep up with the joneses however, if it works for other people, then why not see if it will work for you also?
Thumbnail TGP Structure.
So you now have a domain and have purchased the script and / or design that you want to use on your thumbnail preview TGP what next? Well first things are first, you should take a look at some of the other sites that currently exist and see how they do things, find out what things you feel they are doing wrong and, capitalize on that.
You should also make some decisions now as to the look and feel you want your thumbnail preview TGP to have, how many galleries are you going to list on the front page each day? Will you be utilizing the archives feature of your TGP script? What limitations do you want to put on submissions from other webmasters? These are all aspects of running a TGP that you need to think of prior to opening your site up for general submissions.
In general however, you will find that most thumbnail preview TGP sites will have roughly 100 thumbnail images on their front page of the site with any additional galleries being listed in their archives section again, you should decide on how you want to maintain your own site.
Getting Traffic To Your Thumbnail Preview TGP.
Now you have hopefully set your thumbnail preview TGP live you need to do one final step in making the TGP itself a huge success, get the traffic flowing, one of the best ways to do this, as with any other type of site is to ask your friends and associates to trade traffic with your site however, should this not be an option then you should use more conventional methods such as submitting galleries to other TGP sites ensuring that you use a recip to your TGP on each gallery as well as utilizing other forms of traffic such as cheap brokered traffic, top lists, web rings and, even counters, within a month or so you will soon start to see a steady flow of new webmaster gallery submissions and, with each new submission comes more traffic and ultimately, more income from your site.
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