Redirect your incoming iPhone and mobile traffic so your sponsor can't steal it

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • spacedog
    Yes that IS me. Bitch.
    • Nov 2001
    • 14149

    #1

    Redirect your incoming iPhone and mobile traffic so your sponsor can't steal it

    Are you a TGP webmaster, blogger, or tubesite owner?

    Are you redirecting mobile and iphone traffic off your site? You should be.

    This traffic 99.9% of the time is incapable of viewing your site on a mobile device and more to the point, you're losing money by doing nothing with it.

    Bet your ass that many affiliate programs and sponsors are making BANK off YOUR MOBILE AND IPHONE TRAFFIC and they're giving you NOTHING FOR IT!!!!

    Download the firefox user agent switcher here
    https://addons.mozilla.org/en-US/firefox/addon/59

    and then add user agent for iPhone.

    { User Agent = Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en)
    APP Name = AppleWebKit/420+ (KHTML, like Gecko)
    APP Version = Version/3.0
    platform= Mobile/1A542a Safari/419.3 }

    Once you have this addon, activate it so that you can load your aff links as if on an iPhone and you will see which sponsors are redirecting your iPhone traffic to brazzersmobile .. Like pimproll is doing via porn.com

    Why should these companies make bank of YOUR TRAFFIC and not pay you anything for it.

    Redirect it to JuggCash sites. If you need anything, hit up Rico.. tell him I sent you icq 476746386
  • budz
    Disruptive Innovator
    • Sep 2003
    • 4230

    #2
    what's the best way to redirect it?

    I'm currently some php

    Code:
    $mobile_browser = '0';
     
    if(preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone)/i', strtolower($_SERVER['HTTP_USER_AGENT']))) {
        $mobile_browser++;
    }
     
    if((strpos(strtolower($_SERVER['HTTP_ACCEPT']),'application/vnd.wap.xhtml+xml')>0) or ((isset($_SERVER['HTTP_X_WAP_PROFILE']) or isset($_SERVER['HTTP_PROFILE'])))) {
        $mobile_browser++;
    }    
     
    $mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'],0,4));
    $mobile_agents = array(
        'w3c ','acs-','alav','alca','amoi','audi','avan','benq','bird','blac',
        'blaz','brew','cell','cldc','cmd-','dang','doco','eric','hipt','inno',
        'ipaq','java','jigs','kddi','keji','leno','lg-c','lg-d','lg-g','lge-',
        'maui','maxo','midp','mits','mmef','mobi','mot-','moto','mwbp','nec-',
        'newt','noki','oper','palm','pana','pant','phil','play','port','prox',
        'qwap','sage','sams','sany','sch-','sec-','send','seri','sgh-','shar',
        'sie-','siem','smal','smar','sony','sph-','symb','t-mo','teli','tim-',
        'tosh','tsm-','upg1','upsi','vk-v','voda','wap-','wapa','wapi','wapp',
        'wapr','webc','winw','winw','xda','xda-');
     
    if(in_array($mobile_ua,$mobile_agents)) {
        $mobile_browser++;
    }
     
    if (strpos(strtolower($_SERVER['ALL_HTTP']),'operamini')>0) {
        $mobile_browser++;
    }
     
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),' ppc;')>0) {
    	$mobile_browser++;
    }
     
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows ce')>0) {
    	$mobile_browser++;
    }
    else if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'windows')>0) {
        $mobile_browser=0;
    }
     
    if (strpos(strtolower($_SERVER['HTTP_USER_AGENT']),'iemobile')>0) {
    	$mobile_browser++;
    }
     
    if($mobile_browser>0) {
     header( 'Location: http://url.com/mobile' ) ;
    }
    else {
    C:\Code\
    C:\Code\Run\

    Comment

    • st0ned
      Confirmed User
      • Mar 2007
      • 8437

      #3
      I would be interested in knowing a good way to redirect this traffic also.
      Conversion Sharks - 1,000+ adult dating offers, traffic management, and consistently high payouts.
      We will guarantee and beat your current EPC to win your dating traffic!
      Skype: ConversionSharks || Email: info /@/ conversionsharks.com

      Comment

      • u8l2
        Registered User
        • Jun 2009
        • 49

        #4
        andy moore has written an awesome php mobile detect script you can download for free from andymoore.info
        i use this script exclusively on a couple hundred sites, it works wonders

        Cheers
        Rob

        Comment

        • spacedog
          Yes that IS me. Bitch.
          • Nov 2001
          • 14149

          #5
          Originally posted by st0ned
          I would be interested in knowing a good way to redirect this traffic also.
          There's various ways.. .htaccess, php, javascript, etc

          What I do is place this in my meta so to redirect google mobile search to a mobile site rather than site in results.

          Code:
          <link rel="alternate" media="handheld" href="http://sendtothisurl.com" />
          this tells google mobile search that the other url is the mobile version.

          In addition to this, I add the following javascript for iPhone and iPod.
          PHP Code:
          <script language=javascript>
          <!--
          if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
          {
          location.href='http://thisurl.com';
          }
          -->
          </script> 
          
          .. to be continued...

          Comment

          • spacedog
            Yes that IS me. Bitch.
            • Nov 2001
            • 14149

            #6
            too many chars for me to post the other codes.. but there's no shortage of systems that work.

            Juggcash gives you the code, so don't topbucks and revshare it

            Comment

            • spacedog
              Yes that IS me. Bitch.
              • Nov 2001
              • 14149

              #7
              Oh.. this in .htaccess too.

              Code:
              RewriteCond %{HTTP_ACCEPT} text/vnd.wap.wml
              RewriteCond %{REQUEST_URI} !^/mobile
              RewriteRule ^/?(.*)$ http://thisurl.com [L]

              Comment

              • st0ned
                Confirmed User
                • Mar 2007
                • 8437

                #8
                Thanks for sharing the info spacedog, much appreciated.
                Conversion Sharks - 1,000+ adult dating offers, traffic management, and consistently high payouts.
                We will guarantee and beat your current EPC to win your dating traffic!
                Skype: ConversionSharks || Email: info /@/ conversionsharks.com

                Comment

                • Sly
                  Let's do some business!
                  • Sep 2004
                  • 31379

                  #9
                  Originally posted by spacedog
                  too many chars for me to post the other codes.. but there's no shortage of systems that work.

                  Juggcash gives you the code, so don't topbucks and revshare it
                  I think you meant that we do give you the code. :-)

                  At Top Bucks we do redirect your mobile traffic, but we redirect it to our mobile sites with your affiliate code so that you still get credit. To anyone sending traffic to TB, check your stats, I'm betting that you have mobile sales with us and didn't even realize it.
                  Vacares - Web Hosting, Domains, O365, Security & More - Paxum and BTC Accepted

                  Windows VPS now available
                  Great for TSS, Nifty Stats, remote work, virtual assistants, etc.
                  Click here for more details.

                  Comment

                  • dav3
                    Confirmed User
                    • May 2007
                    • 7348

                    #10
                    Hey man, thanks a lot!
                    Webmasters :: Juicy Ads :: ACWM :: Crak Revenue :: Money Tree

                    Comment

                    • spacedog
                      Yes that IS me. Bitch.
                      • Nov 2001
                      • 14149

                      #11
                      Originally posted by Sly
                      I think you meant that we do give you the code. :-)

                      At Top Bucks we do redirect your mobile traffic, but we redirect it to our mobile sites with your affiliate code so that you still get credit. To anyone sending traffic to TB, check your stats, I'm betting that you have mobile sales with us and didn't even realize it.

                      That's what I said, that you give the code.

                      As for redirecting and giving credit, what I was talking about was programs that don't have mobile sites and send mobile/iphone traffic that affiliates send to them off to brazzersmobile or ipinkpass, etc.

                      Naturally Topbucks sends affiliates mobile traffic to their mobile pages, same as juggcash, teencash, nastydollars, etc do. and that's a good thing.

                      Comment

                      • Agent 488
                        Registered User
                        • Feb 2006
                        • 22511

                        #12
                        thanks for the heads up spacedog. just noticing some of my sponsors have been redirecting traffic on a site of mine that is pretty much 100% iphone traffic.

                        Comment

                        • Snake Doctor
                          I'm Lenny2 Bitch
                          • Mar 2001
                          • 13449

                          #13
                          Originally posted by spacedog
                          This traffic 99.9% of the time is incapable of viewing your site on a mobile device and more to the point, you're losing money by doing nothing with it.

                          Bet your ass that many affiliate programs and sponsors are making BANK off YOUR MOBILE AND IPHONE TRAFFIC and they're giving you NOTHING FOR IT!!!!
                          If this mobile traffic is incapable of viewing my site 99.9% of the time, how are the sponsors MAKING BANK off of my mobile traffic that can't see my site and by extension, view or click on my ads?

                          What a tool.
                          sig too big

                          Comment

                          • quantum-x
                            Confirmed User
                            • Feb 2002
                            • 6863

                            #14
                            Hit up Biggy from FYC.
                            They've got a mobile solution in beta that is incredible.
                            PrettyInCash.com - BoozedGFs.com - TeenGFs.com - JizzGFs.com- MilfUploads.com -

                            Comment

                            • GTS Mark
                              Vrume Mark
                              • Jan 2001
                              • 20912

                              #15
                              Hey guys, we're buying up mobile traffic. Hit me up if you're selling

                              Comment

                              • spacedog
                                Yes that IS me. Bitch.
                                • Nov 2001
                                • 14149

                                #16
                                Originally posted by DrinkingHARDEST
                                Hey guys, we're buying up mobile traffic. Hit me up if you're selling
                                Not unless you're paying $1+ per click

                                Comment

                                • spacedog
                                  Yes that IS me. Bitch.
                                  • Nov 2001
                                  • 14149

                                  #17
                                  Originally posted by Snake Doctor
                                  If this mobile traffic is incapable of viewing my site 99.9% of the time, how are the sponsors MAKING BANK off of my mobile traffic that can't see my site and by extension, view or click on my ads?

                                  What a tool.
                                  You're the fucking tool you douchebag. As usual you can't comprehend the subject at hand.

                                  Do you have an iPhone you screwball? Load your goddamn site in it and see what it looks like. It certainly loads, but not as intended. You know goddamn well what the fuck I'm talking about but choose to twist things as usual for another cheap shot for trolling.

                                  Comment

                                  • BVF
                                    Black Vagina Finder
                                    • Jan 2002
                                    • 13975

                                    #18
                                    Originally posted by spacedog
                                    You're the fucking tool you douchebag. As usual you can't comprehend the subject at hand.

                                    Do you have an iPhone you screwball? Load your goddamn site in it and see what it looks like. It certainly loads, but not as intended. You know goddamn well what the fuck I'm talking about but choose to twist things as usual for another cheap shot for trolling.
                                    Mine loads as intended but I get what you're saying, which is to redirect the ipone traffic to a site that is geared specifically for ipones.

                                    Black Pussy
                                    Click On Mr Cosby..CCbill, 60/40, 136 FHG's....The Cos Loves Black Ghetto Pussy!!

                                    Comment

                                    • PR_Dave
                                      Confirmed User
                                      • Jul 2003
                                      • 2792

                                      #19
                                      spacedog, not sure what your issue with my programs are but we are not re-directing affiliate traffic to brazzers.

                                      brazzers did buy the TYPE-IN non-affiliate phone traffic on porn.com, this in no way affects affiliate traffic.

                                      Regardless, PimpRoll has a nice selection of mobile sites coming out, you won't need to do a thing, our sites will automatically re-format for a variety of phone browsers.

                                      Comment

                                      • Biggy
                                        Confirmed User
                                        • Jul 2001
                                        • 1595

                                        #20
                                        We can help educate you on the different kind of redirects and effectiveness. We have a tool already waiting and ready where you can upload your own logo to your own skin.

                                        Contact me privately: silverman {dot} adam (AT) gmail {...dot} com

                                        Comment

                                        • Agent 488
                                          Registered User
                                          • Feb 2006
                                          • 22511

                                          #21
                                          Originally posted by PR_Dave
                                          spacedog, not sure what your issue with my programs are but we are not re-directing affiliate traffic to brazzers.

                                          brazzers did buy the TYPE-IN non-affiliate phone traffic on porn.com, this in no way affects affiliate traffic.

                                          Regardless, PimpRoll has a nice selection of mobile sites coming out, you won't need to do a thing, our sites will automatically re-format for a variety of phone browsers.

                                          when i try and login to persignup i get an error message today. a heads up.

                                          Comment

                                          • HowlingWulf
                                            Confirmed User
                                            • Nov 2001
                                            • 1662

                                            #22
                                            When my mobile traffic clicks my affliate link to a Juggcash site (like Baby got Boobs), they're redirected to brazzersmobile without my affiliate code. Is that what you meant?
                                            WP Porn directory/review theme Maddos $35.

                                            webmaster AT howling-wulf.com

                                            Comment

                                            • Roald
                                              SecretFriends.com
                                              • May 2001
                                              • 27910

                                              #23
                                              Originally posted by PR_Dave
                                              spacedog, not sure what your issue with my programs are but we are not re-directing affiliate traffic to brazzers.

                                              brazzers did buy the TYPE-IN non-affiliate phone traffic on porn.com, this in no way affects affiliate traffic.

                                              Regardless, PimpRoll has a nice selection of mobile sites coming out, you won't need to do a thing, our sites will automatically re-format for a variety of phone browsers.

                                              thnks for clearing that up, I was worried for half a sec there.


                                              WE ARE BUYING PAY SITES! CONTACT ME



                                              ClubSweethearts | ManUpFilms | SinfulXXX | HOT * AdultPrime * HOT


                                              Paying webmasters since 1996! Contact: r.riepen @ sansylgroup.com | telegram: roaldr

                                              Comment

                                              Working...