Issue
Q: What are safe permissions for upload folder and files uploading to that folder ?
Wanted operations:
folder = remove / create
file = create / remove / rename / rewrite
What chmod should I set?
will they work with safe_mode = on ?
Solution
you can use umask so the permissions are set during file upload and you don't have to change them later.
Back to your question. The default umask is usually 022 (755 for directories, 644 for files). The Other bit is important in order to allow access to a web server.
Answered By - Pavel Benisek