you could use an antileech script, but that can be cracked within a second, no matter how good it is. the best solution is to use a script which changes the url every day, like on www.cdrsoft.cc or to set up the server in such a way that it intercepts all calls and checks the referrer. can be done in the configuration or in the .htaccess file:
AuthUserFile /dev/null
AuthGroupFile /dev/null
RewriteEngine On
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://127.0.0.1:81/.*$ [NC]
ReWriteRule .*\.(jpg|gif|zip)$ http://127.0.0.1:81/403.html [R,L]
this will allow download only from localhost, port 81. simply change this to your site's ip/name/port. this requires that your server supports this.


LinkBack URL
About LinkBacks


Reply With Quote
