[PHP] web server crashing with either 4.1.0 or 4.0.6

2001-12-20 Thread Ian McNish
when trying at access any php scripts my web server is crashing. i'm experiencing this problem with both php 4.0.6 and 4.1.0 on iplanet enterprise 6.0sp1 on solaris 8. my web server is logging the following error: catastrophe (21929): Server crash detected (signal SIGSEGV) info (21929): Crash

[PHP] ldap_connect question

2001-08-29 Thread Ian McNish
the ldap_connect man page states that calling ldap_connect with no arguements should return the link identifier to the open ldap connection. in the following code i find that the script stops before writing the second printf statement: $LDAP_CONNECTION = ldap_connect($MY_LDAP_SERVER);

Re: [PHP] ldap_connect question

2001-08-29 Thread Ian McNish
Brad S. Jackson wrote: It looks like the documentation is wrong. The C source code for the LDAP module doesn't do anything special with zero arguments. switch(ZEND_NUM_ARGS()) { case 0: host = NULL; port = 0; that would explain why