[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: bind problem



Thanks for the help.  I tried your suggestion but had no luck.  I added
the following after the connect and before the bind as you specified...

if (ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3))
  echo "Using LDAPv3";
else
  echo "Failed to set protocol version to 3"

It does successfully set the protocol version but gives the same bind
error. Worth a shot though.

thanks,

-patrick


On Thu, 8 Aug 2002, karen wrote:

> hi,
> have you tried to bind using LDAPv3 (this can be done by using the
> ldap_set_option function (see php manual for the syntax) ?
> this function must be used after the connection to the server and before the
> bind.
> hope it can help.
> karen
>