Hot Linking

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Ecksent
    Confirmed User
    • Nov 2004
    • 1415

    #1

    Hot Linking

    Is there a way to stop someone from hotlinking pictures on your site? Someone did this to me and used up ALL 10 gigs in one day. WTF??!!!
    Anyone wanna sig spot.......cheap????
  • UltraSonic
    Confirmed User
    • Jul 2004
    • 1728

    #2
    Use .htaccess or buy any anti hotlink script
    Your Blend, Your Product

    Comment

    • jimmyf
      OU812
      • Feb 2001
      • 12651

      #3
      Originally posted by Ecksent
      Is there a way to stop someone from hotlinking pictures on your site? Someone did this to me and used up ALL 10 gigs in one day. WTF??!!!
      do you know what .htaccess is and how 2 make one
      Epic CashEpic Cash works for me
      Solar Cash Paysite Plugin
      Gallery of the day freesites,POTD,Gallery generator with free hosting

      Comment

      • Ecksent
        Confirmed User
        • Nov 2004
        • 1415

        #4
        That would be a neagtive. Still learning the ropes. Any help is appericated. Thanks.
        Anyone wanna sig spot.......cheap????

        Comment

        • Fake Nick
          So Fucking Banned
          • Jul 2004
          • 7708

          #5
          what do you mean by ALL 10 gigs ? ? you have only 10 gigs avail a month ???

          Comment

          • Ecksent
            Confirmed User
            • Nov 2004
            • 1415

            #6
            Yep.
            Anyone wanna sig spot.......cheap????

            Comment

            • Ray@TastyDollars
              • May 2002
              • 6797

              #7
              Originally posted by Ecksent
              That would be a neagtive. Still learning the ropes. Any help is appericated. Thanks.
              If by Monday you have not resolved your problem, ICQ me (in sig) and I'll write one for you. Cant do it on the weekend, to busy.

              Yes...for free. It like like 30 seconds.

              Ray

              Comment

              • SinSational
                Confirmed User
                • Oct 2004
                • 1723

                #8
                Options +FollowSymlinks
                RewriteEngine on
                RewriteCond %{HTTP_REFERER} !^$
                RewriteCond %{HTTP_REFERER} !^http://(www\.)?216.xxx.xx.xx(/)?.*$ [NC]
                RewriteCond %{HTTP_REFERER} !^http://(www\.)?mydomain.com(/)?.*$ [NC]
                RewriteCond %{HTTP_REFERER} !^http://(www\.)?myotherdomain.com(/)?.*$ [NC]
                RewriteRule .*\.(gif|jpg|jpeg|bmp)$ http://www.mydomain.com [R,NC]

                the rewritecond allows you to specify what domains can link the images
                the rewriterule redirects them.

                the hahaha123 are supposed to be brackets

                http://www.htmlbasix.com/disablehotlinking.shtml
                Last edited by SinSational; 11-27-2004, 12:48 PM.

                ICQ# 273099174 - monthly specials - 2 Month Free Credit on All Plans - 100% Referrals - chris@ for details
                Virtual from $14.95/month, Dedicated from $149.95/month
                Dual-Core Xeon > 1000GB @ $149.95 | 1500GB @ $169.95 | 10Mbps @ $269.95

                Comment

                • fantasycall
                  Registered User
                  • Nov 2004
                  • 72

                  #9
                  Originally posted by jimmyf
                  do you know what .htaccess is and how 2 make one
                  http://httpd.apache.org/docs/howto/htaccess.html

                  If you check your traffic files you can quite easily find which site(s) are hotlinking your images as well. Just send them a nasty email and chances are they'll remove the link ...

                  I've found many times photos are hotlinked from a message board in India or something. In this case after the thread gets buried the hits will slowly stop coming.
                  Adult Video Chat Reviews

                  PussyCash pays $100 per ImLive signup

                  Comment

                  • jimmyf
                    OU812
                    • Feb 2001
                    • 12651

                    #10
                    Originally posted by fantasycall
                    http://httpd.apache.org/docs/howto/htaccess.html

                    If you check your traffic files you can quite easily find which site(s) are hotlinking your images as well. Just send them a nasty email and chances are they'll remove the link ...

                    I've found many times photos are hotlinked from a message board in India or something. In this case after the thread gets buried the hits will slowly stop coming.
                    i don't need it
                    Epic CashEpic Cash works for me
                    Solar Cash Paysite Plugin
                    Gallery of the day freesites,POTD,Gallery generator with free hosting

                    Comment

                    • jimmyf
                      OU812
                      • Feb 2001
                      • 12651

                      #11
                      be sure when you FTP it you do it in ascii or you will screw it up

                      AuthGroupFile /dev/null
                      AddHandler server-parsed .html
                      RewriteEngine On
                      RewriteCond %{HTTP_REFERER} !^$
                      RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://yourdomain.com/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com:80/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://yourdomain.com:80/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://XXX.XX.XXX.XXX/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://XXX.XX.XXX.XXX:80/.*$ [NC]
                      RewriteRule .*\.jpg$ http://www.yourdomain.com [R,L]

                      RewriteCond %{HTTP_REFERER} !^$
                      RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://yourdomain.com/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://www.yourdomain.com:80/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://yourdomain.com:80/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://XXX.XX.XXX.XXX/.*$ [NC]
                      RewriteCond %{HTTP_REFERER} !^http://XXX.XX.XXX.XXX:80/.*$ [NC]
                      RewriteRule .*\.gif$ http://www.yourdomain.com [R,L]
                      ErrorDocument 404 http://www.yourdomain.com/or sponsor Epic cash 404 traffic
                      ErrorDocument 302 http://www.yourdomain.com/or sponsor Epic cash 404 traffic
                      ErrorDocument 400 http://www.yourdomain.com/or sponsor Epic cash 404 traffic
                      ErrorDocument 401 http://www.yourdomain.com/or sponsor Epic cash 404 traffic
                      ErrorDocument 403 http://www.yourdomain.com/or sponsor Epic cash 404 traffic
                      ErrorDocument 500 http://www.yourdomain.com/or sponsor Epic cash 404 traffic
                      Epic CashEpic Cash works for me
                      Solar Cash Paysite Plugin
                      Gallery of the day freesites,POTD,Gallery generator with free hosting

                      Comment

                      • jimmyf
                        OU812
                        • Feb 2001
                        • 12651

                        #12
                        icq me and i will give you one or email it 2 you

                        can't post it on this board... take out some char's and puts in hahahaha
                        Last edited by jimmyf; 11-27-2004, 01:01 PM.
                        Epic CashEpic Cash works for me
                        Solar Cash Paysite Plugin
                        Gallery of the day freesites,POTD,Gallery generator with free hosting

                        Comment

                        • jukeboxfrank
                          Confirmed User
                          • Apr 2004
                          • 1207

                          #13
                          if on a IIs then this link is cool try this


                          ICQ= 231-182-592

                          Comment

                          • Ecksent
                            Confirmed User
                            • Nov 2004
                            • 1415

                            #14
                            Hey guys I appericate all your help. I found out where it was coming from, so I sent him a pretty nasty e-mail. Hopefully that will settle things down. Thanks again.
                            Anyone wanna sig spot.......cheap????

                            Comment

                            • Aquarius
                              Confirmed User
                              • May 2004
                              • 4754

                              #15
                              Take a look here
                              http://www.javascriptkit.com/howto/htaccess.shtml

                              btw... I don't think a nasty email will be enough.

                              Comment

                              • Jace
                                FBOP Class Of 2013
                                • Jan 2004
                                • 35562

                                #16
                                Originally posted by Ecksent
                                Hey guys I appericate all your help. I found out where it was coming from, so I sent him a pretty nasty e-mail. Hopefully that will settle things down. Thanks again.
                                try slapping him on the wrist next time, i hear that works better

                                seriously, what do you mean by ALL 10 gigs?

                                regardless, you are getting ripped off

                                Comment

                                • xlogger
                                  Confirmed User
                                  • Jul 2004
                                  • 9507

                                  #17
                                  Originally posted by Ecksent
                                  Hey guys I appericate all your help. I found out where it was coming from, so I sent him a pretty nasty e-mail. Hopefully that will settle things down. Thanks again.

                                  want me to DDoS him with my 5000 zombies?



                                  j/k

                                  ----------
                                  XLOGGER [REFLECTED] [OH]

                                  Comment

                                  • Ecksent
                                    Confirmed User
                                    • Nov 2004
                                    • 1415

                                    #18
                                    LOL....nice! Jace, you know I'm not a big time playa yet like you. HA! That's all I need for the moment. This webmaster thing will take time, so I'll hook it up when the time is right. What is a normal bandwith limit anyways? At the risk of looking like an ass......
                                    Anyone wanna sig spot.......cheap????

                                    Comment

                                    • Fizzgig
                                      Registered User
                                      • Feb 2004
                                      • 9649

                                      #19
                                      Originally posted by Ecksent
                                      Is there a way to stop someone from hotlinking pictures on your site? Someone did this to me and used up ALL 10 gigs in one day. WTF??!!!
                                      Try h2oh-hosting.com

                                      75 gigs of bandwidth a month for about $13 ...

                                      And use .htaccess, of course.
                                      ---'-,-{@ Sassy Grrrl @}-'-,---

                                      Comment

                                      • Red Ezra
                                        redezra.com
                                        • May 2004
                                        • 4678

                                        #20
                                        great thread - thanks!

                                        Comment

                                        • Jace
                                          FBOP Class Of 2013
                                          • Jan 2004
                                          • 35562

                                          #21
                                          Originally posted by Ecksent
                                          LOL....nice! Jace, you know I'm not a big time playa yet like you. HA! That's all I need for the moment. This webmaster thing will take time, so I'll hook it up when the time is right. What is a normal bandwith limit anyways? At the risk of looking like an ass......
                                          dude, 10gb of hosting is nothing....you should not pay more than $4-5 a month for that

                                          on www.webair.com for example, you can get 50gb for $9.95...

                                          just FYI, an email will not get them to stop hotlinking...you will NEED the htaccess

                                          Comment

                                          • Ecksent
                                            Confirmed User
                                            • Nov 2004
                                            • 1415

                                            #22
                                            HA! Just got an email back apologizing for hotlinking. Still gonna use the .htaccess though. I'll look into some new hosting too. I think I'm getting screwed on th file transfer limit. Though my hosting hasn't billed me in 6 months. Suckers!!!
                                            Anyone wanna sig spot.......cheap????

                                            Comment

                                            • Pornopat
                                              AdultTubeSubmits.com
                                              • Dec 2003
                                              • 10598

                                              #23
                                              Originally posted by Ecksent
                                              Though my hosting hasn't billed me in 6 months. Suckers!!!
                                              They might have cancelled your hosting.
                                              You sig shows a red x.
                                              https://stripcash.com/sign-up/?userI...fff832eb95ab6a

                                              Comment

                                              • sean416
                                                Confirmed User
                                                • Feb 2004
                                                • 3633

                                                #24
                                                Great thread. I've been meaning to do up my htaccess but havent gotten around to it.

                                                ServerProvider.com

                                                Comment

                                                • Ecksent
                                                  Confirmed User
                                                  • Nov 2004
                                                  • 1415

                                                  #25
                                                  Originally posted by Pornopat
                                                  They might have cancelled your hosting.
                                                  You sig shows a red x.
                                                  That's because my bandwith was all used up. * See topic of this thread *
                                                  Anyone wanna sig spot.......cheap????

                                                  Comment

                                                  Working...