Re: Saving images in django

2010-11-10 Thread andy
Thanks for the info very useful. On Nov 10, 6:34 pm, Łukasz Rekucki wrote: > On 11 November 2010 03:19, andy wrote: > > > Django recommends saving images to the file system since this gives > > better performance than storing the files in a database.

Re: Saving images in django

2010-11-10 Thread vikalp sahni
If you are using apache. you can simple disable the indexing of files. in your apache conf directory directive. This will give forbidden 403 if u try to access the directory from apache. hence no files are seen. Options -Indexes I hope this helps. Regards

Re: Saving images in django

2010-11-10 Thread Łukasz Rekucki
On 11 November 2010 03:19, andy wrote: > Django recommends saving images to the file system since this gives > better performance than storing the files in a database. However I > don't seen any documentation on how to restrict access to those files > by user. If someone