mobile affiliation that makes you earn money
To access mainstream affiliation, please click here under

Attention site with pornographic content.

This site contains pornographic images and videos,
prohibited to minors and
which may be offensive to some people.

By clicking "Enter" you certify :

- To be over legal limit in your country
- Not to mention the existence of this site or to disclose content to a minor.
- That you will use every means in your possession to prevent a minor to connect to this site.

ENTER


mobile affiliation that makes you earn money
FAQ

1/-You propose redirecting my mobile audience to your service, why would I do that?

Today, a mobile visitor arriving at your website doesn’t get a mobile-optimised service. Browsing is barely possible and much of the content offered can’t even be played. In spite of their best intentions, this visitor won’t buy anything on your website from a cell phone. Their mobile traffic is lost and doesn’t generate any revenue. We enable you to monetize this traffic by redirecting it to our mobile version of your websites.

 

2/-How do your websites manage to monetize the mobile audience?

They’re made for it! Pages are adapted to each and every cell phone, content is encoded and optimized for mobile access and most importantly, billing is done mainly on their carrier’s bill. Through our websites, we get conversion rates between 5-10% on prices from 1.99-100 euros.

 

Generating revenue with cell phones is a heavy, specialized and complex job. However, once the technical and marketing investment is done, it’s well worth it. We allow you to benefit from our 5 years’ experience, spent partnering with mobile carriers.

 

3/-How do you redirect my traffic to your websites?

You do it.

We send you a PHP script or an .htaccess file to install on your server, enabling you to get the redirect setup done within minutes. And you can still write your own code, if you prefer.

You keep the full ability to later delete this redirection script and end our partnership.

 

4/-How can I be sure redirection will not impact negatively on my SEO?

This is actually an extremely important point.

We manage our redirection scripts, the headers and the related sites, in order to be perfect for SEO.

We also offer you the ability to return your clients to one of your domains that would have been redirected to our server.

 

For example: if you run "www.name.com", you'll redirect simply to "mobile.name.com".

 

5/-Which websites will you send my visitors to?

We’re mobile website editors.

We have a wide offering of target websites. From hard-core content for people who have them unlocked by their carrier to softer content for others, general or niche websites and also LiveCam sites, Games and gambling and fortune-telling sites,etc...

The choice of website depends on the client’s carrier, the country he’s calling from, his having requested adult content unlocking (if we are provided with this information) and finally your own website’s content and keyword, typed by the client before landing on your website.

 

This also depends on the preferences you have indicated to us.

This choice is based on a constant optimization from Affil4You and evolves in conjunction with our offerings, legalities, the carriers and your services.

We guarantee you that services clients are sent to respect ethical rules set by mobile carriers (which are very strict compared to those in force on other media).

 

6/-How do you know a visitor is using a cell phone? How can I be sure you won’t redirect other visitors?

We use a method based on the user-agent of the user device making the request.

We keep an up-to-date list of mobile user-agents to this end.

We also use mobile carriers’ IP-addresses in the countries whose IPs are known.

The combination of these two tools enables us to select precisely the clients to redirect.

 

7/-How can I find out about the amount of money you will pay me back? How can I be sure purchases done by the visitors I send will be credited to my account?

We supply you with a monitoring site via extranet.

You can check the amounts of the transactions made by your clients through our services, live. On the basis of this extranet, we generate monthly billing-calls. All purchases are stored in the database. Should you have any doubt, you can ask for an extract of our database for a given day.

 

This extract enables you to check that transactions you have realized are saved in our database and have generated a credit for you.

This extranet is also available via a Web service.

 

8/-What about repayment?

Payments are done monthly.

At the beginning of the month, we generate an invoice call indicating to you the amount of money you have earned on the extranet.

When we receive the invoice associated with the invoice call, we pay you within 5 days.

 

9/-By accepting your offer, what am I committing to?

You have no specific obligation and can stop redirecting traffic whenever you want.

If the traffic you send doesn’t cover our management costs, we’ll contact you and put an end to it.

It’s that simple.

 
INSTALLING THE SCRIPT

1/-General Principle

The affiliation.php page allows for the redirection of your visitors to our WAP site on 2 conditions:

  • The User-Agent of their browser must not appear on the White List.
  • the User-Agent of their browser must be recognized as that of a mobile device. For this purpose, we list the keywords common to known User-Agents in the table $w240388_user_agents_list (line 13). Consequently, the evolution of User-Agents and their number will from time to time mean we will send a new script to replace this one.

 


If these two conditions are not met, the visitor will not be redirected and your normal page will be displayed.

 

2/-User-Agents

The User-Agent is a piece of data in the form of a text string sent by the customer’s browser, allowing the server to identify the software, the operating system and the version.

Here is a sample User-Agent:

  • Mozilla/5.0 (Windows; U; Windows NT 6.0; tr; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4

This tells us among other things that the visitor uses Firefox 3.0.4 on Windows Vista.

An exhaustive list of the different (and numerous) User-Agents that now exist is available on the site http://www.useragentstring.com.

 

3/-The Whitelist

The Whitelist is a list of User-Agents for which the visitor does not need to be redirected. It allows you, if desired, to filter user-agents for which you want to keep the traffic on your normal site.

These user-agents are listed in the table $white_list (line 84) in which you can add a string of characters representing a user-agent. You can also be more vague, indicating only the browser (e.g. “Firefox," “IE”, “Chrome”) which will filter all versions and OSes. In this way, to keep the visitors using an iPhone, for example, you just need to add the string “iPhone” to the table $white_list.

 

4/-Integrating the affiliation.php script into your page

Since we’re dealing with a redirect, the script must be included at the beginning of your page, even before any writing (therefore, before the first tag). You can insert it by doing a copy-paste or simply by using the function include(/path/to/affiliation.php).

 

5/-Integrating the script into several pages

If you wish to include the script on several different pages and to be able to differentiate the statistics according to the originating page, you need to create one copy of the script per page.
In each affiliation.php file, you will need to initialise the variable $w240388_id_affiliate_site with a string of characters (30 max.) The characters authorized are non-accented letters, numerals and the underscore ‘_’.

Example 1:

  • In the first file: $w240388_id_affiliate_site = "1";
  • In the second file: $w240388_id_affiliate_site = "2";

In your statistics, the origin will be differentiated in this way: aff_idaffiliate_1 and aff_idaffiliate_2 (where idaffiliate is your affiliate ID).


Example 2:

  • In the first file: $w240388_id_affiliate_site = "video_pages";
  • In the second file: $w240388_id_affiliate_site = "photo_pages";

In your statistics, the origin will be differentiated in this way: aff_idaffiliate_video_pages and aff_idaffiliate_photo_pages.


The variable $w240388_id_affiliate must not be changed. It represents your affiliate ID and allows us to associate your visitor’s origins with your site.