modification of objectclass of active Directory

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • TOUNSI
    New Member
    • Mar 2008
    • 7

    modification of objectclass of active Directory

    hi at every body i'am trying to modify the attribut : object class in Active Directory
    with PHP

    this my code

    Code:
    $entry["objectclass"][0] = "organisation";
    
    $entry["objectclass"][1]="university";
    $entry["objectclass"][2]="lmd";
    
    
    $a=ldap_mod_replace ($ds,$dn,$entry);
    but i've this message
    modify no such attributs..
    i want to know what is my error
    thank for you helping
  • pbmods
    Recognized Expert Expert
    • Apr 2007
    • 5821

    #2
    Heya, Tounsi.

    You're trying to replace an attribute that does not already exist. Try using ldap_mod_add() instead.

    Comment

    Working...