-
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
-
Google – Manipulate Your Listings For More Traffic
Google seems to be the Search Engine that everyone talks about almost on a daily basis however, far from being about search engine optimization and specifically about Google related SEO i wanted to touch on something new that, perhaps you would not have already thought about.
Manipulating Google Traffic.
So your site is already listed in Google but you want to increase the amount of traffic you receive, one way that we as a company have been successfully using for the last 18 months is that of manipulating the display of our clickable links in Google, how are we doing this? Simple, using ASCII character codes in your meta tags.ASCII In Your Meta Tags.
ASCII (American Standard Code for Information Interchange) it has been proven, when used in your HTML page Meta Tags will actually display not only letters and numbers but, symbols as well, as a webmaster this can give you a great advantage over how much traffic you can pull from your Google listings and, not only Google, a few of the other search engines also read ASCII code when it is found in your Meta Tags.Putting This To Use Practically.
A good method of putting this to use would be utilizing in your Meta Tags as follows.<title>Site Name <ascii code here> page title</title>
<meta name=”Description” content=”normal page description”>
<meta name=”Keywords” content=”normal keywords”>This will display a search engine listing that not only has your site name on it as well as a description but, in the position where the ASCII code will appear you will also have an attention grabbing symbol enuring that your site stands out from all the others listed on the same search engine results page as yours.
ASCII Meta Tags – An Overview.
Hopefully you have seen how adapting your current HTML page Meta Tags by placing an ASCII character code within them can benefit you for gleeming further search engine traffic to your sites and, with this new found knowledge you may well place both your sites traffic and your bottom line profits ahead of other webmasters.Article written by Lee
-
JavaScript Know How
JavaScript can be one of the most useful additions to any web page. It comes packaged as standard in Microsoft’s Internet Explorer and, Netscape Navigator and allows webmasters to perform field validations, mouse-over’s, pop ups and a whole entourage of other nifty little features on our sites.
In this article we will show you how to:
– Display the browser name and version number
– Change the text in the status bar of the browser
– Use an input box to get text from the user
– Use a message box to display text to the user
– Change the title of the browser windowBefore that, however, we need to know how to setup our web page so that it can run the JavaScript. JavaScript code is inserted between opening and closing script tags: <script> and </script>, like this:
<script language=”JavaScript”>
–> JavaScript code goes here <–
</script>
These script tags can be placed anywhere on the page, however, it’s common practice to place them between the <head>and </head> tags. A basic HTML page that contains some JavaScript looks like this:
<html>
<head>
<title> My Test Page </title>
<script language=”JavaScript”>function testfunc()
{
var x = 1;
}</script>
</head>
<body>
<h1>Hello</h1>
</body>
</html>For the examples in this article, you should use the basic document format I have just shown you, inserting the JavaScript code between the <script> and </script>tags. When you load the page in your browser, the JavaScript code will be executed automatically.
Displaying the browsers name and version number.
The “navigator” object in JavaScript contains the details of the user’s browser, including its name and version number. They can be displayed in a browser using the document.write function:document.write(“Your browser is: ” + navigator.appName);
document.write(“<br>Its version is: ” + navigator.appVersion);I run Windows 2000 and Internet Explorer version 6, so the output from the code above looks like this in my browser window:
Your browser is: Microsoft Internet Explorer
Its version is: 4.0 (compatible; MSIE 6.0b; Windows NT 5.0)Changing the text in the status bar of the browser.
To change the text in the status bar of a browser window, just change the “status” member of the “window” object, which represents the entire browser window:window.status = “This is some text”;
Using an input box to get text from the user.
Just like in traditional windows applications, you can use an input box to get some text input from the user. The “prompt” function is all you need:var name = prompt(“What is your name?”);
document.write(“Hello ” + name);The prompt function accepts just one argument (the title of the input box), and returns the value entered into the text box. In the example above, you get the users name and store it in the “name” variable. You then use the “document.write” function to output their name into the browser window.
Using a message box to display text to the user.
You can display a message box containing an OK button. These are great when you want to let the user know what is happening during their time on a particular page. You can use a message box to display the “name” variable from our previous example:var name = prompt(“What is your name?”);
alert(“Your name is: ” + name);The “alert” function takes one argument, which is the text to display inside of the message box.
Changing the title of the browser window.
To change the title of a web browser’s window, simply modify the “document.title” variable, like this:document.title = “My new title”;
One bad thing about the “document.title” variable is that it can only be manipulated in Microsoft Internet Explorer. Netscape’s implementation of JavaScript doesn’t allow for modification.
In Closing.
As you can see from the examples in this article, JavaScript is a powerful scripting language that can be used to enhance a visitor’s experience with our site. However, you shouldn’t use JavaScript too much because in some cases it can annoy visitors and send them packing before your site even loads!Article Written By Lee
-
Seasons Greetings For The Adult Surfer
How do the national and, international holidays affect our sponsors sales? More than you would think especially if you can offer your surfers something ‘seasonal’ when they hit your site. However, that said, when should you start planning for these holidays and, more importantly, how can you ensure that once you have implemented your seasonal marketing campaigns that they actually work?
Seasonal Marketing – The Basics.
Seasonal marketing is, in effect a method of changing your marketing approach around different times of the year to affect both the volume of sales you make and, more importantly, the uniqueness of the product you are offering your surfers. A good example of this is at Christmas time, many of the sponsors will provide their webmasters with banner with a holiday feel to them, perhaps using scantily clad men in Santa outfits or half naked women in elves costumes. By offering a seasonal marketing approach to your site surfers you actually increase the chances of making a sale.Holiday Porn.
One of the best ways to offer your surfers a fresh marketing angle is to ensure that you plan for all of the major holidays throughout the year in advance so for example, as mentioned above, Christmas is a big holiday as are, New Years, Easter, Thanksgiving (US), Independence Day (US) and, Halloween. By building sites specifically for these holidays you are increasing the chances not only of building your sales but, of gaining additional traffic that you might otherwise lose out on. It has been said certainly over the last four years i have worked in the adult industry that many webmasters experience an increase in search engine traffic searching on keywords such as ‘Christmas Porn’ and, ‘Ghost Porn’ around the various holidays, build now for next year and, when the holiday season arrives, you will be one step ahead of your competition.Seasonal Marketing Overview.
As already mentioned the holiday season especially Christmas time, can be a great way to gain additional traffic, not only from those surfers specifically looking for Christmas Porn but, also the newbie adult surfers who have perhaps only just got their first computer on Christmas day, by adding to your collection of seasonal porn sites year after year you will not only learn a lot about the way the various holidays and seasons affect your sales but, you will also be able to profit from your surfers in a way that not many other webmasters do.Article written by Lee
-
How To Become A Gay Porn Star
A quick look across the gay side of the adult industry will show it is lacking in one thing that its straight counterpart has in an abundance, amateur male models with their own adult porn sites. With that said, if you wanted to tap into this market how could you go about doing so and, more importantly, could you make money from working on the other side of the camera for a change? This is what we will look at in this article.
Becoming A Porn Star – The Basics.
Any web cam model will tell you, to have your own porn site will take a lot of persistence, time and, more importantly, personality, not least from the webmaster side of the industry however, in my opinion I think the pressure that a webmaster may face breaking into the gay male porn side of the adult industry might just be a bit harsher than what the bubbly web cam girls have to contend with, not only because as a male you will be appearing in content but, because your primary traffic base, whether you like it or not, will be a mixture of women and gay males.Male Amateur Sites – Getting Ready.
Before you start to even put your first ideas down on paper you need to do one thing, spend some time to research what is needed in order to start your own amateur porn site. In doing so, you will see that not only is everything in the two paragraphs above true but, you will also learn a little about yourself and, more importantly, about other webmasters and your surfers. Now you have the fundamental questions you need to ask yourself these are, What equipment do you need to run a male amateur site? What amount of investment in both time and money do you need to put into building your site? How much will you charge your surfers for access to your site? and, Is this going to be a long term commitment from yourself that could be possibly better spent elsewhere? Answer those questions as honestly as you can before proceeding and furthermore, think long and hard about the answers.Gay Amateur Web Sites – The Alternatives.
So lets stop for a moment and consider that you have realized you do not want to build and maintain your own male amateur site but, you would still like to be male porn material, where do you go from here? Well there are companies who can put you on their books and give you work from time to time such as http://www.redbagproductions.com a male modeling agency for the adult industry, this will in all likelihood be the place for you to start your search, find out how many places there are that can get you talent work and, what type of modeling work you will be required to do.Becoming A Gay Porn Star – An Overview.
With sites online such as Every Stag and the slew of other male modeling agencies finding a medium to start your modeling career wont be hard but, with this career comes uncertain hours, hard work (in more ways than one) and, to some extent, fame amongst the gay adult porn surfer. If this is something that you feel you can devote the time and energy towards and, are able to cope with the voyeuristic side of your personality then go for it, if however, you are still unsure after reading this brief article, perhaps becoming a gay pornstar isn’t for you?Article written by Lee
-
Building A Surfer Trap – Stage 8 – Final Stage
Ok people we have hit the final stage in our surfer trap, Stage 8.
All we are really going to do in this stage is a brief recap over what we have done so far along with checking that our trap is working properly.
In order for us to check our trap is working properly we need to upload it to our server if we haven’t already done so, therefore, you should do this now.
Once the surfer trap has been uploaded we now need to go to the first page, the Multi-Site FPA.
Depending on how you set up your Multi-Site FPA you should either get a pop up or not.
You should also have a counter AND a banner exchange code loading at the bottom of the page below your ‘no thanks’ link.
If this works how you want it to then this stage is working ok.
The next thing we need to check is that ALL of the links off this Multi-Site FPA are working so expect to get a lot of pop-ups while we check this.
You should click on each of the Single-Site FPA’s in turn ensuring that for every one you have a pop-up console appear.
In addition to checking the Single-Site FPA links you should now click on the ‘no thanks’ link along with the counter code and the banner exchange code on your Multi-Site and Single-Site FPA’s.
If these all load fine then this stage of the checking is complete.
Next, we need to close down any and all of the FPA’s we may have open including the Multi-Site FPA.
You should now be left with a couple of consoles, again, follow the links on your consoles including any to the counter you chose along with any banner exchange code you utilized on your consoles.
Again if these work how you expected them to, this section of the checking process is now complete.
For the next step, you need to log into your counter AND banner exchange account, you want to make sure that you have gained additional impressions and rankings from your banner and counter impressions and clicks.
Be aware however, that some counters and banner exchanges will not count multiple views and click from the same IP address so you may only show one or two additional clicks, impressions, or rankings. This is perfectly normal.
If your accounts have gained additional ranks, impressions, and clicks then this stage is completed.
Close down your consoles, you should now get the blur consoles that you created (if you used them) again, as before, check that all of the links from this consoles work.
If they do then you now have a fully complete Surfer Trap to use.
So, what next? Well there are a couple of options, you can mirror this surfer trap to experiment with your sponsors different tour pages, link your first mirror to the second tour page, your third to console free tour pages, etc.
Another good thing that you can do is to create additional Multi-Site FPA’s however, this time, create them by niche so where we have a general Multi-Site FPA at the moment you could use this same method for a Gay, Asian, Teen, etc Multi-Site FPA using the same methods we did when we created this trap.
You should always sign up for a new counter and banner exchange code for each variation of your surfer trap. This way, you get to see performance based on a new working model enabling you to decide which version of the trap works best for you.
I hope this tutorial has given you some insight into how we can generate, filter and trade traffic whilst marketing our sites effectively and, that it has given you some ideas on how you can implement even the simplest item provided to you by your sponsor to generate sales.
For those of you who have been following this tutorial I would like to thank you and wish you all the best with your new found marketing skills.
If you have any questions as always, feel free to post on the forums and we will endeavor to help you out.
Article written by Lee.
-
Organizing Your Hard Drive And Server
We have probably all done it at some point, we get in such a hurry to upload our new site that we have just spent the last 20 minutes building that we don’t think about maintaining the site at a future date or, worse still, we need to change a site we built 6-8 months ago and can not remember where we uploaded it to.
By organizing your server from day one of your steps into becoming a webmaster you will, inevitably, save yourselves a lot of time in the long term future of our business model.
Lets take a look at how we can accomplish this ‘organization’ though.
On your hard drive you need to have a ‘central’ location for all of your online files and folders, what better place to keep this than in a folder named ‘Online’ of course, this is just an example but it will son become apparent to you that this is probably the most logical folder name to use.
Now, within this folder you are also going to need to have a few sub folders, i would suggest using a folder for each of the domains that you own so for example, for your first domain, you would name it myfirstdomain.com, your second would be named myseconddomain.com etc.
Within these domain folders you will also need to have a selection of sub folders again, I would suggest names for these folders such as /html/, /scripts/, /articles/, you are now well on the way to organizing your server.
In addition to these sub folders you will also need to create sub folders for your images that you will be using on your sites, I would suggest using the names /banners/ and of course, /images/ for these two folders, you now know that the /banners/ folder contains all of the buttons and banners you will use on your sites and the /images/ folder contains all of the .jpg and .gifs you will use. Inside the /images/ folder, it might also be advisable to create a sub folder called /thumbnails/ which, you can store your thumb nailed pictures in if required.
One other advantage to organizing your folders and sites in this manner is that over time, it will assist you when it comes to dealing with hot linkers. Instead of having to find the paths to all of your individual image directory, you know instantly where you put them, without the need of logging onto your server.
Ok so you now have a semi-organized folder structure on your HD, so far we hopefully have a folder structure that looks somewhat like this:
C:/online/myfirstdomain.com/
C:/online/myfirstdomain.com/html/
C:/online/myfirstdomain.com/scripts/
C:/online/myfirstdomain.com/articles/C:/online/myfirstdomain.com/html/Banners/
C:/online/myfirstdomain.com/html/Images/
C:/online/myfirstdomain.com/scripts/Banners/
C:/online/myfirstdomain.com/scripts/Images/
C:/online/myfirstdomain.com/articles/Banners/
C:/online/myfirstdomain.com/articles/Images/So, hypothetically, if you created a article called ‘Article One’ you would find this in the following place on your HD:
C:/online/myfirstdomain.com/articles/articleone.html
See how easy that was to find on your hard drive?
Of course, on your server the folder structure will be no different so, your structure will be mirrored EXACTLY from your HD to your SERVER I.E.:
/usr/www/sites/myfirstdomain.com/articles/articleone.html
Not only will you make your server layout a lot easier to navigate but, it should, in theory, save you time when submitting your sites to the search engines, free for all’s etc as, in your head, you will already know the location to any single page.
Try this as an example…
You have created an article site called ‘Online Marketing’ on your third domain, where is it located?
That’s right, you will find it at http://www.mythirddomain.com/articles/onlinemarketing.html
How much time would you have usually spent logging into your server trying to find this page?
One other MAJOR advantage to keeping your server and HD structure the same is backing up your data now becomes easy as pie. you simply have to download your folders into the /online/ directory on your HD, then simply burn that entire directory to Cdrom.
Hopefully this article has given you some insight into how proper organization can be of use to you on your HD and on your server. If you are just starting out in the adult industry hopefully you will see that spending a little time to make a structuring system such as this can save you a lot of time long term.
One last question for you however, where would you find your article called ‘Marketing Shoes’ on your 56th domain name?
Article written by Lee
-
International Billing Alternatives – Premium Phone Billing
In the last article i wrote in respect of international billing options we took a closer look at the SMS Billing method and its pitfalls and benefits when charging our surfers for access to our sites. In this article we will take a look at another option we can offer our international surfer base – Phone Billing.
Phone Billing – What Is It?
Phone billing, as the name would suggest is a method of applying a ‘charge’ to a surfers normal land-line telephone. This charge is often around the cost of $35 (US).Once the surfer has called the premium rate number displayed on your websites join page, they are given a code to enter into a form, again, this form could be on your join page or on a separate site.
Phone Billing – What Are The Costs.
To be perfectly honest with you this is all dependant on to many variable factors to give you a good solid answer. However, as mentioned above the standard cost would seem to be in the region of $35 (US) but, this can often vary depending on factors such as the country in which the surfer is calling the premium rate line from, How much the surfers telephone company charges for a call, How much the paysite charges for access, How much the premium rate phone line provider charges, etc etc.Generally speaking however, the cost to the surfer is almost always made into profit in your pocket, if a call costs $35(US) you will almost certainly make $35(US) from that surfer minus a small percentage (depending on the provider) again however, this figure may vary slightly.
Phone Billing – Overview.
As with SMS Billing, Premium Rate Phone Billing offers a good alternative for your international surfers to access a paysite however, this doesn’t come without its drawbacks. Unless your members area is updated regularly and is of high quality you are going to make $35(US) approximately of each surfer unless, that is, they decide to call the premium rate number again for access to your site for another month.That said, if you do not want to offer your foreign surfers the option of having credit card or debit card access to your sites Premium Phone Billing would almost certainly be my second choice to make money from them at the present time.
Article written by Lee
-
Gay Industry Networking – The Gay Boards
Gay Industry Networking – The Gay Boards.
With so many ways for webmasters marketing straight sites in the adult industry to network I started to look at the various alternatives available to those webmasters who market gay sites to network and, although there are a few different ones about, they still seem to be few and far between.So What Boards Are There For Gay Webmasters?
Presently, to my knowledge there are four dedicated gay boards that webmasters can utilize for networking purposes in the adult industry with several straight orientated resource sites having a gay board also these are as follows:The Gay Boards:
Rock Me Hard
Triple X Gay
Gay Webmaster Chat
Gay Wide WebmastersThe Straight Sites With Gay Boards:
Obviously my favorite is The Gay Board at Gay Wide Webmasters but i am slightly biased towards that seeing as its one that we own privately however, the other boards are almost certainly worth a visit in addition to the GWW community forums.
So what do these gay boards offer those marketing to the gay surfer that the straight boards cant? Simply put, it can offer you a place to network without fear of ridicule from your colleagues and peers in addition you will find that a lot of these gay boards have a wealth of information about the gay market being posted on them on an almost daily basis.
It is also worth mentioning however that just with the numerous straight orientated message boards, the gay boards do have their own individual feel to them, for example, Rock Me Hard is what I would personally classify as a ‘fun’ board and Shelmal does a great job keeping the spirit of the board going likewise, Gay Webmaster Chat is more a board geared towards webmasters who operate traffic sites such as TGP’s and Link Lists which becomes apparent after reading a few threads. Gay Wide Webmasters is more a board with a wide reach but, primarily, it is a business orientated gay webmaster community and Triple X Gay, because it is fairly new is still, imho, trying to identify the direction it wants to take but non the less, a lot of the forum members posting there also post on GWW.
The Gay Board – An Overview.
When all is said and done, no matter whether you are gay, straight, black, white or any other demographic, focusing your attention to one type of board can become counter productive after a while, I mean how often can you hear from the same people over and over again before being given the same information again and again? Diversify your posting activities to include some of the gay market community forums and at the same time, you will also diversify your business knowledge which, im sure you will agree, is good for everyone, especially you and your bank account.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
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