Ok, lets see what we can do:
1. confirm that things are actually okay on the server end, though I suspect that they are. Login to your server as root.
Type:
ps -aux | grep slapd
It should come up with something like so:
root 9820 0.0 0.1 3476 1072 ? S Oct11 0:00 slapd
root 9821 0.0 0.1 3476 1072 ? S Oct11 0:13 slapd
root 9822 0.0 0.1 3476 1072 ? S Oct11 0:01 slapd
This makes sure that the ldap daemon (slapd) is running and not down for whatever reason.
2. try a search on your user from the server.
Type:
/usr/bin/ldapsearch "cn=Jason Miller"
or
/usr/bin/ldapsearch "uid=jay"
NOTE: this is an example of how I find my own record in the ldap server here, cn is common name - so the name of the user you know is for sure in the ldap database, and uid is the userid of that user.
They'll return something like so:
uid=jay,dc=e-smith,dc=net
objectclass=person
uid=jay
cn=Jason Miller
givenname=Jason
sn=Miller
mail=jay@e-smith.net
telephonenumber=
o=e-smith, inc.
l=Ottawa
street=150 Metcalfe Street, Suite 1500
-> if either fails, then the problem is that your user was never created. I suspect that this is not the case and that is more likely the user settings.
3. what browser client are you using? I'll give an example of a Netscape setting, I'm sure you can enterpolate that to another browser.
In the Netscape Address Book, edit/create a New Directory ... (from the File Menu). Make sure the settings are as such:
Description:
LDAP Server:
Server Root:
an example from our own:
Description: e-smith Directory
LDAP Server:
Server Root: dc=e-smith, dc=com
Then make sure your user preferences (Edit -> Preferences -> Mail & Newsgroups -> Addressing) are set to look for that directory server
That should hopefully help.
Jason