Can anyone tell me which ones in the following options array of LDAP are
required?

//these are the config settings, needed to connect the the LDAP directory
    $options = array(
    'host'=>'192.168.1.1',                               //server IP,
mandatory
    'bind_dn'=>'cn=LDAPUser,OU=Users,DC=example,DC=com', //DN of the user
that may browse the ldap
    'bind_pw'=>'xxxxxxx',                                //password
    'user_oc'=>'user',                                   //ObjectClass for
users
    'base_dn'=>'DC=example,DC=com',                      //base DN for all
users
    'user_dn'=>'OU=Users',                               //dn for users
    'user_attr'=>'samAccountName',                       //the attribute
that contains the user login
    //AD options
    'use_domain_from_email'=>false,                      //username is an
email, split it to get the domain
    'domain'=>'',                                        //NT domain to
prepend to the username, this is used with the direct_ bind on AD
    'use_direct_bind'=>false                             //force the auth
based only on binding by username and password provided by user
    );


-- 
View this message in context: 
http://www.nabble.com/LDAP-option-array-parameters-tf4307735s16154.html#a12262956
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to