On 2013-08-24 01:53, Stephen Ingram wrote:
That did it! Thanks. Any chance of SSL LDAP connections? I really
hate to send clear text over the wire.
try the following:
$config['LDAP_HOST'] = 'ldaps://ldap.yourdomain.com/';
See http://php.net/manual/en/function.ldap-connect.php for more
information.
A contributor mentions to fix the system wide ldap.conf file for using
SSL.
It would also be nice to specify Master admin in LDAP too instead of
having to deal with local user.
well, it's possible but you need the latest build to do that, so grab
the
master branch, then set the following in config-site.php:
$config['LDAP_ADMIN_MEMBER_DN'] = 'CN=....'; // put the proper value
here
The CN=... value should be the case sensitive ldap DN of a security
group
that contains your DN (ie. be member of it).
You can do the same with auditors:
$config['LDAP_AUDITOR_MEMBER_DN'] = 'CN=...';
However you can be either auditor or admin, cannot be both.
If you are just evaluating piler, then I recommend you to wipe out
previous
installation, to spare the upgrade process.
Janos