Date: 10/28/00
- Next message: Sebastian Bergmann: "Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/printer php_printer.hprinter.c printer.dsp /win32 php_modules.dsw"
- Previous message: php-dev <email protected>: "[PHP-DEV] PHP 4.0 Bug Summary Report"
- Next in thread: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #7505 Updated: ldap_get_entries causes crash"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ID: 7505
User Update by: weston <email protected>
Status: Feedback
Bug Type: LDAP related
Description: ldap_get_entries causes crash
Here's the way I ran configure:
./configure --with-apxs=/usr/local/apache/bin/apxs --enable-calendar
--with-gdbm --enable-dbase --with-gd --with-imap --with-ldap
--with-mysql=/usr/local/ --enable-memory-limit
--with-mcal=/usr/local/mcal --with-readline --with-gettext
Previous Comments:
---------------------------------------------------------------------------
[2000-10-28 06:38:27] sniper <email protected>
I can not reproduce this with the latest CVS.
Please include your configure line into this bug report.
--Jani
---------------------------------------------------------------------------
[2000-10-28 04:13:29] weston <email protected>
This script crashes Apache/1.3.12 with OpenLDAP 2.0.6:
$PHP_AUTH_USER = <REMOVED>;
$PHP_AUTH_PW = <REMOVED>;
$ds=ldap_connect("localhost");
$binddn = "uid=$PHP_AUTH_USER,ou=People,dc=itdonline,dc=net";
$r=ldap_bind($ds, $binddn, $PHP_AUTH_PW);
if (!$r) {
print ldap_error();
exit();
}
$sr=ldap_search($ds, "ou=People,dc=itdonline,dc=net",
"uid=$PHP_AUTH_USER");
if (!$sr) {
print ldap_error();
exit();
}
$entries = ldap_get_entries($ds, $sr);
?>
In the error log I get:
httpd: getattr.c:36: ldap_first_attribute: Assertion `( ( ld )->ld_options.ldo_valid == 0x2 )' failed.
[Fri Oct 27 15:51:38 2000] [notice] child pid 27065 exit signal Aborted (6)
The ldap_bind() and the ldap_search() complete successfully, but ldap_get_entries() causes the crash
---------------------------------------------------------------------------
Full Bug description available at: http://bugs.php.net/?id=7505
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Sebastian Bergmann: "Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/printer php_printer.hprinter.c printer.dsp /win32 php_modules.dsw"
- Previous message: php-dev <email protected>: "[PHP-DEV] PHP 4.0 Bug Summary Report"
- Next in thread: sniper <email protected>: "[PHP-DEV] PHP 4.0 Bug #7505 Updated: ldap_get_entries causes crash"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

