ID:               25454
 Updated by:       [EMAIL PROTECTED]
 Reported By:      rolli at aum dot unibe dot ch
 Status:           Feedback
 Bug Type:         LDAP related
 Operating System: Linux-2.4
 PHP Version:      4.3.3
 New Comment:

And where does it say that you can use multiple hosts in one connect?
(FYI: This has absolutely NOTHING to do with ext/cyrus)



Previous Comments:
------------------------------------------------------------------------

[2003-09-09 13:06:54] [EMAIL PROTECTED]

First of all: Does this work with the openldap binaries, e.g.
ldapsearch ??


------------------------------------------------------------------------

[2003-09-09 12:02:41] rolli at aum dot unibe dot ch

Description:
------------
When using ldap_bind() nothing happens as script execution stops
immediatly. Verifying the script with CLI there's an assertion error in
cyrus.c
The problem seems to be related to cyrus.c working with a
cyrus-sasl-2.1x.

Checked the following:
Server 1: php-4.3.3 with cyrus-sasl-1.5.24 works
Server 2: php-4.3.3 with cyrus-sasl2-2.1.12 doesn't work

Both Servers compiled wiht:
'./configure' '--prefix=/usr/share' '--datadir=/usr/share/php'
'--bindir=/usr/bin' '--libdir=/usr/share' '--includedir=/usr/include'
'--with-_lib=lib' '--with-config-file-path=/etc'
'--with-exec-dir=/usr/lib/php/bin' '--disable-debug' '--enable-bcmath'
'--enable-calendar' '--enable-ctype' '--enable-dbase'
'--enable-discard-path' '--enable-exif' '--enable-filepro'
'--enable-ftp' '--enable-gd-imgstrttf' '--enable-gd-native-ttf'
'--enable-inline-optimization' '--enable-magic-quotes'
'--enable-mbstr-enc-trans' '--enable-mbstring' '--enable-mbregex'
'--enable-memory-limit' '--enable-safe-mode' '--enable-shmop'
'--enable-sigchild' '--enable-sysvsem' '--enable-sysvshm'
'--enable-track-vars' '--enable-trans-sid' '--enable-versioning'
'--enable-wddx' '--enable-yp' '--with-bz2' '--with-curl'
'--with-dom=/usr/include/libxml2' '--with-ftp' '--with-gdbm'
'--with-gettext' '--with-gmp' '--with-imap=yes' '--with-imap-ssl'
'--with-imagick=/usr' '--with-openssl' '--with-iodbc'
'--with-java=/usr/lib/SunJava2-1.4.1' '--with-jpeg-dir=/usr'
'--with-ldap=yes' '--with-mcal=/usr' '--with-mcrypt'
'--with-mnogosearch=/usr/local/mnogosearch' '--with-mysql=/usr'
'--with-ndbm' '--with-pgsql=shared' '--with-png-dir=/usr'
'--with-readline' '--with-snmp' '--with-t1lib' '--with-tiff-dir=/usr'
'--with-ttf' '--with-freetype-dir=yes' '--with-xml' '--with-xmlrpc'
'--with-dom-xslt=/usr' '--with-dom-exslt=/usr'
'--with-xpm-dir=/usr/X11R6' '--with-zlib=yes' '--with-gd'
'--enable-xslt' '--with-xslt-sablot' '--with-iconv' '--with-mm'
'--with-pdflib=/usr' '--with-apxs=/usr/sbin/apxs' 

Reproduce code:
---------------
<?php
error_reporting(E_ALL);
echo "Connecting ...";
$ldapconn=ldap_connect("ldaps://id-auth01.unibe.ch,
ldaps://id-auth02.unibe.ch","636");
if (is_resource($ldapconn)) { 
    echo "Binding ...";
    $ldapbind = ldap_bind($ldapconn);
    // verify binding
    if ($ldapbind) {
        echo "LDAP bind successful...";
    } else {
        echo "LDAP bind failed...";
    }
} 
ldap_close($ldapconn);
?>

Expected result:
----------------
I should see a pretty "LDAP bind successful". Acutally works on Server
1 with cyrus-sasl-1.5.24.

Actual result:
--------------
[EMAIL PROTECTED]: php ldap.php
php: cyrus.c:469: ldap_int_sasl_open: Assertion `lc->lconn_sasl_ctx ==
((void *)0)' failed.
Aborted

Then tested with above script and only one ldap-server in
ldap_connect() leads to
Warning: ldap_bind():  Unable to bind to server: Can't contact LDAP
server in
on Server 2, but works perfectly on Server 1.

So could it be ext/cyrus not compatible with cyrus-sasl2-2.1.12?


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=25454&edit=1

Reply via email to