Whats the best solution for this? I'm going to try submitting a movie gallery instead of picture galleries to see if it converts any better. I know my htaccess wont work so what should i use?
Hotlink protection on movies
Collapse
X
-
Movies convert better than pics. Also, ask Juicy for the a script. He posted the zip file a few months back after he got pissed off at the company. lol -
Originally posted by FreeHugeMovies
Movies convert better than pics. Also, ask Juicy for the a script. He posted the zip file a few months back after he got pissed off at the company. lol
one sec let me get the urlComment
-
-
-
Thank you juicy I didnt have it
Comment
-
i cant believe what im seeing
theft
i dont care what happened it does not justify this
its still stealing
Pioneer of .TV domains
Grandfather of .TV development
Respected among industry LEADERSComment
-
Cheers for the link Juicy!! helpful
Comment
-
classic thread to show what kind of ppl are here
Pioneer of .TV domains
Grandfather of .TV development
Respected among industry LEADERSComment
-
Relax here.. this script doesnt work (unless you can twist it up a bit) so dont get too excited.
Get anti-hotlinking
Comment
-
-
-
The simpliest way to prevent movie hotlinking is just to place a "set cookie" java script code into your gallery page and use RewriteCond %{HTTP_COOKIE} directive in the htaccess. As far as I know it works with any browser that supports cookies.Comment
-
im sure a bunch of tgps have js bannedOriginally posted by Phoenix66
The simpliest way to prevent movie hotlinking is just to place a "set cookie" java script code into your gallery page and use RewriteCond %{HTTP_COOKIE} directive in the htaccess. As far as I know it works with any browser that supports cookies.I host with VacaresComment
-
Originally posted by integrated
i cant believe what im seeing
theft
i dont care what happened it does not justify this
its still stealing
Stick a cork in itComment
-
ok heres a simple way , feel free to modify it..
Save the following as index.php and put it in a folder with your videos
( if your using mpg/avi videos change the code to mpg/avi in both files)Code:<?php $mov = $_GET['x']; echo "<center><embed src=$mov.wmv></embed>"; ?>
ok now make a new folder in your main directory, save the following as .htaccess ( modify the url to point to the directory with your videos )
ok now what this will do is , when you call a video or someone hotlinks a video it will call the video and display it in an html page so you can add advertising and such..Code:Options +FollowSymlinks RewriteEngine on RewriteRule ^(.*)\.wmv http://yoursite.com/videos/index.php?x=$1 [nc]
Now keep in mind this doesnt actually prevent hotlinking all it does is rewrite the request to a different folder , so if you try to get http://yourserver.com/protected/video.wmv it would get the video from a different folder and write it into an html file.. the end video is still unprotected , so if someone views source of the html they can simply get the redirected movie url
BUT heres what you do.. you can simply rename the folder with your protected videos then change the .htaccess file to reflect that every so often , you dont have to change any of your links as they will just be redirected to the new folder without any changes on your partLast edited by SmokeyTheBear; 02-28-2006, 07:10 AM.hatisblack at yahoo.comComment
-
if you have trouble installing it just let me know ( p.s. personally i think this is better than true protection because it allows you to profit from any hotlinkinghatisblack at yahoo.comComment
-
theres anothr thread on this topic i went into more details about how to do it so mgp's will accept it.. try a searchOriginally posted by mrsmutBut this would not be accepted by MGP sites, their scripts will see a file with few bytes, algo for people whose browsers open the video player when clicking the link, because video player doesn't understand htmlhatisblack at yahoo.comComment


Comment