ID: 10325
Updated by: jmoore
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: LDAP related
Operating system: 
PHP Version: 4.0.4pl1
Assigned To: 
Comments:

closed. (you imply that there was nothing wrong other than your error)

- James

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

[2001-05-07 00:57:28] [EMAIL PROTECTED]
User error :)

I was using the integer result from the ldap_bind() operation as the link index. 
ldap_bind() always returned 1 for true, which just happened to be the link index zend 
assigned to the ldap_connect(). The reason it "broke" when I connected to postgres was 
because zend apparantly keeps only 1 link index pool, assigns 1 to the postgres 
connection, then the ldap connection got 2. Also of interest was that the ldap 
connection always got a link index of 2 even after
executing a pg_close(), which I would of assumed would clear the first link index of 1 
for ldap to use.

Dan-

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

[2001-05-06 23:32:19] [EMAIL PROTECTED]
Does this happen with PHP 4.0.5 ??
And if so, does it happen with the latest CVS? 
(snapshots: http://snaps.php.net/ )

--Jani


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

[2001-04-14 06:50:50] [EMAIL PROTECTED]
Opening a database connection breaks LDAP's link index.

Example code:

<?php
$dbcon = pg_connect("host=localhost port=5432 dbname=testdb user=testuser 
password=testpass");

$ds = ldap_connect("localhost");
$ldapcon = ldap_bind($ds);

// This always returns 1
echo $ldapcon;

// This errors out
ldap_search($ldapcon, "dc=test,dc=com", "cn=*");
?>

This generates the error:
PHP Warning: 1 is not a LDAP link index

If you comment out the pg_connect() line, LDAP works fine.
If you pg_close($dbcon) right after the pg_connect(), you still get the PHP error.

This is a definite show stopper considering some people use a database for sessions, 
which means you can't use LDAP
after you start your session.

I'm using the latest openldap 2.0.7 & postgres 7.0.3,
php compiled into apache:
./configure --enable-memory-limit --enable-track-vars --enable-sysvsem 
--enable-sysvshm --with-gd --with-pgsql --with-freetype 
--with-ldap=/usr/local/openldap --with-xml --with-mhash --enable-trans-sid 
--with-kerberos --with-mcrypt --with-apache=../apache_1.3.19 --enable-bcmath 
--with-zlib --with-sockets --enable-inline-optimizations

Please fix soon :)

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



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10325&edit=2


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to