-
Billing Solutions For International Surfers
We all know the lifeblood of the webmaster is to be able to accept credit cards for site access however, with the global markets emerging more and more, many webmasters still do not realize that they can accept credit cards from international countries at little or no extra cost to themselves or, their business.
Presuming you already have your sites translated into a selection of global formats you need to make sure you can process foreign transactions and, these should be handled differently than regular US based credit card users however. This is what we will approach upon in this article.
The main reason we own our businesses is to turn a profit and, from a profit making point of view is just how the details below will enable you to benefit your long term global business.
The first step you need to take in order to correctly ‘charge’ your international customers is to ensure that you are sending them to the right language, after all, over 70% of internet users can not speak English, let alone read it. This is where having some geo-scripting comes in handy on your join page, the second the surfer hits this page he (or she) will be directed to a localized version of your join page.
Now that you have the surfer on your join page you also need to ensure they have a variety of options available to them to actually finalize the purchase however, you should also ensure that, if they want to view your join page in another language, that they have this as an option too.
Some alternate payment methods for your international customs could include one or more of the following, PayPal, JCB, Mastercard, Discover, Maestro, EuroDebit, Checks and, of course, a dialer.
I would however use the dialer as a last minute option should their chosen method of payment not be accepted.
Even though you may run a ‘recurring’ based site, you might not want to have your foreign surfers recur and risk having their card declined when it comes to authorizing your charge next, for this reason you may like to add the option of a 3 month membership or perhaps a 6 month membership however, make sure you lower the cost of this membership in relation to buying a monthly membership, this might just be the clincher you need to close the international sale.
As with any purchase the after sales support is also needed, especially if you are wanting your international customer to rebill for several months and, trust me, they WILL rebill, often for in excess of 6 months. They pulled their credit or debit card out for a reason and, they will stay if you can give them more reason too.
With any type of sale a follow up is always good, many sponsors and processors send out an email automatically upon sign up, however, how many of these emails are written in the surfers native tongue?
In conclusion, when dealing with international customers you should cater to them NOT make them cater to YOU by doing this you will ensure the longevity of your international business.
Finally, if you have any type of online business you should carefully consider the global market place as it is growing a rapid rate with millions of new international surfers coming online each year this would be a bad business choice on your part if you were not to cater for them.
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
-
Using Basic Server Side Includes (SSI)
Server side includes are what their name sounds like. A way to include the contents of another file into your current web page BEFORE the web page gets sent off to the surfer. Not only does this include contents of a static file but you can also include the results of a CGI program and on some web servers, you can even have it display the current date and time.
Now, many web hosts do not normally have server side includes turned on. You will have to ask your host if they have SSI turned on and if they do, what is the file name extension for SSI. By default, SSI files have an .shtml extension.
Sometimes, you can turn SSI on yourself. If you host doesn’t have SSI turned on for you already, you can try adding the following two lines to your .htaccess file. Then create a file with the .shtml extension, include a SSI command and see if it works.
AddType text/html .shtml
AddHandler server-parsed .shtmlWhen you use SSI commands, you place them exactly in the location within your web page where you want the output of the SSI command to appear when you finally browse the page. If you have SSI, then you can use the following command to include a file. When you include a file, you can either give it a path name to the file or you can give a URL to the file. I’ll list both here.
<!–#include file=”/some/path/above/my/web/to/my/header.html” –>
This is an example of how to include a file based on its path name. Now,
here’s the same file put included with its URL.<!–#include virtual=”/to/my/header.html” –>
And this is an example of how to use a URL. With a URL however, it cannot be a complete URL such as http://www.somesite.com/somefile.html. It has to be within your current website. You can also use the URL method to run a CGI script! Here’s an example of that:
<!–#include virtual=”/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2″
–>As you can see, we can even pass arguments to the CGI script just as if you typed it into your browser! There is also another way of running a CGI script but this is not as widely used any more and you should use the #include virtual method instead. Here is the same example so that you will know what it means when you see it.
<!-exec cgi=”/cgi-bin/somescript.cgi?myfirstarg=1amp;mysecondarg=2″ –>
As I mentioned earlier, you can use SSI to display the current time and date. Here’s how:
<!-echo “$DATE_LOCAL” –>
This will display the current date and time. SSI is usually used when you want to have a standard header or footer on each page. It’s also used for displaying rotating banners or page counters. As you see above, you can also use it to display the current date and time or the date when the page was last modified.
SSI has also been used for cloaking and some tracking software uses SSI to track each incoming hit to the web page. If you would like more information about SSI, go to
http://www.apache.org/docs/mod/mod_include.html. This is the definitive guide on SSI on the Apache web server.Most other web servers that use SSI also follow these conventions.
Article written by Lee
-
Building A Surfer Trap – Stage 2
In the last tutorial we hopefully got the foundations of our surfer trap laid and in this stage, we will start to put this thing together.
Ok the first step of stage two of building your surfer trap is to start linking each of the individual FPA’s to your Multi-Site FPA.
The easiest way that I have found to do this is to give each FPA its own sub directory on your server and have the html page named index for each of the single site FPA’s.
So for instance, if you have the site All Petite on your Multi-Site FPA you would link it to:
mydomain.com/all-petite/
Or whatever you called the sub directory for the All Petite single FPA.
Now, once you have linked these single FPA’s to your Multi-Site FPA we need to start ‘playing’ with them once again.
You should now have copy’s of your single site FPA’s and Multi-Site FPA on both your server and Hard Drive.
Take the copy’s you have on your hard drive and add a small NICHE pop up console to each of the single site FPA’s AND the Multi-Site FPA.
I would suggest making 6 NICHE consoles.
These consoles should be pure text and nothing else.
Each of the links on this small console should link to a different niche of your single site FPA’s I usually go with one link for each of the following niches…
Gay
Mature
Teen
Fetish
Hardcore
AsianPlus, I usually add a link at the bottom of my console which goes to the POTD program.
Once you have these consoles built you should upload them to their OWN sub directory on your server, I would suggest calling this directory ‘consoles’ and calling each of the niche consoles the name of the NICHE they represent.
So, you should now have the following on your HD and on your server:
1 Multi-Site FPA
50 or so Single Site FPA’s (All Linked From The Multi-Site FPA)
6 Small Pop-Up Consoles (Popping Only One On The Multi-Site FPA and The Single Site FPA’s, each different niche Single Site FPA pops a different niche console however.)You now have to check that your surfer trap is working so far.
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
-
Online Adult Laws – Privacy Policies
To many webmasters and companies working online the fundamental basics of their business is to turn a profit through effective online marketing campaigns and promotions however, within all of this profit making there is a side of business that is so often overlooked or, forgotten entirely, what is this business practice? The law.
In this brief article we will take a look at one such law that comes into effect in California on the 1st July 2004 namely, that all ‘web sites that collect any personal information from consumers to post a privacy policy’. Whilst this in itself is the first law of its kind in the United States it is worth mentioning that this is only a State law that affects California however, that said, where one state starts, others are sure to follow especially considering the huge potential left for the growth of the internet.
Privacy Policies – How Does This Effect You?
The main factor that you must take into consideration with this new law from California is that, because the Internet is truly global, you have no way of telling where one of your surfers are coming from thus, a surfer entering your site from California, may be making you break the law by not displaying a privacy policy should you collect their information. Incidentally, this new privacy policy law does not state what ‘collected’ information requires you to post a policy however, it would seem that personal information such as addresses, phone numbers and email addresses would be the primary target of this new Californian online law.Privacy Policies – The Basics.
So what is a privacy policy, in essence, it is a document informing your site visitors / customers that any information you collect from them, including user submitted information will be used in a specific way, this might be a case of solely being used by yourself or, specifically if you rent out this information you need to tell your surfers / customers exactly who you are renting this information to.Privacy Policies – Overview.
Whether you collect personal information from you site visitors or not the one thing that makes sense is to have a page created ready for the 1st July 2004 so that you can have it online for when you need it, perhaps storing this page on a central domain and linking to that page from all of your other web sites would be the best method to go as far as ensuring you are covered from prosecution or, perhaps creating a keyword rich privacy policy which you can get listed in the search engines is the way to go after all, just because this will become a legal requirement for you it does not mean that you cant profit from the potential traffic going to that page.Article written by Lee
-
Undeveloped Domains – Put Them To Use
Often when searching for new domain names, i come across what should, in theory be a golden opportunity only to find, the domain itself has already been registered and, whilst this in itself is annoying, what is even more annoying is that the domain 404’s when typed into the browser window.
The mere fact that someone else, a webmaster no less, has thought about purchasing the same domain as what you may have means there is already value in that domain and, more importantly, you have potentially lost a sale.
So how can we capitalize on this potential lost traffic from the off-set? That is what we will look at in this brief article.
The first thing we need to do in order to start making some additional potential profit from our domain is to create a ‘generic’ holding page until such time that we have the time or, funding, to develop the site we had intended to place on our new domain name.
This holding page can take many forms depending on the type of traffic you are hoping to target with the domain itself. Ideally, you will want to have as much choice for the surfer (or webmaster) on this holding page as you can so, you need to assess the nest types of sites to use, the best use of the traffic no matter how small it could be and, more importantly, the best way to maximize your sales potential.
One good way of doing this is to split the page into three sections, two equal sized sections at the top portion of the page and, one smaller portion towards the very base of the page designed, almost like a footer.
In the two top portions you should equally distribute both surfer orientated and, webmaster orientated links both of which need to be clearly separated.
For example, the left side of the page take all of your top converting paysites and list them by niche, they don’t have to have fancy or heavy graphics, text links will suffice for now as this is only a ‘temporary’ page.
On the right hand side of the page place some of your webmaster referral linking codes with a brief description, remembering that not only surfers could hit this page but webmasters themselves.
On the ‘footer’ portion of the page, the most important section, you should put your contact details, ideally an email address and, if the domain warrants, details of how you can be reached by instant messenger. The reason for the email and instant messenger details is a simple one, if a webmaster REALLY wants the domain that you have, he, or she, might just make you an offer on it and, if they have no way to get in touch with you then, you have just lost an offer on a domain that you might not get around to using for months.
of course, in addition to utilizing the traffic you have on the domain you can also use this holding page to generate more traffic, for example, placing a banner or button exchange code on the site or, perhaps a counter. The possibilities to generate traffic to these pages are limitless depending on how you use the holding page itself.
Well, that’s the basics of domain holding pages explained and, hopefully you will have realized that no matter what you plan on doing with your new domains, after your host has added them to your server, the next thing you should do is to create a generic holding page that you can upload into the rot of the domain name and, who knows, you might end up making some money a little sooner from that unused domain name.
Article written by Lee
-
Online Dating Programs – Working The Adult Angle
As the industry starts to feel the effects over the coming months from the whole Visa situation the one thing that, at present seems to be true of the adult industry is that more and more webmaster/companies are looking to increase their revenues by utilizing mainstream sponsors on their sites. However in addition to this, the adult dating program appears to have been overlooked at least up until now.
Online Dating Sites – The Options.
There are actually a few good online personals sites available for adult webmasters to promote ranging from Love At First Click through the Advertising Revenue Service program to specific dating sites such as Match.com and Date.com. One thing is overwhelmingly consistent however regardless of which sponsor you use for your dating traffic, they all have a relatively low payout when compared to the ‘norm’ in adult sites with payouts ranging from $1 to $5 per signup.Marketing Dating Sites.
So how should webmasters market dating sites in conjunction with their current streams of traffic, this is actually a lot easier than you may think for example, almost everyone has an exit link on their free sites, you could utilize this exit link to send traffic to a dating affiliate program in fact, you could also utilize a dating affiliate program on your exit consoles or even on TGP galleries instead of pay sites. The opportunities for you to make money by placing dating affiliate program banners on your web pages are virtually endless.Online Personals – Sales Techniques.
When selling online dating sites there are, in addition to the abundant methods of generating the traffic, many different methods of generating your marketing speech to the surfers, you should ideally try a selection of methods on your sites to find out exactly which method works best for you. As an example of this, if you are using a dating program on a softcore site, you might want to try a hardcore approach to selling your dating sponsor in much the same way as you would sell a hardcore pay site except not as highly graphic. In comparison, if you have a TGP gallery you may like to tell your surfer that rather than looking at sex, they might actually be able to get sex for a change. The ways in which you can entice your surfers to your dating affiliate program are virtually limitless.Marketing Dating Sites – An Overview.
Whether you are already using or are planning to use dating sites, the one thing you must do is ensure that you choose wisely not only the words for selling the site to your surfer but also the placement of the promotional material, a well placed text link can have a higher impact on your overall sales than a badly placed banner and well, the same is true in reverse, find out where you are missing out on opportunities to upsell your surfers to an online dating site.Article written by Lee
-
Domain Name Transfer Agreement
Domain Name Transfer Agreement
For most people, buying and selling domain names is a fundamental income provider for their business model, as such, you should ensure that when buying or selling domain names you should have a legal contract to assist in the transfer of sale.Domain Name Transfer Agreement.
This Agreement is made on the Day of 2001 between:
(1) [Your name and address goes here]. (hereafter referred to as the assignor) and;
(2) [The buyers name and address goes here]. (hereafter referred to as the assignee).
RECITALS:
(a) The parties have been in discussion concerning the transfer to the assignee of the registration of the designations ‘[full domain name goes here]’ and ‘[further domain name goes here]’ (whether in lower or upper case) hereafter referred to as (the “domain names”) as website addresses on the internet.
(b) The parties wish to reach a mutually acceptable arrangement in relation to such discussions.
Now therefore, in consideration of the parties’ mutual covenants and undertaking, the adequacy and sufficiency of which are acknowledged, the parties agree as follows:
1. The assignor hereby agrees to assign, and/or cause to be assigned, to the assignee the domain names. The assignor shall do such things and execute such documents as reasonably requested by the assignee at the assignees expense to perfect such assignment and shall comply with the standard requirements of [insert domain name registrar here] as in force at the time of this agreement.
2. In consideration of the parties mutual obligations under this agreement the assignee agrees to pay the assignor the sum of $$ [Amount in words goes here] [currency goes here, Dollars, Sterling Etc] immediately following notification that all of the domain names within this agreement have been recorded at the relevant registries as in the ownership of the assignee thereby evidencing the transfer of the domain names to the assignee.
3. The assignor, whether through himself, any alias and/or his servants or agents shall immediately cease and desist from and shall not resume using the domain names or any other designation whether a trade or service mark, trading name or domain name that contains words colourably similar to that of the assignee.
4. The assignor further agrees that he shall not, directly or indirectly, individually, through any alias, or in conjunction with any person, firm or corporation, apply to register any trade mark, service mark and/or any other word or words colourably similar to any such trade names or marks.
5. The assignor further agrees that he shall not, directly or indirectly, individually, through any alias, or in conjunction with any person, firm or corporation, apply to register any trade mark, service mark and/or any other word or words colourably similar to any such trade names or marks, cause enable or assist any third party to do the same.
6. The assignor represents and warrants that it has not, directly or indirectly, through any alias or in association with any other person or entity, filed, reserved, received or granted a transfer of license of any domain name that contains the trade marks or any word or words confusingly similar thereto in any country or federal, local government, region or state authority, or with [insert domain name registrar here], or any other internet registration agency. The assignor covenants that it will not, whether through himself, any alias, through his servants and/or agents undertake any such registration, filing, or reservation or cause or assist any such registration, filing, or reservation to be made, by itself, or in connection with any other person or entity.
7. The assignor represents and warrants to the best of its actual knowledge, as of the date of its execution of this agreement, that:
(a) The assignee has the right to dispose of the domain names;
(b) The assignor has not received notice of any existing or threatened claims or proceedings by any third party other than the assignee relating to the assignors use of the domain names;
(c) The assignor has not received notice that the domain names are subject to any outstanding order, decree, judgment, stipulation, written restriction, undertaking or agreement that would prevent the assignor complying with this agreement;
(d) The domain names are not subject to any lien, charge, security interest, mortgage, third party interest or other encumbrances;
(e) The assignor has not granted any licenses to or authorized any third parties (including any affiliate of the assignee) to use the domain names or any other confusingly similar domain names; and
(f) The assignor, does not own directly or indirectly through any alias, third party or likewise any other domain name containing words similar to that of the assignees.
8. Each of the parties hereto warrants and represents that the person (s) executing this agreement on its behalf has full authority to execute this agreement and bind it as a party to this agreement.
9. The terms and conditions of this agreement shall be maintained in confidence. No party may disclose such terms and conditions to any third parties other than to the attorneys, accountants, officers or members of the boar of directors of the assignee or assignor or otherwise without the express written permission of the other party.
10. This agreement shall be binding upon and inure to the benefit of the parties hereto and their respective heirs, clients, licensees, representative, successors, predecessors, and assigns. In this agreement words denoting persons shall include bodies corporate and unincorporated associations of persons and vice versa.
11.This agreement incorporated herein constitutes the entire agreement of the parties. It may be modified only in writing signed by both parties. This agreement may be executed in one or more counterparts, all of which shall constitute a binding agreement when one or more counterparts have been signed by each of the parties.
12. This agreement shall be construed in accordance with the laws of the [Your country goes here, United Kingdom, United States, Etc], and the parties hereto submit to the non-exclusive jurisdiction of the courts of the [Your country goes here, United Kingdom, United States, Etc].
13. Both parties acknowledge that if either party violates all or part of this agreement the other party may seek legal remedies to restrain any further violation of this agreement and in such a case, the violating party will be wholly liable for the cost of any such order.
Signed by: ……………………………….. Date: ………………………..
For and on Behalf of [Your company / legal name].
Signed by: ……………………………….. Date: ………………………..
For and on Behalf of [Buyers company / Legal name].
Article written by Lee
-
Domain Name Renewals – The Basics
As an adult webmaster there is one thing that we all own which we build our businesses on, a domain name and, with this comes the responsibility to ensure that as long as we are running our business from any given domain that we ensure they are constantly under our control this is where domain name renewsl come into play.
Domain Name Registration Periods.
Almost all reputable domain name registrars will allow you to purchase a domain for anywhere between one and ten year periods. Many webmasters however only choose to register their domains for one year at a time and this, is where many webmaster can run into problems with their domains. More often than not webmasters will either forget to renew their domain names completely or, are not aware that they are even coming up for renewal. For this reason it is usually best to ensure that you register your domains for a minimum period of two years, this gives you a good time frame to start using the domain as well as ensuring you have enough funds available by the time the domain name comes due for renewal.How To Stay On Top Of Your Renewals.
The simplest way to ensure that you keep on top of the domain names you own and when they are due for renewal is to keep a written document detailing as much information as possible about your domains, this document should include information such as the domain name itself, the registrar you used to register your domain name, the cost of the domain name and, most importantly, where the domain is pointing to, the period of registration and, the date when the domain needs to be renewed. By having this information readily available and, by keeping this document up to date with each new domain name purchase you should be able to ensure that no matter when your domain/s become due for renewal that you are on the ball with paying the domain name renewal fees.Domain Name Renewals Overview.
Regardless of when you register a domain name the one way you can be sure to be the owner of the domain for years to come is to ensure that you keep accurate, detailed records of each domain name purchase, whether you keep this written on a calendar, on a piece of paper or, somewhere else, you should make part of your monthly routine checking this document and making sure that the domains you own are all fully working and, more importantly, are fully paid up.Article written by Lee
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing