Here's some clarification about the parameters when renaming a container in Novell eDirectory:- $new_rdn is in format "ou=new container name"- newparent parameter is NULL - because we're renaming and not moving- deleteoldrdn parameter if TRUE then old value of OU attribute is stored as a secondary/further value of LDAP OU attribute. Novell ConsoleOne shows it as 'Other Name' attribute.$full_old_dn= "ou=Cuckoo,ou=London,ou=UK,ou=Europe,o=Happy";$new_rdn= "ou=Cuckoo Group"; ldap_rename( $conn, $full_old_dn, $new_rdn, NULL, TRUE);