Skip to content

Commit

Permalink
explanation for beginners
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpapst committed Nov 12, 2023
1 parent f0b8c8e commit 3fcaaec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions _documentation/ldap.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ If you see an error message like this:
```
laminas/laminas-ldap requires ext-ldap * -> it is missing from your system. Install or enable PHP's ldap extension.
```
you have to install the PHP LDAP extension, e.g. on Ubuntu with `apt-get install php-ldap` first.
FPM and CLI PHP use different configs, so installing might not be enough: use `php -m` to verify that the module is really loaded.
you have to install the PHP LDAP extension first:
- e.g. on Ubuntu with `apt-get install php-ldap`
- or with the PHP version prefixed `apt-get install php8.1-ldap`
- FPM and CLI PHP use different configs, use `php -m` to verify that the module is really loaded

### Activate LDAP authentication

Expand Down

0 comments on commit 3fcaaec

Please sign in to comment.