--- docman.conf 2001/03/27 10:54:02 1.1 +++ docman.conf 2001/10/29 16:20:28 1.8 @@ -13,6 +13,9 @@ // from where to include auth_*.php modules? // $gblIncDir = "/home/httpd/docman"; + // do we want to force download? (leave it at 1) + $gblForceDownload = 1; + // username/password should not be system // usernames/passwords !! @@ -57,6 +60,28 @@ // $gblImages = array( ".jpg",".jpeg",".gif",".png",".ico", // ".bmp",".xbm") ; + // which files to hide (separated by ,) +// $gblHide = "index.php,hideme.txt"; + // $gblFilePerms = 0640 ; // default for new files // $gblDirPerms = 0750 ; // default for new dirs + // Where are users stored? + // default is to user .htusers file + $gblUsers = "htusers_file"; + + // use sql handler +// $gblUsers = "htusers_sql"; + // this are options if you use htusers_sql (there are no default + // in docman.php, so you have to use docman.conf file and enter + // data here +// $dbi = "pgsql:db:user:password"; +// $dbi_sql = "select login,full_name,password,email from users"; + + // htusers_union options: use more than one htusers method +// $gblUsers = "htusers_union"; +// $htusers_union[]="htusers_header"; +// $htusers_union[]="htusers_sql"; +// $htusers_union[]="htusers_file"; + +?>