Hi!
I'm trying to use the ldap build-in functions of php to add a new entry in the LDAP directory. This entry contains an the attribute named "caCertificate;binary". The following code doesn't add a new entry with the specified certificate content. Any ideeas why?
...
$info["cn"]="Certification Authority";
$info["objectclass"][0]="top";
$info["objectclass"][1]="organizationalUnit";
$info["objectclass"][2]="certificationAuthority";
$info["caCertificate;binary"]=$cert_content;
ldap_add($ds, "cn=Certification Authority, o=ROCA, c=RO", $info);
...
Thanks for your time.