ABP-LIC-0012 - License Error! Given user 'xx' has reached the maximum allowed developer computer count (2) for the organization 'xx Information'. how to fix ?
I want to disabled autocomplete for password login how to make by easy way
I want to add meta tags and ld+json for cms page created by admin i'm workin with mvc core razor
I'm working with abp framewrok pro mvc core razor how can as admin when add html able to preview page
hi can you provide me your mail please to send configuration to test i can't find problem
Thanks,
 var filter = $"(&(objectClass=person)(uid={testUserName}))"; this works for me when try this 
var server = "xxxx";
var serverPort = xxxx;
var baseDc = "xxxx";
var adminUserName = "xxxx";
var adminPassword = xxxx";
var testUserName = "xxxxx"; // short name or sAMAccountName
var testPassword = "xxxx"; // real user password
using (var ldapConnection = new LdapConnection())
{
    ldapConnection.Connect(server, serverPort, Native.LdapSchema.LDAP, Native.LdapVersion.LDAP_VERSION3);
    try
    {
        // Bind as admin
        await ldapConnection.BindAsync(Native.LdapAuthType.Simple, new LdapCredential
        {
            UserName = $"CN={adminUserName},{baseDc}",
            Password = adminPassword
        });
        Console.WriteLine($"{adminUserName} login success!");
        // Search user
        var filter = $"(&(objectClass=person)(uid={testUserName}))";
        var searchResults = await ldapConnection.SearchAsync(baseDc, filter);
        var userEntry = searchResults.FirstOrDefault();
        if (userEntry == null)
        {
            Console.WriteLine($"User '{testUserName}' not found.");
         
        }
        Console.WriteLine($"{testUserName} DN: {userEntry.Dn}");
        // Try binding as the user
        await ldapConnection.BindAsync(Native.LdapAuthType.Simple, new LdapCredential
        {
            UserName = userEntry.Dn,
            Password = testPassword
        });
        Console.WriteLine($"{testUserName} login success!");
    }
    catch (Exception e)
    {
        Console.WriteLine($"LDAP Error: {e.Message}");
    }
    Console.ReadKey();
}
I make this code in program.cs and it gives me login success and also can't login with this user , i tried to make cofigration from app setting and also admin ui not working
you mean i don't need to do any code to sync ldab users, but i tried steps and not work, can we please have meting in zoom ?
how user in ldap will be able to login and this user not in abpusers table ?
 
                                