Greenguy's Board


Go Back   Greenguy's Board > General Business Knowledge
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2009-09-07, 07:05 AM   #1
LD
wtfwjd?
 
LD's Avatar
 
Join Date: May 2007
Posts: 2,103
Question Redirecting mobile traffic with sponsor scripts

I've noticed some of my sponsors offer a script or code that redirects mobile visitors to their mobile tour. Anyone using something like this? I'm thinking of trying it out. What do you think?
__________________
Artisteer Wordpress Theme Generator Create Custom Themes!
My Little Network
LD is offline   Reply With Quote
Old 2009-09-07, 07:50 AM   #2
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
This reminds me that I need to contact Topbucks to ask about their script to redirect mobile traffic to my Topbucks white label site that they did for me.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2009-09-07, 07:52 AM   #3
LD
wtfwjd?
 
LD's Avatar
 
Join Date: May 2007
Posts: 2,103
White label redirect, eh? Sounds interesting...
__________________
Artisteer Wordpress Theme Generator Create Custom Themes!
My Little Network
LD is offline   Reply With Quote
Old 2009-09-07, 07:56 AM   #4
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally Posted by LusciousDelight View Post
White label redirect, eh? Sounds interesting...
So far zero sales but I'm barely sending any traffic to it.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2009-09-07, 12:56 PM   #5
InfoGuy
I want to set the record straight - I thought the cop was a prostitute
 
Join Date: Jul 2008
Location: Los Angeles
Posts: 297
FYI, your 2257 notice appears as black text on black background.
__________________
Free Speech Coalition | Boycott .XXX / ICM Registry
InfoGuy is offline   Reply With Quote
Old 2009-09-07, 02:34 PM   #6
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally Posted by InfoGuy View Post
FYI, your 2257 notice appears as black text on black background.
Who's, what url?

I'm looking at the three ways TopBucks is suggesting doing it.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2009-09-07, 03:35 PM   #7
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
OK, This is what I ended up doing and it seems to be working well.

In my htaccess,
Code:
DirectoryIndex  index.php index.shtml index.html index.htm
This way index.php is looked for first.

Then in the index.php file I put this,
Code:
<?php
$REGULAR_URL = 'http://cleos-porn-links.com/index.shtml';
$MOBILE_URL = 'http://mobile.cleos-porn-links.com/';

// Do not edit below
$WORDS = array('mobile', 'blackberry', 'j2me', 'webos', 'windows ce', 'android', 'nokia', 'samsung', 'LG', 'palm', 'PSP');
$is_mobile = FALSE;
foreach ($WORDS as $w)
{
	if (isset($_SERVER['HTTP_USER_AGENT']) 
		&& stripos($_SERVER['HTTP_USER_AGENT'], $w))
	{
		$is_mobile = TRUE;
		break;
	}
}
$url = ($is_mobile) ? $MOBILE_URL : $REGULAR_URL;
if (!empty($url))
{
	header('Location: ' . $url);
}
?>
(The links on my mobile domain are getting changed to http://cleos-porn-links.com/index.shtm sometime in the next day or so. Until then the "View Full Web Version" link does not go to my non mobile site)
This way mobile surfers can still reach my regular site but will get presented with a mobile option first. Non mobile surfers will not notice anything different at all and both mobile and non mobile users can still reach any non mobile page too.

On a side note... I modified the htaccess in my porntube by adding this,
Code:
RewriteCond %{HTTP_USER_AGENT} (mobile|blackberry|j2me|symbian|windows.ce) [NC]
RewriteRule ^(.*)$ http://mobile.cleos-porn-links.com/ [R=302,L]
Now the mobile traffic is going to my Topbucks white label site instead of Brazzers.
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2009-09-07, 09:52 PM   #8
InfoGuy
I want to set the record straight - I thought the cop was a prostitute
 
Join Date: Jul 2008
Location: Los Angeles
Posts: 297
Quote:
Originally Posted by Cleo View Post
Who's, what url?
http://mobile.cleos-porn-links.com/ ==> Enter Mobile Site (maybe it only looks that way because I'm using a standard browser).
__________________
Free Speech Coalition | Boycott .XXX / ICM Registry
InfoGuy is offline   Reply With Quote
Old 2009-09-07, 09:52 PM   #9
Gausche
If something goes wrong at the plant, blame the guy who can't speak English
 
Gausche's Avatar
 
Join Date: Feb 2009
Posts: 33
Good luck Cleo
__________________

ICQ: 498366939 - Mobile Porn
Gausche is offline   Reply With Quote
Old 2009-09-07, 10:45 PM   #10
Cleo
Subversive filth of the hedonistic decadent West
 
Cleo's Avatar
 
Join Date: Mar 2003
Location: Southeast Florida
Posts: 27,936
Quote:
Originally Posted by InfoGuy View Post
http://mobile.cleos-porn-links.com/ ==> Enter Mobile Site (maybe it only looks that way because I'm using a standard browser).
This is what you should be seeing.

Quote:
Originally Posted by Gausche View Post
Good luck Cleo
Thanks.
Attached Images
File Type: jpg mobile.cleos-porn-links.com.jpg (26.6 KB, 302 views)
__________________
Free Rides on Uber and Lyft
Uber Car: uberTzTerri
Lyft Car: TZ896289
Cleo is offline   Reply With Quote
Old 2009-09-08, 02:15 PM   #11
LD
wtfwjd?
 
LD's Avatar
 
Join Date: May 2007
Posts: 2,103
I plugged in Pimproll's code and tried it out on my LD domain. Looks pretty good. They have a Java and a php version which is quick and easy, but I do like the white label.
__________________
Artisteer Wordpress Theme Generator Create Custom Themes!
My Little Network

Last edited by LD; 2009-09-08 at 02:19 PM..
LD is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:56 AM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc