The adldap tag has no wiki summary.
2
votes
0answers
141 views
Get list of LDAP domain user names using Java
The ldap user names need to be displayed in the the input box as autocomplete feature. I am trying to get list of users as below:
String ldapURL = ...
1
vote
1answer
174 views
Check if AD user is blocked using PHP and adLDAP
I am trying to see if a user is disabled or not (using PHP and adLDAP). I can authenticate a user. The example I am using is this:
$user = 'jdoe'
...
1
vote
1answer
252 views
Active Directory LDS Exception
Hey stack! I just installed a AD LDS instance in my development machine. The config is the following:
<membership defaultProvider="ActiveDirectoryProvider">
<providers>
...
1
vote
1answer
964 views
Single Sign On with apache on windows 7 and mod_auth_sspi
I am running a apache (xampp 1.7.3) server on my local windows 7 PC. This PC is connected to a LAN and a Active Directory domain called "colours". My local username is CHRISTOPHER-PC/Christopher, and ...
0
votes
1answer
30 views
What does dsget use to query the directory?
I am in an organization with an Active Directory with a very deep nested group structure. I would like to query the directory to recursively find user members of a group from a Linux machine. On a ...
0
votes
1answer
93 views
php ldap password reset while respecting password policies
I am successful in resetting a user's password, using the adldap http://adldap.sourceforge.net/
Is there a way to detect the password the user is trying to reset to, is the same of the last 5 ...
0
votes
0answers
76 views
Message: Undefined offset: 0 - adldap codeigniter library
line 954
$groups=$this->nice_names($info[0]["memberof"]);
I receive this error when I check for a user in a group, using the user_ingroup() function.
This is where I got the library from: ...
0
votes
0answers
81 views
LDAP timing out using PHP unless I throttle it - EDIT: 1000 limit in ldap results
Good Morning folks,
I have several scripts which talk to an enterprise LDAP ( MS Active Directory ). I'm finding that if I don't throttle my scripts with sleep() commands I get the following error:
...
0
votes
1answer
190 views
System.DirectoryServices.Protocol search question
I'm trying to re write a search from System.DirectoryServices to System.DirectoryServices.Protocol
In S.DS I get all the requested attributes back, but in S.DS.P, I don't get the GUID, or the ...
0
votes
1answer
169 views
5 second delay on ldap_bind() to Active Directory
I have a strange problem on a production server running Debian squeeze with Apache 2.2.16 and PHP 5.3.3-7 and Suhosin. On my development machine, Windows 7 64bit running XAMPP, I don't have the same ...
0
votes
1answer
579 views
Invalid argument supplied for foreach() using adldap
I am using adldap http://adldap.sourceforge.net/
And I am passing the session from page to page, and checking to make sure the username within the session is a member of a certain member group, for ...