Commit 8ec87f611c18d7830922314255a4531784e74353
1 parent
c7c975e7
added umask for folder creation perms
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@945 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
1 deletions
config/environment.php
| ... | ... | @@ -32,9 +32,10 @@ $default->owl_root_url = "/dms"; |
| 32 | 32 | $default->owl_fs_root = "/usr/local/www/owl/dms"; |
| 33 | 33 | // Directory where The Documents Directory is On Disc |
| 34 | 34 | $default->owl_FileDir = "/usr/local/www/owl/dms/Documents"; |
| 35 | - | |
| 36 | 35 | // url of graphics dir |
| 37 | 36 | $default->owl_graphics_url = $default->owl_root_url . "/graphics"; |
| 37 | +// file creation umask | |
| 38 | +$default->uMask = 0700; | |
| 38 | 39 | |
| 39 | 40 | require_once("$default->owl_fs_root/lib/Log.inc"); |
| 40 | 41 | $default->log = new Log($default->owl_fs_root . "/log.txt", DEBUG); | ... | ... |