php & mySQL: Storing doc, xls, zip, etc. with limited access and archiving

Posted by Devner on Stack Overflow See other posts from Stack Overflow or by Devner
Published on 2010-04-18T23:34:06Z Indexed on 2010/04/18 23:43 UTC
Read the original article Hit count: 335

Filed under:
|
|

Hi all,

In my application, I have a provision for users to upload files like doc, xls, zip, etc. I would like to know how to store these files on my website and have only restricted people access it. I may have a group of people and let only these group access those uploaded files. I know that some may try to just copy the link to the document or the file and pass it to another (non-permitted) user and they can download it. So how can I prevent it? How can I check if the request to download the file was made by a legitimate user who has access to the file? The usernames of the group members are stored in the database along with the document name and location in the database so they can access it. But how do I prevent non-permitted users from being able to access that confidential data in all ways?

With the above in mind, how do I store these documents? Do I store the documents in a blob column in the Database or just just let user upload to a folder and merely store the path to the file in the database? The security of the documents is of utmost importance. So any procedure that could facilitate this feature would definitely help. I am not into Object Oriented programming so if you have a simpler code that you would like to share with me, I would greatly appreciate it.

Also how do I archive documents that are old? Like say there are documents that are 1 year old and I want to conserve my website space by archiving them but still make them available to the user when they need it. How do I go about this?

Thank you.

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql