RE: RE: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Venkat Raman Don
Hi Sascha, I was just saying that if your LDAP extension is not compiled with option --with-ldap-sasl, this function will not be defined. Since Bruno is getting other functions defined other than this particular function, this means that LDAP DLL he is using was not configured with --with-ldap-

Re: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Bruno CHALOPIN
Hi Sascha, Le 12/05/2010 12:02, Sascha Meyer a écrit : You might also look into the PEAR repository before switching to COM: http://pear.php.net/package/Auth_SASL http://pear.php.net/package/Net_LDAP2 (contains a function supportedSASLMechanism() to check if an LDAP server supports SASL auth)

Re: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Sascha Meyer
Hi Bruno, Bruno wrote: > I suppose I'll be obliged to use COM components within > PHP to simulate this not so native feature. You might also look into the PEAR repository before switching to COM: http://pear.php.net/package/Auth_SASL http://pear.php.net/package/Net_LDAP2 (contains a function s

Re: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Bruno CHALOPIN
Hi Sascha, Le 12/05/2010 10:51, Sascha Meyer a écrit : I checked bugs.php.net and found the following bug: http://bugs.php.net/bug.php?id=43233 Quote: "This is not a bug, just missing feature or rather: missing sasl support in the ldap libraries used to build win32 binaries." The bug's stat

Re: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Sascha Meyer
Hi Bruno, Bruno wrote: > I only get this error : "Fatal error: Call to undefined function > ldap_sasl_bind()". It's a little bit light to find how to make it work :-/ I checked bugs.php.net and found the following bug: http://bugs.php.net/bug.php?id=43233 Quote: "This is not a bug, just missin

Re: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Bruno CHALOPIN
Hi, Le 12/05/2010 09:40, Lester Caine a écrit : This IS the windows PHP list - so compiling special versions is not appropriate! I agree that compiling special versions is not appropriate on Windows. There are a number of extensions available ready compiled, so it is just a matter of checkin

Re: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Lester Caine
Venkat Raman Don wrote: Hi, While configuring PHP (configure command) one has to use the switch --with-ldap-sasl, otherwise this function is undefined. Probably the LDAP library you are using is not configured with this switch. Try compiling with this switch yourself. This IS the windows PH

Re: RE: [PHP-WIN] 2 questions on mssql and ldap

2010-05-12 Thread Sascha Meyer
Hi Don, Don wrote: > While configuring PHP (configure command) one has to use the switch > --with-ldap-sasl, otherwise this function is undefined. Probably the LDAP > library > you are using is not configured with this switch. Try compiling with this > switch yourself. could you give us some mor