|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-03-19 11:37 UTC] alien999999999 at users dot sourceforge dot net
[2010-05-17 11:16 UTC] mike@php.net
-Status: Open
+Status: Feedback
[2010-05-17 11:16 UTC] mike@php.net
[2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 05:00:01 2025 UTC |
Description: ------------ ldap_modify fails when deleting attribute AND changing another attribute at the same time. The error returned is "Success", and the modification is not done. appropriate LDAP values: dn: uid=something,o=jes.com mailForwardingAddress: foo@bar.com mailDeliveryOption: autoreply mailDeliveryOption: forward ... ldap_modify is called with: $modifs = array('mailforwardingaddress' => array(), 'maildeliveryoption' => array('autoreply', 'mailbox')); IMPORTANT NOTE: doing these 2 separately works, but doing them at the same time does not work. when it fails, ldap_modify returns FALSE, ldap_error() will return "Success". Modifications are not done. Server is a SUN Solaris, LDAP server is a JES. trying this with ldapmodify command works.