Hello,
Regarding your LDAP configuration issues:
1. Error 49 / data 52e (login failure)
This error means Active Directory could not authenticate the user. There are two possible causes:
- Wrong password — the user entered incorrect credentials
- Incorrect DN format — the "Additional User DN" template in Content Fusion may not match the actual structure of your Active Directory
When a user logs in, Content Fusion builds a full Distinguished Name by combining the "Additional User DN" template with the "Base DN". For example, if Additional User DN is
cn={0},ou=employees and Base DN is
dc=company,dc=com, the resulting DN sent to AD will be
cn=john,ou=employees,dc=company,dc=com. If this path does not exactly match the user's location in Active Directory, AD returns the same 52e error as for a wrong password.
2. Multiple certificates
If you need to upload more than one certificate (e.g. root CA + intermediate CA + server certificate), you can combine them all into a single .pem file and upload that:
cat server.crt intermediate.crt root.crt > chain.pem
-----BEGIN CERTIFICATE-----
[Your Server Certificate]
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
[Intermediate Certificate]
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
[Root Certificate]
-----END CERTIFICATE-----
Note: the certificate issue would typically cause a connection error, not error 49. It is recommended to resolve the DN/credentials issue first, then address certificates if needed.
Best,
Cosmin
https://learn.microsoft.com/en-us/windo ... 1300-1699-