We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$adldap = new adLDAP\adLDAP();
When I try to search with: $results = $adldap->search()->all(); or $results = $adldap->search()->where('cn', 'starts_with', 'somegrp')->get();
returns this error: PHP Fatal error: Call to a member function all() on a non-object
If I run just $results = $adldap->search(); $results is an empty array.
Other functions like adding/removing a user from a group work fine, just the search is giving me an issue so far. Am I doing something wrong here?
Edit: I want to note that upgrading to adLDAP2 is not an option as the server is running php 5.3.x and I do not have access to upgrade it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
$adldap = new adLDAP\adLDAP();
When I try to search with:
$results = $adldap->search()->all();
or
$results = $adldap->search()->where('cn', 'starts_with', 'somegrp')->get();
returns this error:
PHP Fatal error: Call to a member function all() on a non-object
If I run just $results = $adldap->search(); $results is an empty array.
Other functions like adding/removing a user from a group work fine, just the search is giving me an issue so far. Am I doing something wrong here?
Edit:
I want to note that upgrading to adLDAP2 is not an option as the server is running php 5.3.x and I do not have access to upgrade it.
The text was updated successfully, but these errors were encountered: