[Date Prev][Date Next] [Chronological] [Thread] [Top]

Re: UTF8



I got the fields encoded withinh migration script.

Original row:
print $HANDLE "telephonenumber: $telephoneNumber\n";
My modifications:
print $HANDLE "telephoneNumber:: ".encode_base64($telephoneNumber)."";

Now I another problem with importing the data.

ldap_initialize( <DEFAULT> )
add uid:
        martin
add cn:
        Martin Sieben
add title:
        Software Engineer
add telephoneNumber:
        +(372) 123456
add organizationName:
        NOT ASCII (18 bytes)
add streetAddress:
        NOT ASCII (14 bytes)
add givenname:
        Martin
add mail:
        martins@aia.tartu.ee
add l:
        Tallinn,10621
add c:
        Estonia
add sn:
        Sieben
add objectClass:
        InetOrgPerson
        country
        top
        organization
adding new entry "uid=martin,o=CVO"
ldap_add: No such object

ldif_record() = 32

---

Any ideas what is missing?


Thanks.

Martin