From ac9115b0337bc6c9b49cdb05210dd85a270d1594 Mon Sep 17 00:00:00 2001 From: Troels Liebe Bentsen Date: Sat, 18 Feb 2006 19:32:51 +0100 Subject: Fix wrong umask usage and so we set the correct file premissions. darcs-hash:20060218183251-ee6b9-798ab2994526311b1e58f04e7684b39b51426887.gz --- conf/dokuwiki.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'conf/dokuwiki.php') 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 -- cgit v1.2.3