We apologize for the instability of composr.app and appreciate your patience. We are working on the statistics addon and trying to find an optimal way to store and render data. Unfortunately, we have yet to find a solution that can handle the traffic (and therefore, tens of millions of statistical records) of composr.app. We're working hard on one.
#2046 - PHP ERROR [64] Cannot redeclare ldap_escape() in sources/cns_ldap.php
PHP now defines its own ldap_escape function. This hotfix renames our function to avoid a naming conflict.
Seems php 5.6 has a built in function called ldap_escape, which was breaking the client authentication.
My workaround was to rename the function in the code.
All usage is confined to the source file cns_ldap.php. So I made a backup then edited the file and change all instances of:
ldap_escape
to
cns_ldap_escape
That Sorted out the issue and all is working fine.
Thanks for the files will update