There was an issue with the LDAP not syncing groups properly, and would thus cause a blank page to appear when logging into my site.
Essentially, the entire problem is attributed to a typo in the function name for the ldap_sync_groups function. The file ~/lib/userslib.php contains the function:
private function _ldap_sync_groups($user, $pass) {...}
The major problem is that this function name has a leading underscore (_) and causes an issue when it attempts to sync the groups with the LDAP.
Simply removing the underscore solves the whole problem. The function should be named as such:
private function ldap_sync_groups($user, $pass) {...}
This will make it so that when the file reaches the line:
$ret &= $this->ldap_sync_groups($user, $pass);
It can successfully sync with the LDAP.
To help developers solve the bug, we kindly request that you demonstrate your bug on a show2.tiki.org instance. To start, simply select a version and click on "Create show2.tiki.org instance". Once the instance is ready (in a minute or two), as indicated in the status window below, you can then access that instance, login (the initial admin username/password is "admin") and configure the Tiki to demonstrate your bug. Priority will be given to bugs that have been demonstrated on show2.tiki.org.
filename | created | hits | comment | version | filetype | ||
---|---|---|---|---|---|---|---|
No attachments for this item |