[PHP] protecting video files

2001-05-11 Thread Tim Schulte
Hi there - I am having some weird problems here. I am try to write a script that will check to see where a movie file is being called from. I want to define which web page I will allow a movie to be called from, and block all others. The script so far looks like this: The file gets called

Re: [PHP] protecting video files

2001-05-11 Thread Michael Kimsal
Check for extraneous spaces in your script. Tim Schulte wrote: Hi there - I am having some weird problems here. I am try to write a script that will check to see where a movie file is being called from. I want to define which web page I will allow a movie to be called from, and block

Re: [PHP] protecting video files

2001-05-11 Thread WebMaster
I did :( went character by character and could find not extra spaces. At 06:16 PM 5/11/01 -0400, Michael Kimsal wrote: Check for extraneous spaces in your script. Tim Schulte wrote: Hi there - I am having some weird problems here. I am try to write a script that will check to see

Re: [PHP] protecting video files

2001-05-11 Thread Mark Maggelet
On Fri, 11 May 2001 17:28:25 -0500, WebMaster ([EMAIL PROTECTED]) wrote: I did :( went character by character and could find not extra spaces. At 06:16 PM 5/11/01 -0400, Michael Kimsal wrote: Check for extraneous spaces in your script. Tim Schulte wrote: Hi there - I am having some

Re: [PHP] protecting video files

2001-05-11 Thread Sean Cazzell
which works fine until I add this at the top if($HTTP_REFERER != http://www.hardcorehosting.com/video/test.html;) { exit(); } Check to make sure $HTTP_REFERER is being set. Just create another script that has something like: ?php print Referer: $HTTP_REFERER\n; ? Then create