Skip to content
Advertisement

Can’t install php7.2-ldap on Ubuntu 18.10 – “unmet dependencies”

Recently I’m working with Laravel and LDAP (Active directory) authentication. But I can’t install php7.2-ldap, I also tried to install in php7.3 but failed.

Currently I’m using ubuntu v18.10 with multiple php version.

I tried: $ sudo apt-get install php7.2-ldap and got this output

JavaScript

I also tried $ sudo apt-get update and upgrade also before do it.

Advertisement

Answer

7.2.20-1+ubuntu18.10.1+deb.sury.org+1 is to be installed

deb.sury.org refers to Ondřej Surý PPA, you need to reinstall php following these steps :

  • You need to have the software-properties-common package installed :

    JavaScript
  • Add the ondrej PPA repo and update sources :

    JavaScript
  • Install php and needed extensions :

    JavaScript

how to : https://pixelspress.com/how-to-install-php-7-2-on-ubuntu-16-04-18-04-18-10/

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement