Text Link Ads
Free Website Marketing! Try Hotlinked-Image
Wednesday May 24th 2006, 5:01 am
Filed under: Related, Original Article

More often than not, a great deal of efforts is put to write articles. Doesn’t it just piss you off when you see them appear on other sites without your knowledge?

I don’t mind if they quote a portion of it, and link it back to the original article. In fact, I’ll even encourage that. Call it ethics, or manners, that’s how Internet is supposed to work.

But no. These people just copy the whole chunk outright, and don’t even bother to give a link back to your site. Some will even go as far as claiming it as their own. Worse even, Google might rank them higher for the same content, the very article they steal from you.

For the past few days I have spent some time tracking contents stolen from my site. Some sites I emailed to are very cooperative, but not all of them are.

This picture below shows post by a forum owner using content from here.

before.jpg

I’m still looking for some ways to solve this as quickly as possible, specially those that also hotlink directly to the images. Not only they use my contents, but also my server bandwidth. So, what should I do? For now, I only think of one thing. At least this will give me some time to cool down while looking around for solution.

after.jpg

I changed the file name of the pictures and change my article to link it back. Then, I created some picture promoting my website and name it according to the original filename. This way, sites that hotlink to the image will display these new pictures. And I get some free marketing.

Adios

Related entries:

If you like this story, bookmark it here:
 del.icio.us |  digg |  reddit |  furl |  spurl |  googlekicks
 scurj |  ma.gnolia |  newsvine |  google |  yahoo


12 Comments so far
Leave a comment

What you should do is provide your picture via a php script. If the request is your site, show your content otherwise show the ad. You can do this only if the REFERER have been accessing your site more than a few time, so the person linking does not even know about it :)

Comment by Thomas 05.24.06 @ 5:31 am

You’re still picking up the bandwidth bill though. Another approach is to edit your server’s .htaccess file to just refuse the image request from someone else’s server.

Comment by Sean 05.24.06 @ 5:36 am

That’s a good idea, but you could also use your .htaccess file to prevent things from being hotlinked as well, and than use one generic image to be shown on the hotlinking sites. This is a artivle on it if you are hosted on a linux server and have apache …(http://underscorebleach.net/jotsheet/2004/11/stop-image-hotlinking-tutorial-htaccess-apache)

Comment by Lindsey 05.26.06 @ 1:16 am

One way you can get around this is to serve your images via PHP script. The PHP script would check the domain of the referring page, and if it is adsensecheats.com, it would serve the image fine. But if the domain is something else, it would either display a generic ‘adsensecheats.com’ image, or else it would display a ‘branded’ copy of the image (this could be done dynamically).

I haven’t actually done this myself, but I have heard of it being done, and it was a topic I researched while working on an image repository and training system for Children’s Hospital of Michigan.

Hope this helps.

Comment by Josh Zerin 05.27.06 @ 5:05 am

Hi, thanks all.
I’m going to try the php script thingy, but I’m new in php, so might take some time to learn.

Comment by Fernando Hal 05.27.06 @ 11:51 pm

I’ve had a similar experience, but decided to use another approach, to shame the guy into submission. I tried contacting friendster.com, but have yet to recieve a response.

I posted about it here: http://www.koudal.dk/hotlink-revenge-dont-steal-bandwidth

Comment by Lars Koudal 06.01.06 @ 5:12 am

Actually that article was posted by my friend on http://www.thila.ropage.com/ and he informed me about this article
and than i posted that article on http://desi-tek.com . I was not aware about the origin of the content. i just modified that article and added your name and your site url in source. And i apologise for not adding source as i was not aware.

Comment by Cracker 06.11.06 @ 5:15 pm

and codding it with php is not a complete sollution as any 1 can save that page upload images on any image hosting site and than any body can publish it on that site.

Comment by Cracker 06.11.06 @ 5:19 pm

i mean their site :)

Comment by Cracker 06.11.06 @ 5:20 pm

serving them your ads and paying for the bandwidth isn’t so bad at all. Since I did it on MySpace accounts who were sucking my bandwidth by hotlinking to images my traffic has increased somewhat significantly…

i just never liked paying for their visual enjoyment lol.

Great stuff, one more for the good guys :) Dont’ get even get advertising.

Comment by nortypig 06.15.06 @ 6:49 pm

use a .htaccess file - much easier. eg:


RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?YOURWEBSITE\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?SOMEALLOWEDWEBSITE\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/blogpics/bandwidththeft.jpe [L]

The first line obviously means you don’t block your own site, the second is an example of adding another website to allow them to hotlink your images, and that last line determines which type of files are blocked and the image that is displayed instead when someone tries to hotlink one of those files (note extension is .jpe).

Save this file as .htaccess (yes, it starts with a .) and place it in your main directory - anything in that directory (including other directories within it) will be dealt with.

Comment by demonsurfer 09.02.06 @ 1:55 pm

bah.. didn’t display very well. first line:
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?YOURWEBSITE\.com/ [NC]

next line:
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?SOMEALLOWEDWEBSITE\.com/ [NC]

next line:
RewriteCond %{HTTP_REFERER} !^$

next line:
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /path relative to htaccess file/ALTERNATEIMAGE.jpe [L]

Comment by demonsurfer 09.02.06 @ 2:01 pm



Leave a comment
Line and paragraph breaks automatic, e-mail address never displayed, HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>

(required)

(required)




© CheatAd !. Developed and maintained by Soul Voyage Interactive
Syndicate entries using RSS and Comments (RSS).
This theme contains valid XHTML and CSS.