-
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
-
JavaScript – Redirecting Foreign Surfers
At some point or another we are no doubt going to have the need to redirect some or all of our surfers based on the language they speak, this snippet of JavaScript when placed on your page will enable you to do just that without the need for .php or other more complex scripting.
Here is the coding that you need to place between your <head> and </head> tags:
<SCRIPT LANGUAGE=”JavaScript1.2″>
<!– Begin
if (navigator.appName == ‘Netscape’)
var language = navigator.language;
else
var language = navigator.browserLanguage;if (language.indexOf(‘en’) > -1) document.location.href = ‘english.shtml';
else if (language.indexOf(‘nl’) > -1) document.location.href = ‘dutch.shtml';
else if (language.indexOf(‘fr’) > -1) document.location.href = ‘french.shtml';
else if (language.indexOf(‘de’) > -1) document.location.href = ‘german.shtml';
else if (language.indexOf(‘ja’) > -1) document.location.href = ‘japanese.shtml';
else if (language.indexOf(‘it’) > -1) document.location.href = ‘italian.shtml';
else if (language.indexOf(‘pt’) > -1) document.location.href = ‘portuguese.shtml';
else if (language.indexOf(‘es’) > -1) document.location.href = ‘Spanish.shtml';
else if (language.indexOf(‘sv’) > -1) document.location.href = ‘swedish.shtml';
else if (language.indexOf(‘zh’) > -1) document.location.href = ‘chinese.shtml';
else
document.location.href = ‘english.shtml';
// End –>
</script>To add additional language redirects to this JavaScript all you need to do is duplicate the:
else if (language.indexOf(‘zh’) > -1) document.location.href = ‘chinese.shtml';
Section of the coding changing the (‘zh’) language code to that of the language you wish to redirect.
Article written by Lee
-
International Billing Alternatives – Online Check Payments
In my previous article i discussed the value involved with Premium Rate Phone billing as an option for your adult surfers and, staying on the topic of payment processing this article will take a closer look at the Online Check payment method or, ACH as it is commonly referred to.
ACH (Online Check Payments) – What Is It?
An online check payment is a method of allowing your customers to pay for their goods using their check’s online, in order for your customer to pay via a check they need to have available certain items these are, a current checking account, a valid routing number (found on the check) and, an account number. Funds paid via online checks are automatically debited from the customers bank account.Online Check Billing – How It Works.
Online check payments are processed in real-time, surfers are automatically accepted and authenticated via their current billing address, social security or, driving license number, once they have been authenticated their payment details are then sent to the ACH (Automated Clearing House) system where this information is automatically accepted as long as the details provided are verified as correct.Online Check Payments – What Are The Costs?
Utilizing the online check method of billing your customers is actually just as, if not more, cost effective as using online credit or debit cards, in effect, you are guaranteed the funds of the check once they clear as, in all reality, the surfer will not have such an easy time declaring the purchase as a ‘charge back’ because the information needed to pay via an online check is information that in reality, only they have access too.So, as with our previous articles, lets say your paysite membership fee for one month is US$35, a surfer signs up to your site using an online check, you make, approximately, US$33 from this membership for each and every month the customer (or surfer) chooses to renew their membership.
The one main advantage with online checks however is that, surfers will often feel more ‘secure’ in using them to pay for 3 or 6 month memberships and, as long as their check clears your account, you are almost certainly guaranteed the funds.
Online Check Billing – The Main Benefits.
As mentioned above already, the primary benefit of the ACH payment method is that the customer will almost certainly have funds available in their online checking account to be able to meet the cost of the paysite membership, after all, they wouldn’t give out their banking details if they were not sure the payment would go through. In addition to this advantage there are also several other advantages to using Online Checks as a payment method for example:Increased Sales.
Reduced Order + Billing Costs.
Faster Payment.
Reduced Credit Card Charge Backs.ACH Check Payments – Overview.
Whilst ACH check payments are a good alternative for US surfers the one major drawback is that, in today’s global market place they are not a method of payment for international surfers unfortunately, at this time, there are no companies who can offer this service to my knowledge to the ever growing global population.That said, there is a place in the industry for check processing for adult payments and, with Visa breathing down our collective necks more and more, now would be an ideal time to take an in-depth look at this processing method.
I hope this article has provided you with some useful information regarding the online check payment method.
Article written by Lee
-
Designing A 404 Error Document
Designing A 404 Error Document.
Now that we know how to use .htaccess let’s get into how exactly to effectively design a 404 error document page. Here are a few tips when building your document:Keep The Design Constant.
That is, whatever design your web site supports, consider keeping that design when building your error document. This is not mandatory, however. If you have a good reason to stray from your design, then do so. Otherwise, keep it constant.
Use Attractive Dialog.
Do not use the word error. Error signifies something is terribly wrong, and while that may be so, you should give that information to your visitor in a very friendly way. Instead, consider writing “Sorry, the page you were looking for is not available at the moment”.
Include Contact Information.
Obviously, you want to fix the error, so give the user every opportunity to e-mail you about the error. Some users will not bother to do so, but you still need to give them the opportunity.
Keep The Visitor Moving.
Often, 404 error pages are like road blocks, or brick walls that the user cannot pass through. You need to break through the barriers and allow the visitor to keep traveling through your web site. If your web site supports a search capability, include a form on your error document to let them search for the information they were originally seeking. At the very least, include a link to your home page.
Give Them A Site Map.
When the user clicks upon a page that is no longer available, or was mistyped by the webmaster, consider adding a link to a site map page, or include your site map right on your 404 error document, so the user can get their bearings within your site, and can locate their desired content quickly and easily.
Give Them Help.
List tips on your error document page to help the visitor diagnose the error. For example, ask them to double check the URL in their browser’s address bar. If it’s correct, politely ask them to e-mail you to report the error. Also suggest that they visit your home page (or search utility) to find the information they are after.
List Some Popular Links.
Provide the user with a few links to your most popular content areas of your web site, as it is more likely they were searching for that content than anything else.
As you have seen, error documents are more important than you may think. Merely having a custom error page shows you have put forth effort on your web site and want to help the user find the information they need. Error documents are easy to create and adds professionalism to any web site.
Article written by Lee
-
Using .htaccess Effectively
The .htaccess file is an ASCII text document that can be placed in any directory on your site. It can be used to control access to files and directories, and customize some server operation in your site. A .htaccess file can be created in any word processor but must be saved as text only. You must use FTP software in ASCII mode to upload or edit your .htaccess file. For the examples provided here, place the .htaccess file in your root directory.
There are a variety of functions that you can control using .htaccess some of the more useful of these are explained below:
Custom Error Messages.
Add the following to the .htaccess file::
ErrorDocument 404 /notfound.html
After “ErrorDocument” specify the error code, followed by a space, and then the path and filename of the .html file you would like to be displayed when the specified error is generated, each specific error code is detailed below with the recommended codes to be used in the .htaccess file in bold :
200 OK
206 Partial content
301 Document moved permanently
302 Document found elsewhere
304 Not modified since last retrieval
400 Bad request
403 Access forbidden
404 Document not found
408 Request timeout
500 Internal server error
501 Request type not supportedUsing the codes above your error section of the .htaccess file should look like this:
ErrorDocument 301 /notfound.html
ErrorDocument 400 /notfound.html
ErrorDocument 403 /notfound.html
ErrorDocument 404 /notfound.html
ErrorDocument 500 /notfound.html
ErrorDocument 501 /notfound.htmlRedirect to a Different Folder.
Add the following to the .htaccess file:
RewriteEngine on
RewriteRule ^/oldfolder(.*)$ /newfolder/$1 [R]This redirects the user from /oldfolder/anyfile.html to /newfolder/anyfile.html, when the .htaccess file is uploaded to the otherwise empty “/oldfolder” directory.
Denying User Access.
Add the following to the .htaccess file:
<Limit GET>
order allow,deny
deny from 000.00.00.
deny from 000.000.000.000
allow from all
</Limit>This is an example of a .htaccess file that will block access to your site to anyone who is coming from any IP address beginning with 000.00.00 and from the specific IP address 000.000.000.000 . By specifying only part of an IP address, and ending the partial IP address with a period, all sub-addresses coming from the specified IP address block will be blocked. You must use the IP addresses to block access, use of domain names is not supported
Redirect a Machine Name.
Add the following to the .htaccess file:
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
# Rewrite Rule for machine.domain-name.net
RewriteCond %{HTTP_HOST} machine.domain-name.net $
RewriteCond %{REQUEST_URI} !machine/
RewriteRule ^(.*)$ machine/$1This will redirect requests for the machine name machine.domain-name.net to the directory machine on the site domain-name.net.
Different Default Home Page.
Add the following to the .htaccess file:
DirectoryIndex filename.html
Then a request for http://domain-name.net/ would return http://domain-name.net/filename.html if it exists, or would list the directory if it did not exist.
To automatically run a cgi script, add the following to the .htaccess file:
DirectoryIndex /cgi-local/index.pl
This would cause the CGI script /cgi-bin/index.pl to be executed.
If you place your .htaccess file containing the DirectoryIndex specification in the root directory of your site, it will apply for all sub-directories at your site.
Preventing Hot Linking.
Add the following to the .htaccess file:
# Rewrite Rule for images
RewriteCond %{HTTP_REFERER} <URL of page accessing your domain>
RewriteRule ^(.*)$ http://<same as above URL>You would replace the <URL of page accessing your domain> above with the domain name and path of the page that is referring to your domain. For example: www.theirdomain.com/users/mypage/
The RewriteCond directive states that if the {HTTP_REFERER} matches the URL that follows, then use the RewriteRule directive. The RewriteRule directive will redirect any reference back to the referring web page.
Using the above you should, safely be able to publish your sites on the internet knowing that you will not be privy to bandwidth thieves via hotlinking and also, that you will not lose any traffic through pages that are ‘not found’.
Article Written By Lee
-
Favicon.ico – What Does It Do?
Favicon.ico is the name of the graphic Internet Explorer 5+ uses in the address bar and when someone views their favorite bookmarks. There should be one beside the address of this page now if you are using IE5+. If you want to see favicon.ico in action among your favorites bookmark our site now by right clicking and selecting ‘Add to favorites’.
Internet Explorer looks for this file in the same directory as the HTML page currently being displayed, if it cant find favicon.ico it will then display the default Internet Explorer icon in the address bar. As for viewing of favorites, IE will check its temporary folder to see if favicon.ico is there again, if it is not located it will display the default white background with a blue ‘e’ icon.
For a webmaster there are three main advantages to using the favicon.ico ‘trick’.
The first, is that it helps to brand your site with a nice little icon that is easy to recognize.
The second, is that it makes your website more professional.
The third, is that your entry will stand out in surfers bookmarks over the others. This is especially good as, if you can get a surfer back to your site then you have another chance at making a sale.
Many internet users have a multitude of site bookmarks so, you need to use favicon.ico to give you an edge. I highly recommend using it and, now I’m going to tell you how.
First, you will need to create an icon file which is exactly 16 x 16 pixels. If the icon is larger or smaller IE5+ will just ignore it. As for the colors in it, 16 is standard. You can use more colors if you want but, the more colors you use, the larger the .ico file becomes and, the longer it takes to load.
You now know the standards the favicon.ico file has to be, now to actually create this file you can take one of two routes.
The first is to convert and existing 16 x 16 BMP or GIF graphic with 16-32 colors into an .ico file using converter software making sure to save it as favicon.ico.
You know the standards the favicon.ico file has to be, now to actually create favicon.ico . The easiest way of creating a favicon.ico file is to convert an existing 16 X 16 BMP or GIF graphic with 16 – 32 colors into a .ico file using converter software making sure to save it as favicon.ico.
Once you have created your favicon.ico file all you need to do is to upload it to any directory on your server that contains html pages. This way, when IE5+ searches for favicon.ico it will be bale to find it regardless of which page you are on.
That’s nearly all the areas of favicon.ico covers apart from, what if you want different icons for different parts of your website? Can this be done? The answer is yes it can. All you have to do is place the following HTML code between the <head> and </head> tags of your web page.
<LINK REL=”SHORTCUT ICON” HREF=”differenticon.ico”> (SHORTCUT ICON should be kept in uppercase).
Now when someone adds a web page with that code to their favorites, IE5+ will not look for favicon.ico but will look for differenticon.ico and if it’s there it will display it, if not the default icon will be displayed.
Using favicon.ico or the SHORTCUT ICON code is nice way to add a unique touch to your site, and of course will result in more repeat visitors than if you were not using it – which is always good for any webmaster.
Article Written By Le
-
Making Money From Adult Webmaster Referrals
One method of income generation that is very rarely talked about in the industry is that of the webmaster, from the new webmasters to the adult industry right up to those who have been in the biz some time.
One of the easiest ways to generate ‘long term’ income is by referring webmasters to programs using your own linking (referral) codes.
However, this is for some a huge step out of their everyday site building even though it shouldn’t be.
This is what we will investigate in this article.
By now we should at least have a fair few sites online and getting surfer traffic but, how many of us get traffic from other webmasters and don’t even know about it?
The chances are, if you submit a site to ANYWHERE you will at least get one webmaster hit to it regardless of whether it is a webmaster of a TGP, Links List, Dmoz Editor etc these are all potential money makers for you.
One of the easiest ways to make money from other webmasters is to simply have a link on each and every site you build in text that says ‘webmasters’ this should be linked to a single page on your domain with a listing of various affiliate programs you use or can recommend.
Often placing a button or a banner on this page for each of the referral programs will work much better for you as the webmaster can actually see a little more information about the sponsor you are trying to make them join.
We all know of some of the big sponsors like ARS, Topbucks, Sic Cash etc etc but, what about the smaller programs that, perhaps not many webmasters know about, these would be the ideal types of sponsor to use on your webmaster page.
However, in addition to the affiliate programs you could also recommend hosting companies, content providers etc etc for example, the following companies have referral programs that you could use on this page:
Content Providers:
http://content.xphotography.com
http://matrixcontent.com
http://pixmasters.comHosting Providers:
http://webair.comMessage Forums:
http://arsresources.com/forum/
http://xnations.comTraffic Generation:
http://adultbuttonexchange.com
http://pornclient.comAs you can see from the small list above, you could have more than one way for webmasters to make you some additional profits in the form of either, cold hard cash or, from some of the places, additional traffic to your sites.
Hopefully list brief article will have given you some ideas as to how you can make some additional money from webmasters visiting your site and, don’t forget, once you have the page linked on your site, it will, inevitably get into the search engines, so keyword the page up and you might start generating more webmaster traffic than you could imagine.
Article written by Lee.
-
Using JavaScript To Auto Scroll Text
Using JavaScript To Auto Scroll Text.
There may come a time when you would like to have some text on a page that is simply just to big to fit on a single page. Of course, you could always create a new document for this text but, what if you could make the text actually scroll through the surfers browser?The following JavaScript will do just that.
Place the following section of JavaScript coding between your <head> and </head> tags:
<SCRIPT LANGUAGE=”JavaScript”>
<!–function scrollit() {
for (I=1; I<=1200; I++) window.scroll(1,I);
}// –>
</SCRIPT>Along with the following JavaScript coding someone in the Body of your page:
<FORM>
<INPUT type=button value=”scroll” onClick=”scrollit()”>
</FORM>Have a play around with the numbers in the first section of the JavaScript to speed up and slow down the rate of scrolling until you find a speed that is easy on the eye.
Article written by Lee
-
Adult Industry Standards – What Are They Exactly?
For some, the term ‘industry standards’ might seem like an oxymoron and, in such a wide spread global industry this might just be the case, the adult industry is not regulated in any way shape or form however, this term is thrown around with the best of them.
In this article we will take a quick look at some of the ‘standards’ which have been set and, for the most part, seem to be accepted across the online adult industry as a whole.
Industry Standards – The Basics.
‘Industry Standards’ are, in effect a set of guidelines or rules by which any person operating a business in a specific sector operate by. These may range fro charging a standard price for a product, operating in a certain way or something else. Most industries have their own set of specific ‘standards’ which are usually upheld regardless of whether they are actually written in law, as regulations, rules or, unwritten, unspoken standards.Adult Industry Standards – The List.
This is a list of the 4 most common ‘Adult Industry Standards’ that webmasters would seem to operate their businesses towards, these are not ‘official’ industry standards more general operational guideline which are accepted as the ‘norm’ in our industry.1) Adult Webmasters should use ‘legal’ content.
2) Adult Webmasters should abide by the rules of the sponsors they use.
3) Adult Webmasters should not promote ‘child pornography’ or imply the promotion of the same.
4) Adult Webmasters should operate their business within the scope of the law.Taking the above four items into account, there of course, other standards by which webmasters already self-regulate to some extent for example, you shouldn’t steal other webmasters work, content, bandwidth (through hotlinking), etc. However, other than the four primary ‘unwritten rules’ above there doesn’t appear to be any special ‘code of practice’ to which webmasters should or even, can adhere to.
Taking the above information one step further, lets take a quick look at the adult industry sponsors, almost all of them have a different variation of their Terms and Conditions however, implied or otherwise, most of them tend to stick within the confines of the details already mentioned above. This in itself can lead webmasters into some troubles for example, promotion of sites, most sponsors have unwritten rules about what webmasters can and cant do to promote sites, no spamming paysites, no misleading links but, again, there are no ‘set’ rules that any two sponsors seem to say in the exact same manner.
Adult Industry Standards – Self Regulation.
We all know by now (at least those of us whom have been doing this for a few months) that the adult industry is pretty much self regulated and, whilst this is almost certainly a good thing it can also lead to complications. For example, ‘Webmaster A’ does something to promote a site that they got permission to do whilst, ‘Webmaster B’ does the same thing without having permission. in this instance, more often than not ‘Webmaster B’ will the one who gets their name blackened in the industry. it would also seem that, whilst those webmasters who have a long standing in the industry are capable of getting away with certain things, others, who perhaps have seen things done, when they try the same they get ridiculed.Adult Industry Standards – Overview.
As ‘Adult Webmasters’ and, i would like to stress the ‘Adult’ part of that job title we have a lot of information thrown at us from the very first day of joining this industry, how we choose to use that information is up to us on an individual basis. That said, until the ‘standards’ are set on a level playing field i cant help wondering what effect, negative or positive our own style of self regulation is having on our associates and peers, does it help that we can go to message forums and call sponsors, hosts, other webmasters cheats? or, does this hinder our industry on a much wider scale?One thing is for certain, if i were a journalist writing a report on the adult industry as a whole, i don’t even think i could write about the actual ‘business’ side of things after all, we all run our businesses as we see fit and, at the same time, read the rule book that would at least, for the time being, suit us as individual business owners.
Article written by Lee.
-
The Negative Marketing Technique
Negative marketing is a wonderful thing in its own right however, negative marketing can, surprisingly enough have a NEGATIVE effect on your sales.
How many times have you seen a site that has, about half way down the page some text telling the surfer no to click on anything because ‘these are only counters’?
Counters in themselves can be VERY useful tools to the adult webmaster however, counters are given to us for free because of one simple reason, the graphics used on them are made in such a way that they will actually draw clicks from your traffic.
Most of the time however, these counters that take your hits are helping you much more than you know, from giving you addition traffic, valuable surfer stats and many other things.
Now, the same is also true for banner exchanges as is for counters, they are a useful addition to the variety of tools available for adult webmasters however, many webmasters, as mentioned above tell the surfer NOT to click on them, something i just never seemed to be able to get my head around. As you reading this post kind of proves, tell someone not to do something and you can guarantee they WILL do it
However, as i started off this quick article saying, Negative marketing is a good thing, after all, you have now got the proof to tell you that it works why not put this to use on your site?
For example, rather than telling a surfer…
‘Click Here For The Hottest Porn Site On The Web’
Tell them…
‘DO NOT CLICK HERE’
Wonder what they will do
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