Ldap.config host requires 'ldap://...' indication #755
tiagojulianoferreira
started this conversation in
General
Replies: 1 comment 1 reply
-
Thanks @tiagojulianoferreira I tried to show this in commit 03d6384 but very very easy to miss if doing an upgrade. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Just reporting something that might help with LDAP settings in version 3.0.3.
When migrating from BookedSchedule version 2.8 to LibreBooking 3.0.3, we tried to faithfully replicate the LDAP settings from the old version to the new version.
However, the LDAP connection didn't work and prevented administrative access to the entire application.
The solution was to add the ldap:// suffix before host.
In BookedSchedule, where it was:
$conf['settings']['host'] = 'ldap.example.com';
In LibreBooking 3.0.3, we changed it to:
$conf['settings']['host'] = 'ldap://ldap.example.com';
Hope this helps!
Beta Was this translation helpful? Give feedback.
All reactions