Click to See Complete Forum and Search --> : how to protect against download


bull
03-27-2007, 08:53 AM
tools available..
www.surfoffline.com
www.httrack.com
www.spidersoft.com
www.tenmax.com/teleport/pro/home.htm
.. and probably more.

how to protect web page against download for offline use?

EPJS
03-27-2007, 11:10 AM
Well you have to know the name of the spider those bots use, for example the httract one is actually named "httract", so in .htaccess put something like this:

RewriteCond %{HTTP_USER_AGENT} HTTrack
RewriteRule ^.* - [F,L]

Weedpacket
03-27-2007, 05:43 PM
...and hope that the user doesn't change the user-agent string.

etully
03-27-2007, 05:55 PM
Put Ajax in the page so that either (A) the page is incomplete offline or (B) the page doesn't even begin to function offline.

Of course, the broader question is, why would you care if someone views it offline? Isn't it a good thing that they are viewing your page at all?

And to get technical about it, a web browser downloads stuff first and then displays it "offline" so technically, to protect against downloading and offline browsing, the only solution is to delete your web page from the Internet now.

EPJS
03-27-2007, 09:11 PM
Those site downloader things rape your bandwidth though.

bull
03-28-2007, 09:22 AM
thanks for your answers.