Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
181 views

I’m currently working on a Laravel 10 application that integrates with Active Directory (AD) using the AdLdap2 package and PHP's LDAP functions (PHP 8). However, I’m facing challenges when trying to ...
Fawwash Khan's user avatar
0 votes
0 answers
50 views

I'm using the Adldap library to import users into a local database. When I try to look at the result of the dd() request, I see that the AD does not send the password. $users = Adldap::search()->...
KordDEM's user avatar
  • 209
0 votes
1 answer
9k views

I am trying to connect to the LDAP server with Laravel-Adldap2. The same config works on another server and on local machine. I am using secured LDAPS connection (port 636). But on one of the test ...
pileup's user avatar
  • 3,492
0 votes
2 answers
2k views

I try to install the package adldap2/adldap2-laravel with the command composer require adldap2/adldap2-laravel but I get these errors: Info from https://repo.packagist.org: #StandWithUkraine Using ...
MrPython's user avatar
  • 302
1 vote
1 answer
368 views

I've written a small php script to retrieve all the users in a certain group and obtain two values, username and employeeid. Unfortunately, the second field is always empty. But a similar query done ...
Maxxer's user avatar
  • 1,107
1 vote
1 answer
712 views

In a old project that I am migrating I used the old adldap. But now I have to change PHP version and old adldap doesn't work with the error: HP Fatal error: Array and string offset access syntax ...
Matzewob's user avatar
0 votes
1 answer
283 views

I still have users table, and It has records. I want to login users If they matched with their AD informations. If their AD informations not exist on my database, then create new record. But Adldap2 ...
TCS's user avatar
  • 839
0 votes
1 answer
404 views

Have been tasked with moving authentication for an existing web-app from Laravel auth to LDAP. For existing users it works well except some small issues because of an already populated user table. An ...
Loom's user avatar
  • 101
0 votes
1 answer
887 views

I am trying to make authentication with ActiveDirectory using ldaprecord-laravel. I followed the documentation and made required changes in files. However, I ended up with only php artisan ldap:test ...
Danatela's user avatar
  • 349
0 votes
1 answer
644 views

I would like to get all user displayname record form active directory using adldap php? this code can get the single record. if ($adldap->authenticate($username, $password)){ $result=$adldap->...
francoleung's user avatar
0 votes
1 answer
943 views

Using Adldap2 package (https://adldap2.github.io/Adldap2/#/) and to be more accurate laravel version (https://github.com/Adldap2/Adldap2-Laravel) and having some issues with add/update some attributes ...
Vlad Barseghyan's user avatar
0 votes
2 answers
3k views

Morning, I keep getting the message "A username must be specified." when trying to login my app. Connection to LDAP is OK, sync also, in my database/table users i see all username with password. But ...
Black-Rabbit's user avatar
0 votes
2 answers
531 views

I have a query where I'm returning an awful lot of rows, so need to limit which fields I'm calling back, so I'm using select and a where method. However I also would like to limit it further by ...
Fred's user avatar
  • 99
2 votes
0 answers
5k views

I'm trying to implements an LDAP authentication in an application for my company. I'm using Laravel 5.8 and the LdapRecord package (https://github.com/DirectoryTree/LdapRecord-Laravel). I have ...
skywalskurt's user avatar
1 vote
0 answers
2k views

I have Spring boot project that is already using Spring security for Admin panel. In the front-end, I just want to use AD LDAP just to check if the user is present in the company's active directory or ...
sac2811's user avatar
  • 11
2 votes
1 answer
2k views

I am implementing LDAP authentication in laravel app. When I run this code I am getting an error. I don't know whether it is correct or not. I am totally new to LDAP and I don't know how it works by ...
matheen ulla's user avatar
0 votes
0 answers
816 views

I want to create an LDAP server exactly like this http://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/ I have already setup my LDAP on Windows Server. However, I still ...
Muhamad Hairie's user avatar
0 votes
1 answer
2k views

after updating my Laravel and Adldap2 to version 6.0,i'm receiving this error when i'm trying to authenticate, ** The 'email' key is missing from the given credentials array ** what is the reason ...
Sardar Andimeh's user avatar
0 votes
1 answer
1k views

I have a Laravel application on a Windows Server 2016, with IIS 10 and PHP 7.2. The application is required to do Active Directory authentication. For this I use https://github.com/Adldap2/Adldap2-...
LeanderJCC's user avatar
2 votes
1 answer
3k views

I would like to change the password of a user in AD since there are no attribute for password in AD. Currently running laravel framework with Adldap2-laravel package in order to manage ADLDAP ...
Haziq Asyraff's user avatar
0 votes
0 answers
274 views

I'm running the fallback option of adldap2 in laravel, I didnt override the setupUp or tearDown functions , my tests looks like this: /** @test */ public function ...
Nico Moya's user avatar
0 votes
1 answer
1k views

My environment is a laravel 5.8 with adldap2 in version 6.0.8 web app and an openLDAP directory. After hours, I finally could authenticate my user against the openLDAP directory and also the database ...
Stephan's user avatar
  • 409
0 votes
1 answer
3k views

I am running four docker container on my local machine: ldap: container_name: openldap image: osixia/openldap:latest app: build: image: digitalocean.com/php container_name: app ...
Stephan's user avatar
  • 409
1 vote
1 answer
504 views

Using adldap-laravel and Laravel 5.8. I'm getting permissions based on LDAP groups. I can check if a user is part of a group using: $user->ldap->inGroup('Accounts'); (that returns a bool) ...
Fred's user avatar
  • 99
0 votes
1 answer
469 views

I'm trying to use the adldap2 to access an adldap server. it's everything ok with the server, i have used the Apache Directory Studio to test it. I have followed all these instructions but withou ...
Jhonatan Morais's user avatar
1 vote
0 answers
681 views

I am using AD LDAP authentication code to connect my web portal to SSO but I am unable to do so as it is giving me the error below. The same code when tried on the windows server is working fine. ...
Anshika Mendiratta's user avatar
0 votes
1 answer
337 views

I am trying to login using yii2-adldap module but I am getting "Wrong password error". The password is correct. Here is my code: public function validatePassword($attribute, $params) { if (!$...
moerpheus's user avatar
0 votes
0 answers
2k views

I have both my ldap server set up (with adldap2/adldap2-laravel) and my JWT set up (with tymon/jwt-auth) for a SPA built with Vue/Vuetify and Laravel api backend. The JWT is all set up to the point ...
Matt Larsuma's user avatar
  • 1,519
1 vote
0 answers
5k views

I need to connect my laravel website to my LDAP server. But first I want to connect my LDAP server on a new website. I found a tutorial to do that using adldap2/adldap2-laravel: https://github.com/...
Fabien Pittier's user avatar
0 votes
0 answers
2k views

I want to add Ldap authentication for my Laravel 5.5 Application. I have add ldap providers, 'providers' => [ ... Adldap\Laravel\AdldapServiceProvider::class, Adldap\Laravel\...
BGK's user avatar
  • 1
2 votes
1 answer
7k views

I need to use Adldap2-Laravel. My laravel app is based in Laravel-boilerplate 5. The only login() method that I see that the app is using is this one: vendor\laravel\framework\src\Illuminate\...
pmiranda's user avatar
  • 8,577
2 votes
2 answers
3k views

I receiving an error when i am trying to use LDAP with Laravel 5.5 "Use of undefined constant LDAP_OPT_PROTOCOL_VERSION - assumed 'LDAP_OPT_PROTOCOL_VERSION'" However, i have enabled the PHP ...
user avatar
0 votes
1 answer
666 views

Question Currently looking for how other people handled the validate password function when they need to authenticate with the userprincipalname instead of the Edvlerblog\Adldap2 validatePassword ...
Jairus's user avatar
  • 856
0 votes
1 answer
630 views

I'm new in VueJS and have a problem: I can authenticate a user with adldap2 in php. But how can I check in VueJS whether the user is authenticated? The login expires after 2 hours and the user should ...
Luca Braun's user avatar
1 vote
1 answer
104 views

The existing ldap is only used for authentication. For the application that I created, for example authentication is successful then the user will be able to enter into the system. If not successful ...
Riski Novitasari's user avatar
1 vote
1 answer
1k views

Laravel Version: 5.4 Adldap2-Laravel Version: "^3.0", PHP Version: 5.6.30 I managed to make the connection work to the AD, but I can't seem to make the Auth::attempt work. It will always ...
therabbityouknow's user avatar
2 votes
1 answer
5k views

In Active Directory Users And Computers it is easy to just select Find =>Entire Directory to search a username. If I don't feed this API (PHP AD LDAP 4.04) the correct account_suffix,base_dn,...
Kellen Stuart's user avatar
7 votes
1 answer
7k views

I am attempting to use PHP adLDAP version 4.04 to authenticate on a corporate network with no success yet. PHP Version 5.2.4 I tried this stackoverflow post PHP ldap - Strong(er) authentication ...
Kellen Stuart's user avatar
1 vote
1 answer
522 views

I'm working in Yii2 with the Adldap extension found here: https://github.com/Adldap2/Adldap2 I'm running into an issue when I try to authenticate users on my ldap server. I can successfully make a ...
Maverick's user avatar
0 votes
2 answers
1k views

I have an issue with my Laravel installation and the use of Adldap... The error message I receive : FatalThrowableError in UserCreationController.php line 100: Class 'App\Http\Controllers\Adldap' not ...
François Bastien's user avatar
0 votes
1 answer
4k views

I have been trying to install ldap2 by following the instruction from this. I have already done this step: "Adldap2 utilizes composer for installation. Insert "adldap2/adldap2": "6.1.*" in your ...
khalid alqahtani's user avatar
0 votes
1 answer
3k views

I am totally new with laravel and more with AD authentication. I've been following the tutorial of these and I encountered the following problem, which can not find solution when trying to launch the ...
Skipydie's user avatar
1 vote
0 answers
566 views

Ok, so there is some documentation on this, which I've followed (https://github.com/Adldap2/Adldap2-Laravel), but I cannot seem to get this working. I'm also using laravel 5.3 so I don't know if that ...
Ryan Morris's user avatar
1 vote
1 answer
1k views

Im currenlty using the following ADLDAP repository: http://adldap.sourceforge.net/ On a page I am just currently trying to achieve: taking a list of users in a certain AD Group and put it into a ...
Peter Estephan's user avatar
3 votes
1 answer
842 views

This is my first time using ADLDAP & I've only done some Laravel work, so I'm getting confused. The notes in the config file say this: /* |---------------------------------------------------...
TH1981's user avatar
  • 3,213
1 vote
0 answers
616 views

I have tried these configuration using Laravel 5.1 enterprise starter kit: http://www.forumsys.com/en/tutorials/integration-how-to/ldap/online-ldap-test-server/ Server: ldap.forumsys.com Port: 389 ...
Yazir Rizki's user avatar
1 vote
1 answer
2k views

Trying to use SSL with LDAP authentication, I keep seeing connection attempts failing in the server log: May 18 23:52:49 lemongrab slapd[5666]: conn=162733 fd=21 ACCEPT from IP=192.168.244.129:52174 (...
miken32's user avatar
  • 42.5k
1 vote
1 answer
2k views

I am trying to replace the strebl/l5-ldap-auth and strebl/adldap packages with adldap2/adldap2-laravel and adldap2/adldap2, however am getting the following error when trying to install using Composer:...
Jack's user avatar
  • 279
0 votes
2 answers
1k views

Question: why can I not authenticate a known registered user through Adldap despite being able to access information about the user using Adldap on laravel 5.2? I am attempting to use Adldap on ...
Collin Craige's user avatar
0 votes
1 answer
243 views

I searched for this kind of connection but all the bundles do not work with symfony security 2.7 (Composer says packages problems) and symfony 3.0. Note : I actually use Silex Framework. I want to ...
Emy Ferreira's user avatar