--- docman.conf 2001/06/21 08:56:35 1.4 +++ 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 !! @@ -65,13 +68,20 @@ // Where are users stored? // default is to user .htusers file -// $gblUsers = "htusers_file"; + $gblUsers = "htusers_file"; // use sql handler - $gblUsers = "htusers_sql"; +// $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 = "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"; + +?>