Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - straffin

Pages: [1]
1
All,

Anyone have any information on getting an SSL/TLS connection to work with Feng's LDAP integration? Everything works fine with an anonymous bind *without* SSL...

Code: [Select]
$config_ldap = array (
      'binddn'    => '',
      'bindpw'    => '',
      'basedn'    => 'ou=people,dc=domain,dc=com',
      'host'      => 'ldap.domain.com',
      'uid'       => 'uid'
  );

But fails when I add the SSL/TLS information...

Code: [Select]
$config_ldap = array (
      'binddn'    => '',
      'bindpw'    => '',
      'starttls'  => true,
      'basedn'    => 'ou=people,dc=domain,dc=com',
      'host'      => 'ldap.domain.com:636',
      'uid'       => 'uid'
  );

Have also tried it with "ldaps://" in the host, no luck. Anyone?

Pages: [1]