Php ldap ajout d'un utilisateur groupe
Fermé
minato91Info
-
2 mars 2012 à 10:52
minato91Info Messages postés 3 Date d'inscription vendredi 2 mars 2012 Statut Membre Dernière intervention 2 mars 2012 - 2 mars 2012 à 11:21
minato91Info Messages postés 3 Date d'inscription vendredi 2 mars 2012 Statut Membre Dernière intervention 2 mars 2012 - 2 mars 2012 à 11:21
A voir également:
- Php ldap ajout d'un utilisateur groupe
- Créer un groupe whatsapp - Guide
- Easy php - Télécharger - Divers Web & Internet
- Créer un groupe facebook - Guide
- Ajout rapide snap - Forum Snapchat
- Sous groupe whatsapp - Accueil - WhatsApp
2 réponses
SI je pouvais voir ton script PHP je pourrais peut être t'aider ;) Donc partage nous ton script s'il te plait.
minato91Info
Messages postés
3
Date d'inscription
vendredi 2 mars 2012
Statut
Membre
Dernière intervention
2 mars 2012
2 mars 2012 à 11:16
2 mars 2012 à 11:16
$server = "localhost";
$port = "389";
$ds=ldap_connect($server);
echo "<br/>connection au serveur LDAP ...<br/>";
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
$r=ldap_bind($ds,"".$login."@projetweb.com",$pwd);
//$r=ldap_bind($ds,"administrateur@projetweb.com","toto");
echo "<br/>connection réussi<br/>";
//$dn ="CN=Users,DC=projetweb,DC=com";
$entry["cn"]="".$newfirstN." ".$newlastN."";
$entry["givenname"]=$newfirstN;
$entry["sn"]=$newlastN;
$entry["mail"]=$newmail;
$entry["userprincipalname"]="".$newlogin."@projetweb.com";
//$entry["objectclass"][0]="user";
$entry["objectclass"][0] = "top";
$entry["objectclass"][1] = "person";
$entry["objectclass"][2] = "organizationalPerson";
$entry["objectclass"][3] = "user";
$dn="CN=".$newfirstN." ".$newlastN.",CN=Users,DC=projetweb,DC=com";
echo $dn;
// Ajout des données dans l'annuaire
$r=ldap_add($ds,$dn,$entry);
ldap_close($ds);
$port = "389";
$ds=ldap_connect($server);
echo "<br/>connection au serveur LDAP ...<br/>";
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
$r=ldap_bind($ds,"".$login."@projetweb.com",$pwd);
//$r=ldap_bind($ds,"administrateur@projetweb.com","toto");
echo "<br/>connection réussi<br/>";
//$dn ="CN=Users,DC=projetweb,DC=com";
$entry["cn"]="".$newfirstN." ".$newlastN."";
$entry["givenname"]=$newfirstN;
$entry["sn"]=$newlastN;
$entry["mail"]=$newmail;
$entry["userprincipalname"]="".$newlogin."@projetweb.com";
//$entry["objectclass"][0]="user";
$entry["objectclass"][0] = "top";
$entry["objectclass"][1] = "person";
$entry["objectclass"][2] = "organizationalPerson";
$entry["objectclass"][3] = "user";
$dn="CN=".$newfirstN." ".$newlastN.",CN=Users,DC=projetweb,DC=com";
echo $dn;
// Ajout des données dans l'annuaire
$r=ldap_add($ds,$dn,$entry);
ldap_close($ds);
minato91Info
Messages postés
3
Date d'inscription
vendredi 2 mars 2012
Statut
Membre
Dernière intervention
2 mars 2012
2 mars 2012 à 11:21
2 mars 2012 à 11:21
oui c'est administrateur de domaine