ID: 12740
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: LDAP related
Operating System: Linux RH 7.1
PHP Version: 4.0.5
New Comment:
Okay, does the ldap server support ldap v3?
If so, you should propably try to add this:
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3)
--Jani
Previous Comments:
------------------------------------------------------------------------
[2001-10-09 14:05:23] [EMAIL PROTECTED]
What would the locale setting change? According to the docs, PHP have a UTF8 internal
reprsentation of data...
------------------------------------------------------------------------
[2001-10-09 14:03:00] [EMAIL PROTECTED]
// Here is a function to translate all values of a multi-dimensional array to UTF8
function encoder ($array)
{
while ( list ($key, $val) = each ($array) )
{
if (!is_array($val))
$array[$key] = utf8_encode($val);
else $array[$key] = encoder ($val);
}
return $array;
}
//Here is a call where
// - $conn_id is a valid connection ID
// - $dn is the dn of the object to add
// - $array is the array containing the values of the attributes indexed by name
$array = encoder($arr);
ldap_add($conn_id, $dn, $array);
// this call fails
// - if $array contains a special char (e.g �, �...) , thus returning SYNTAX ERROR
// - if $dn contains a special char (e.g �, �...) , thus returning No Such Object
------------------------------------------------------------------------
[2001-10-02 18:39:49] [EMAIL PROTECTED]
I can't reprocude this with my test scripts. If this still
happens with PHP 4.0.6, reopen. Check also your locale settings.
------------------------------------------------------------------------
[2001-08-14 09:50:59] [EMAIL PROTECTED]
Please include a short example script in this report.
------------------------------------------------------------------------
[2001-08-14 09:41:24] [EMAIL PROTECTED]
Hi,
I am working with PHP 4.0.5 and OpenLDAP 2.0.11.
I encounter problems when modifying some entries with attributes containing special
chars (such as �, �...). The error returned by the LDAP server is "invalid syntax".
I have read some documentation about this. OpenLDAP can accept special chars, provided
values are base64-encoded, when we use the tools that come with the application
(ldapadd, ldapmodify, etc.).
But how to do this from PHP functions? I tried to base64_encode the values,
it naturally didn't do the trick (those values were considered as normal, and thus
were not decoded - this polutes my directory.) Same goes for urlencoding.
Please help!
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=12740&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]