I wrote a django app, but i have a little problem with the file permissions of the uploads files from a web form.

Basically I can upload a .mp3 file but it always keep chmod 600.

The container folder has chmod 775, and the umask is set to 022.

I'm in a shared hosting service.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 8 down vote accepted

Try this in your settings.py:

FILE_UPLOAD_PERMISSIONS = 0644
link|improve this answer
Glad to help :) – Van Gale Mar 4 '09 at 1:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.