Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?php
if($script === 'login'){ //für login form | $user wird von login.php geliefert
$ldaphost = "ldapservername or IP";
$ldapport = 389;
$ldaprdn = "uid=" . $user.",ou=people,dc=subdomain,dc=subdomain2,dc=domain,dc=tld";
}
if($script === 'search'){ //für LDAP Suche in ma-new.php
// zur suche muss sich zunächst eingeloggt werden. hier wird ein Testuser genutzt.
$ldapserver = 'ldapservername or IP';
$ldapuser = 'uid=testuser,OU=people,DC=subdomain,DC=subdomain2,DC=domain,DC=tld';
$ldappass = 'pass';
$ldaptree = "OU=people,DC=subdomain,DC=submodain2,DC=domain,DC=tld";
}
?>