Jump to content

Securing


codingmasterRS

Recommended Posts

Don't know if this is the right section to post, but here goes.

 

Firstly, I am developing a video site for a specific purpose, but I need to protect videos from being downloaded. So I know at present it is hard to truly prevent people from downloading videos posted on websites, so I am looking at developing my own system like Flash Player and was wandering how to go about this best?

 

Thanks in advance

Link to comment
Share on other sites

true that. You can protect it from being downloaded directly by putting 403 restrictions on all the videos. Another way of protecting it is by storing the data in a database and then creating a tmp file which the flash player interprets. Although that would make a massive SQL database.

Link to comment
Share on other sites

in terms of 403 restrictions. if your running apache, inside the folder where the video's are stored create a .htaccess file. Inside it put

<Files *>
order deny, allow
deny from all
</Files>

I think, i might be wrong but that should pop a 403 if people try and open the video directly.

 

And as for storing in a database. I'm not sure of the exact way but i'm sure there is some way to get the binary representation of the video or something.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.