ldap_bind(): Unable to bind to server: Protocol error
You have to specify the protocol version prior before making a call to ldap_bind(), when the server is expecting LDAP protocol version 3. else you will receive the above error
In order to avoid this, make this call:
<?phpldap_set_option($ldapConnResult, LDAP_OPT_PROTOCOL_VERSION, 3);?>
Where $ldapConnResult is the result returned...
Wednesday, April 30, 2014
Call to undefined function ldap_connect()
Posted on 3:03 AM by Unknown
Call to undefined function ldap_connect()
Just go to php.ini file and un-comment php_ldap extension li...
Categories: Call to undefined function ldap_connect()
Thursday, April 24, 2014
PEM routines:PEM_read_bio:no start line
Posted on 4:05 AM by Unknown
PEM
routines:PEM_read_bio:no start line
I got this error when I tried to convert a private key to PKCS12 format using openssl_pkcs12_export() function under PHP, after 48 hours of trying many solutions I finally found the wright one, it's soo simple just change the format of the private key (PEM encoded) from
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: DES-EDE3-CBC,25E7BB5EB27D828C
<---...
Categories: PEM routines:PEM_read_bio:no start line
Wednesday, April 23, 2014
error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt error:0906A065:PEM routines:PEM_do_header:bad decrypt
Posted on 3:44 AM by Unknown
error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt
error:0906A065:PEM routines:PEM_do_header:bad decrypt
I got this error while working with OpenSSL library on PHP, this happen when you try to export the private key of a certificate using bad passphrase, just make sure taht you are using the wright on...
Subscribe to:
Posts (Atom)