Ok, I think this is what I need. But I preface this by saying I not a programmer but maybe you can point me in the right direction or maybe update the plugin with such options?
Near line 258 of serendipity_event_externalauth.php, how can I make it pass on this info to authorize lookups?
$['ldap']['lookupid'] = "org-unique=orgUserName,ou=internal,ou=people,dc=org,dc=com"; //Acct authorized for lookup on LDAP server
$['ldap']['lookuppwd'] = "password"; // LDAP password
var $AD_lookupid
var $AD_lookuppwd
$bind = @ldap_bind( $this->ldap, $this->AD_lookupid, $this->AD_lookuppwd );
I guess there would have to be a place on the external user athentication plugin interface to insert this information. Or would it be better served hard coded in the serendipity_event_externalauth.php?
Does this makes sense?
PS I am on chapter 4 of teach your self php
