meeting-room-booking-system / mrbs-code

MRBS application code
Other
127 stars 63 forks source link

Created by to 'DefaultAppPool' instead of set to 'username'. #615

Open jberanek opened 6 years ago

jberanek commented 6 years ago

For some strange reason, our MRBS 1.7 installation has defaulted to setting the repeat type on each new user booking created by to 'DefaultAppPool' instead of set to 'username'. Have you come across this before? Is there an entry I can put in the config file to set it back to each username? Any help you can offer will be gratefully received.

Reported by: tomli

Original Ticket: mrbs/bugs/410

Attachments: https://sourceforge.net/p/mrbs/bugs/410/attachment/Roombooking_error.jpg

jberanek commented 6 years ago

What have you got $auth['type'] and $auth['session'] set to? After you login, what username appears in the top right hand corner?

Original comment by: campbell-m

jberanek commented 6 years ago

Hi, Our config.inc.php settings below: $auth["session"]="nt"; $auth["type"]="none"; After when I login, no username appears in the top right hand corner. Thanks for your help.

Cheers, Tom

Original comment by: *anonymous

jberanek commented 6 years ago

Assuming you are using IIS, then I think what you need to do is

1. Enable Windows Authentication in IIS:

2. Go to IIS Manager -> Authentication:

Original comment by: campbell-m

jberanek commented 6 years ago

Hi Campbell,

I will try your advice and Thanks very much for your help. Could you please have a look at our another settings for config.inc.php ok or not? The settings below:

$auth["session"]="http";
$auth["type"] = "ldap";
$auth["user"]["master"] = "xxxxxxxx";
$auth["admin"][]="master";
$ldap_host = "172.17.213.3";
$ldap_port = 389;
$ldap_v3 = true;
$ldap_tls = false;
$ldap_base_dn = "ou=Woolcock Staff List,dc=woolcock,dc=local";
$ldap_user_attrib = "uid";
$ldap_dn_search_attrib = "sAMAccountName";
$ldap_dn_search_dn = "cn=administrator,cn=Users,dc=domain,dc=local";
$ldap_dn_search_password = "xxxxxxxx";

Cheers, Tom Li

Original comment by: *anonymous