diff options
Diffstat (limited to 'conf/dokuwiki.php')
-rw-r--r-- | conf/dokuwiki.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/conf/dokuwiki.php b/conf/dokuwiki.php index 04b0abe0b..bf81d8bc4 100644 --- a/conf/dokuwiki.php +++ b/conf/dokuwiki.php @@ -8,9 +8,10 @@ /* Datastorage and Permissions */ +$conf['umask'] = 0022; //set the global umask +$conf['fmode'] = 0666; //set file creation mode +$conf['dmode'] = 0777; //set direction creation mode -$conf['umask'] = 0111; //set the umask for new files -$conf['dmask'] = 0000; //directory mask accordingly $conf['lang'] = 'en'; //your language $conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection $conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect |