Hiding url, HOW? ( script question )

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Sid70
    Downshifter
    • Dec 2002
    • 16413

    #1

    Hiding url, HOW? ( script question )

    well, im not saying surfers become that smart they can eliminate your nats link to cut your coin, but anyhow, is there ANY SCRIPT TO HIDE THE URL where user is being sent?

    Thanks.
    Русня, идите нахуй!
  • Your Mothers Secret
    Confirmed User
    • Jul 2005
    • 240

    #2
    Hello
    um,,,,check out the yellow link from a top notch company

    Comment

    • AnniKN
      Confirmed User
      • Feb 2008
      • 1682

      #3
      I made a quite simple custom one, it also counts click - you DO have to enter the link on the database and then used the link with that variable but if this is sort of what you're looking for just hit me up.

      Comment

      • ClickBuster
        Confirmed User
        • May 2004
        • 210

        #4
        Best thing to do is to use some redirect script. So instead of linking to

        http://sponsor.com/tracking_code

        you link to

        http://yoursite.com/sponsor_name

        which redirects to the first link above. I can set you up with a very simple script to do that very cheap. I use it on my site http://extramilf.com/blog check every sponsor link to see where it goes
        -- ClickBuster
        -- ICQ# 263653704
        -- Email: clickbuster1 [-at-] gmail [-dot-] com

        Comment

        • SmokeyTheBear
          ►SouthOfHeaven
          • Jun 2004
          • 28609

          #5
          Originally posted by Your Mothers Secret
          Hello
          um,,,,check out the yellow link from a top notch company
          isn't this a bit misleading ?

          "Whether your visitor clicks on your affiliate link or not


          As long as s/he buys the product after visiting your website


          Even if s/he makes a purchase from that site a few days or months later"

          Can you explain to us how i get a sale months later if my sponsor doesn't use cookies to track sales ?
          hatisblack at yahoo.com

          Comment

          • AnniKN
            Confirmed User
            • Feb 2008
            • 1682

            #6
            Originally posted by AnniKN
            I made a quite simple custom one, it also counts click - you DO have to enter the link on the database and then used the link with that variable but if this is sort of what you're looking for just hit me up.
            Errr, this is for free obvs - but needs MySQL (has admin panel)

            Comment

            • directfiesta
              Too lazy to set a custom title
              • Oct 2002
              • 30135

              #7
              click on the bottom link in my sig ... text file, no mysql needed.

              if you like, I can post the code.
              I know that Asspimple is stoopid ... As he says, it is a FACT !

              But I can't figure out how he can breathe or type , at the same time ....

              Comment

              • AnniKN
                Confirmed User
                • Feb 2008
                • 1682

                #8
                Nice one directfiesta although this is not my thread, if you could post it I would appreciate it - thank you!

                Comment

                • Sid70
                  Downshifter
                  • Dec 2002
                  • 16413

                  #9
                  Originally posted by directfiesta
                  click on the bottom link in my sig ... text file, no mysql needed.

                  if you like, I can post the code.
                  interesting... so it changes real link into /basic_hosting... does it affect browser url line only? I mean still a CLICK surfer did was redirected correctly?
                  Русня, идите нахуй!

                  Comment

                  • SayWhut
                    Confirmed User
                    • Jan 2008
                    • 962

                    #10
                    Fuck that use search and user friendly urls:-

                    http://www.derekbeau.com/how-to-hide...only-one-file/

                    Comment

                    • directfiesta
                      Too lazy to set a custom title
                      • Oct 2002
                      • 30135

                      #11
                      Originally posted by AnniKN
                      Nice one directfiesta although this is not my thread, if you could post it I would appreciate it - thank you!

                      you need to create a link.php file ( or name it whatever you want ) and upload on your site:

                      PHP Code:
                      <?PHP
                      
                      if ($o == "l1") {$link = "http://www.lunarpages.com/id/my_id";} // Default link
                      if ($o == "l2") {$link = "http://www.yahoo.com";}
                      if ($o == "l3") {$link = "http://forums.digitalpoint.com";}
                      if ($o == "l4") {$link = "http://blog.findinforums.com";}
                      
                      header("Location: $link"); // Jump to the hiddden affiliate URL above
                      exit();
                      ?>
                      then you put your link in your page(s) like:

                      http://www.mydomain.com/links.php?o=l1 ( goes to lunarpages )
                      http://www.mydomain.com/links.php?o=l2 ( goes to yahoo )
                      etc ....

                      easy, no db ....
                      I know that Asspimple is stoopid ... As he says, it is a FACT !

                      But I can't figure out how he can breathe or type , at the same time ....

                      Comment

                      • AnniKN
                        Confirmed User
                        • Feb 2008
                        • 1682

                        #12
                        Cool! :w00t:

                        I am ironically sucky at php yet good at databases so this was of great help *takes note and learns*

                        Comment

                        • Sid70
                          Downshifter
                          • Dec 2002
                          • 16413

                          #13
                          thanks me for this good thread, LOL. THank you fellas.
                          Русня, идите нахуй!

                          Comment

                          • fuzzylogic
                            Confirmed User
                            • Jun 2004
                            • 4796

                            #14
                            Originally posted by directfiesta
                            you need to create a link.php file ( or name it whatever you want ) and upload on your site:

                            PHP Code:
                            <?PHP
                            
                            if ($o == "l1") {$link = "http://www.lunarpages.com/id/my_id";} // Default link
                            if ($o == "l2") {$link = "http://www.yahoo.com";}
                            if ($o == "l3") {$link = "http://forums.digitalpoint.com";}
                            if ($o == "l4") {$link = "http://blog.findinforums.com";}
                            
                            header("Location: $link"); // Jump to the hiddden affiliate URL above
                            exit();
                            ?>
                            then you put your link in your page(s) like:

                            http://www.mydomain.com/links.php?o=l1 ( goes to lunarpages )
                            http://www.mydomain.com/links.php?o=l2 ( goes to yahoo )
                            etc ....

                            easy, no db ....

                            thanks for the code, but it doesnt seem to work for me. all i get is a white page after clicking a link using your code example unaltered.

                            any other suggestions for cloaking affiliate links?

                            Comment

                            • Varius
                              Confirmed User
                              • Jun 2004
                              • 6890

                              #15
                              I would just use an apache redirect line in the vhost.
                              Skype variuscr - Email varius AT gmail

                              Comment

                              • directfiesta
                                Too lazy to set a custom title
                                • Oct 2002
                                • 30135

                                #16
                                I just took out that the link using this of my sig ... People were confusing lunarpages with me ...

                                Let me check the script somewhere on my hd...
                                I know that Asspimple is stoopid ... As he says, it is a FACT !

                                But I can't figure out how he can breathe or type , at the same time ....

                                Comment

                                • Iron Fist
                                  Too lazy to set a custom title
                                  • Dec 2006
                                  • 23400

                                  #17
                                  .htaccess redirects will take care of this easily...

                                  Code:
                                  RewriteEngine on
                                  Options +FollowSymlinks
                                  RewriteRule ^go/modelsite/  http://refer.ccbill.com/cgi-bin/............. [R=301,NC]
                                  and just add more rewriterule lines for the domain you want to redirect URLs on!

                                  So in the example above, if my domain was "redirect.com" the URL would be

                                  http://www.redirect.com/go/modelsite/

                                  and it would automatically direct the surfer to http://refer.ccbill.com/cgi-bin/..........

                                  and of course, CCBILL would redirect after setting the cookie to the site - looks seemless to the surfer.

                                  Enjoy.
                                  i like waffles

                                  Comment

                                  • BSleazy
                                    Confirmed User
                                    • Aug 2002
                                    • 6721

                                    #18
                                    I've been looking for something like this that will count clicks to affiliate programs too so I can compare them.
                                    icq 156131086

                                    Comment

                                    • Adult Creative Labs
                                      Confirmed User
                                      • Jul 2008
                                      • 221

                                      #19
                                      Nice script right there.
                                      .



                                      ICQ: 498299527
                                      Email: sales -at- adultcreativelabs.com

                                      Comment

                                      • Lace
                                        Too lazy to set a custom title
                                        • Mar 2004
                                        • 16116

                                        #20
                                        bump this up
                                        Your Paysite Partner
                                        Strength In Numbers!
                                        StickyDollars | RadicalCash | KennysPennies | HomegrownCash

                                        Comment

                                        Working...