I successfully installed attachement_fu but I still
have one question:
How can I protect my uploaded files from being downloaded like
http://127.0.0.1:3000/images/galleries/0000/0001/1.jpg
I only what logged in users to download images?
Thanx.
–
Jochen K.
gissmoh.de, figgfrosch.de, ror-ror.de
jochen kaechelin wrote:
This has been asked a few times in the past (though I don’t have links
handy) but basically:
- You’ll need to save files to a non-public directory (I’ve done this
with file_column but I expect it’s possible also with attachment_fu)
- Add a controller action that will use send_file to send the file to
the browser
- Add a before_filter to make sure that the user is logged in.
Cheers,
Mohit.
7/11/2007 | 12:13 AM.
On Jul 10, 8:47 am, jochen kaechelin [email protected] wrote:
–
Jochen K.
gissmoh.de, figgfrosch.de, ror-ror.de
google for “protected download” or “secure download” or authenticated,
etc
http://www.bencurtis.com/archives/2006/11/serving-protected-downloads-with-rails/
http://robertrevans.com/article/files-outside-public-directory
Correction. send_data and not send_file.
-Pratik
On 7/10/07, Mohit S. [email protected] wrote:
- Add a before_filter to make sure that the user is logged in.
Cheers,
Mohit.
7/11/2007 | 12:13 AM.
–
http://m.onkey.org
Pratik wrote:
Correction. send_data and not send_file.
-Pratik
Thanks! Of course, that’s what I meant 
Cheers,
Mohit.
7/11/2007 | 12:28 PM.