looking for script - any help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wild_jayx
    • Jul 2026

    #1

    looking for script - any help

    any script out there for members to grab there affiliate id or code everytime they download
  • Deej
    I make pixels work
    • Jun 2005
    • 24386

    #2
    to clarify, you want a script that will give credit to the affiliate every time their referred member orders/downloads something... such as a VOD site?

    Deej's Designs n' What Not
    Hit me up for Design, CSS & Photo Retouching


    Icq#30096880

    Comment

    • wild_jayx

      #3
      nope

      i want something working inside members area

      i want to see every member id that downloading clips and pics

      its simple like tracing every movement they do inside members area

      especially when they downloading clips and pics

      Comment

      • nation-x
        Confirmed User
        • Mar 2004
        • 5370

        #4
        There was one posted here the other day that places encrypted data in the content to identify the member who downloaded it.

        Comment

        • quantum-x
          Confirmed User
          • Feb 2002
          • 6863

          #5
          Originally posted by nation-x
          There was one posted here the other day that places encrypted data in the content to identify the member who downloaded it.
          Not sure he's referring to that nation-x.

          Jayx - a lot of CMS systems do this by default [CARMA, etc]

          If not, it wouldn't be hard at all to setup a wrapper to make it happen.

          IE, if you were linking normally to:

          /images/Set50/image1.jpg

          You could easily set it up to do:
          a]

          /images.php?path=Set50/image1.jpg
          Inside that image.php, log $_REQUEST['path'] and $_SERVER['PHP_USER_AUTH']

          Or do similar, but with http rewrites.

          NOTE: If you don't understand the security implications of the above arrangement, don't implement it yourself

          But with that said, you could do what you want in about.. 3 lines of code
          PrettyInCash.com - BoozedGFs.com - TeenGFs.com - JizzGFs.com- MilfUploads.com -

          Comment

          • StaceyJo
            Confirmed User
            • Mar 2008
            • 8960

            #6
            Good luck.
            /_______ WebCashMaker ______\
            | _TeenageDecadence - Young Board Naked Teens. |
            | ____ NonNudeGirls - Female Puberty Photos. ____ |
            | _ HerSelfPics - The ORIGINAL exGF SelfPic site. __ |
            \.______ xPosing - Wife Photosharing site. _______./

            Comment

            • wild_jayx

              #7
              thanks for the feed

              Originally posted by nation-x
              There was one posted here the other day that places encrypted data in the content to identify the member who downloaded it.

              can you still recall the thread?

              Comment

              • DannyA
                Registered User
                • Oct 2005
                • 85

                #8
                Database table like:

                downloaded_movie(member_id, movie_id, timestamp)

                would let you query which members downloaded a movie, what movies a member downloaded, most popular movies in total, most active members.

                If your movies have good info tagged, probably good for individual targeting like Adsense does.

                Comment

                • quantum-x
                  Confirmed User
                  • Feb 2002
                  • 6863

                  #9
                  Originally posted by wild_jayx
                  can you still recall the thread?
                  search for threads started by me, it's one of the top 5
                  PrettyInCash.com - BoozedGFs.com - TeenGFs.com - JizzGFs.com- MilfUploads.com -

                  Comment

                  • rhcp011235
                    Confirmed User
                    • Sep 2007
                    • 538

                    #10
                    If you are using nats. Just grab the php_auth_user then cross reference your members table in nats. Each time. If you are high traffic this will put a load on your server.
                    Skype rhcp011235 | Cell Phone 212.812.9043 | Email [email protected]

                    Comment

                    • wild_jayx

                      #11
                      i see

                      Originally posted by rhcp011235
                      If you are using nats. Just grab the php_auth_user then cross reference your members table in nats. Each time. If you are high traffic this will put a load on your server.

                      let me check this one


                      thanks

                      Comment

                      • rhcp011235
                        Confirmed User
                        • Sep 2007
                        • 538

                        #12
                        Nps. Glad i could help.

                        SQL:

                        Select loginid,username,password from members where username=$_SERVER['PHP_AUTH_USER']
                        Skype rhcp011235 | Cell Phone 212.812.9043 | Email [email protected]

                        Comment

                        • wild_jayx

                          #13
                          thanks bro

                          Originally posted by quantum-x
                          Free Video Anti Piracy / Download Script [In here]
                          A few things first:
                          #1 - I'm releasing this script under the MIT License. In a nutshell, you may copy it, change it, modify it, sell it, resell it - do whatever you want with it.

                          #2 - The code here is proven to work, verified (there's also a demo included).

                          #3 - I cannot support this code. This is why it is free. If you can work it into your sites, that's fantastic. If you want to work this into your CMS, even better. But please don't email or ICQ me asking how to make it work, can I integrate it, etc etc.

                          What it does
                          This script injects encrypted member information into your videos [avi & wmv in this release, but adding new formats is easy enough]. Videos still play as normal, work as normal etc. If they're opened in a hex editor, the information is not visible. You need the key to decrypt it [ie, no privacy problems]

                          Once in place, you can grab your videos off rapidshare, forums, etc etc, and pinpoint exactly who stole your content (username, time and date, original filename and IP)

                          What it doesn't do
                          It doesn't survive re-encoding to a tube [sorry!] - but will survive splitting, and often resizing

                          How it works
                          A lot of CMSs / Sites stream out the videos. This script watches while the video streams out, and injects the encoded information into the stream in the right place.

                          What it needs
                          PHP4/5

                          It doesn't take up too much overhead, but then again, it's probably not the most efficent thing ever.

                          Enough chatter: http://www.ninjito.com/VidProt-Final.zip

                          Now don't let me hear you complaining about having shit stolen again.

                          BTW, this was tested and proved to work in sitedepth and CARMA (both with some tweaking). We tracked Raven Riley content for over a year, and with it, killed a lot of stolen accounts, and also worked out who was stealing what.

                          i find your thread


                          cool script btw

                          Comment

                          • rhcp011235
                            Confirmed User
                            • Sep 2007
                            • 538

                            #14
                            Is this method using 'stego' Like many others?

                            Curious. I will download a read it.
                            Skype rhcp011235 | Cell Phone 212.812.9043 | Email [email protected]

                            Comment

                            • quantum-x
                              Confirmed User
                              • Feb 2002
                              • 6863

                              #15
                              Originally posted by rhcp011235
                              If you are using nats. Just grab the php_auth_user then cross reference your members table in nats. Each time. If you are high traffic this will put a load on your server.
                              Much better to log the data then batch it
                              PrettyInCash.com - BoozedGFs.com - TeenGFs.com - JizzGFs.com- MilfUploads.com -

                              Comment

                              • tranza
                                ICQ: 197-556-237
                                • Jun 2003
                                • 57559

                                #16
                                Bump for good scripts...
                                I'm just a newbie.

                                Comment

                                Working...