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
https://forums.phpfreaks.com/topic/205918-securing/
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
https://forums.phpfreaks.com/topic/205918-securing/#findComment-1077785
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
https://forums.phpfreaks.com/topic/205918-securing/#findComment-1077836
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.