1
0
Fork 0
mirror of https://github.com/ThomasGsp/HyperProxmox.git synced 2025-02-15 04:32:15 +00:00
HyperProxmox/code/web/www/pages/connectors/ldap.php
2018-02-11 18:47:59 +00:00

17 lines
415 B
PHP

<?php
function ldaplogin($username, $password)
{
require 'ldap.conf.php';
$ldaprdn = 'cn='.$username.','.$ldapOrgUnit.','.$baseDN;
$ldap = @ldap_connect($ldapserver, $ldapServerPort);
ldap_set_option($ldap, LDAP_OPT_PROTOCOL_VERSION, 3);
$bind = @ldap_bind($ldap, $ldaprdn, $password);
if ($bind)
{
ldap_close($ldap);
return true;
}
else
return false;
}