GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Hot Linking (https://gfy.com/showthread.php?t=394721)

Ecksent 11-27-2004 02:35 PM

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??!!!

UltraSonic 11-27-2004 02:35 PM

Use .htaccess or buy any anti hotlink script

jimmyf 11-27-2004 02:42 PM

Quote:

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

Ecksent 11-27-2004 02:43 PM

That would be a neagtive. Still learning the ropes. Any help is appericated. Thanks.

Fake Nick 11-27-2004 02:43 PM

what do you mean by ALL 10 gigs ? ? you have only 10 gigs avail a month ??? :1orglaugh :1orglaugh :1orglaugh

Ecksent 11-27-2004 02:45 PM

Yep.

Ray@TastyDollars 11-27-2004 02:45 PM

Quote:

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

SinSational 11-27-2004 02:47 PM

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

fantasycall 11-27-2004 02:48 PM

Quote:

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.

jimmyf 11-27-2004 02:56 PM

Quote:

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 :Graucho

jimmyf 11-27-2004 02:58 PM

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

jimmyf 11-27-2004 03:00 PM

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

jukeboxfrank 11-27-2004 03:33 PM

if on a IIs then this link is cool try this

Ecksent 11-28-2004 01:42 AM

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.

Aquarius 11-28-2004 01:46 AM

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

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

Jace 11-28-2004 01:48 AM

Quote:

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

xlogger 11-28-2004 01:48 AM

Quote:

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? :winkwink:



j/k :1orglaugh

Ecksent 11-28-2004 01:56 AM

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......

Fizzgig 11-28-2004 02:08 AM

Quote:

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. :)

Red Ezra 11-28-2004 05:19 AM

great thread - thanks!

Jace 11-28-2004 05:27 AM

Quote:

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

Ecksent 11-28-2004 10:16 AM

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!!!

Pornopat 11-28-2004 10:22 AM

Quote:

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.
:glugglug

sean416 11-28-2004 10:28 AM

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

Ecksent 12-01-2004 02:19 PM

Quote:

Originally posted by Pornopat
They might have cancelled your hosting.
You sig shows a red x.
:glugglug

That's because my bandwith was all used up. * See topic of this thread *


All times are GMT -7. The time now is 05:08 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123