I have activated LDAP on PHPMaker 2025 and entered the following settings:
LDAP host name:  192.168.100.1LDAP port number:  389LDAP encryption:  noneLDAP protocol version:  3LDAP referrals: LDAP base DN:  OU=Local Users,DC=crik,DC=intra,DC=netLDAP search DN:  CN=admin,OU=Utenti Administrator,DC=crik,DC=intra,DC=netLDAP search password:  PASSWORD1234LDAP default role (array):  [“PUBLIC_ACCESS”]LDAP UID key:  sAMAccountNameLDAP extra fields (array): LDAP filter:  (sAMAccountName={user_identifier})LDAP DN string:  CN={user_identifier},OU=Local Users,DC=crik,DC=intra,DC=netLDAP query string: LDAP options (array):  
With a verification attempt:
powershell
CopiaModifica
PS C:\Users\services> $username = "test"
PS C:\Users\services> $password = "test1234New" | ConvertTo-SecureString -AsPlainText -Force
PS C:\Users\services> $credential = New-Object System.Management.Automation.PSCredential($username, $password)
PS C:\Users\services> $ldapServer = "192.168.100.1:389"
PS C:\Users\services>
PS C:\Users\services> try {
>>     $ldapConnection = New-Object System.DirectoryServices.Protocols.LdapConnection($ldapServer)
>>     $ldapConnection.Credential = New-Object System.Net.NetworkCredential($username, $password, "CRIK")
>>     $ldapConnection.AuthType = [System.DirectoryServices.Protocols.AuthType]::Basic
>>     $ldapConnection.SessionOptions.ProtocolVersion = 3
>>     $ldapConnection.Bind()
>>     Write-Host "Authentication successful for user test!"
>> } catch {
>>     Write-Host "Authentication error: $_"
>> } finally {
>>     $ldapConnection.Dispose()
>> }
This returns “Authentication successful for user test!” , but when I try to log in via the web page, I get “ERROR Invalid Credentials” .
             
            
              
           
          
            
              
                arbei  
              
                  
                    March 18, 2025, 11:50am
                   
                  2 
               
             
            
              In your Powershell code you only use simple user name:
$username = "test"
...
System.Net.NetworkCredential($username, $password, "CRIK")
But in your project settings you use  **DN string:** CN={user_identifier},OU=Local Users,DC=crik,DC=intra,DC=net. Are you sure it is correct?
Also, you set the filter as (sAMAccountName={user_identifier}), make sure it is correct for your LDAP server also.
             
            
              
           
          
            
            
              
PS C:\Users\services> Get-ADUser -Filter * -Properties sAMAccountName | Where-Object {$_.sAMAccountName -eq “test”}
DistinguishedName : CN=Test Test,OU=Local Users,DC=crik,DC=intra,DC=nettest@xxx.intra.net 
             
            
              
           
          
            
              
                arbei  
              
                  
                    March 19, 2025,  2:01am
                   
                  4 
               
             
            
              
 maxr167:
 
DistinguishedName : CN=Test Test,OU=Local Users,DC=crik,DC=intra,DC=net
 
 
That means you need to login as “Test Test”, not “test”.
             
            
              
           
          
            
            
              I also tried test test, but the problem remains.
In the PHP test page, it returns 'Binding with ‘crik\test’ succeeded!
<?php
$ldap_server = "ldap://192.168.100.1:389";
$ldap_user = "crik\\test";
$ldap_pass = "PASSWORD1234";
$ldap_base_dn = "dc=crik,dc=intra,dc=net";
$ldap_conn = ldap_connect($ldap_server);
if ($ldap_conn) {
    ldap_set_option($ldap_conn, LDAP_OPT_PROTOCOL_VERSION, 3);
    ldap_set_option($ldap_conn, LDAP_OPT_REFERRALS, 0);
    $bind = @ldap_bind($ldap_conn, $ldap_user, $ldap_pass);
    if ($bind) {
        echo "Binding con '$ldap_user' riuscito!";
        ldap_close($ldap_conn);
    } else {
        echo "Errore di binding: " . ldap_error($ldap_conn);
    }
} else {
    echo "Impossibile connettersi al server LDAP.";
}
?>
 
            
              
           
          
            
              
                arbei  
              
                  
                    March 20, 2025,  5:32am
                   
                  6 
               
             
            
              That means your LDAP dn string should be crik\{user_indentifier}.