LDAP サーバーに接続したい。application.ini で次のコードを使用して実行しました
ldap.server.host = ldaps://ldap.example.ro
ldap.server.username = "uid=admin,ou=people,dc=example,dc=ro"
ldap.server.password = "password"
ldap.server.baseDn = "ou=people,dc=example,dc=ro"
ldap.server.bindRequiresDn = true
その後
$auth = Zend_Auth::getInstance();
$config = new Zend_Config_Ini(APPLICATION_PATH . '/configs/application.ini',
'production');
$options = $config->ldap->toArray();
$adapter = new Zend_Auth_Adapter_Ldap($options, $username, $password);
$result = $auth->authenticate($adapter);
管理者とパスワードなしで同じことを行う方法はありますか? ldap.server.username および ldap.server.password なし