Trying to install this package on Ubuntu using sudo apt-get install libapache2-mod-auth-mysql, but I get the message in the title. Why and how can I fix it?
Asked
Active
Viewed 3.4k times
3
-
Which version of Ubuntu are you using? – Florian Diesch Jan 04 '16 at 03:05
-
The version I'm using is 15.10 – Hugo Lobo Jan 04 '16 at 03:08
2 Answers
9
The package has been deleted in Ubuntu 15.10 (since it was deleted upstream in Debian 8). The module itself is apparently unmaintained, and mod_authn_dbd or mod_authz_dbd should be used instead.
muru
- 193,181
- 53
- 473
- 722
-
1sudo apt-get install mysql-server mod_authn_dbd php7.0-mysql is giving the following error. E: Unable to locate package mod_authn_dbd How to get rid of this? – David Nov 14 '16 at 17:02
1
From here: phpmyadmin not working due to missing mbstring extention
sudo apt-get install php-mbstring php7.0-mbstring php-gettext
sudo service apache2 restart
Shawn Belaire
- 11
- 1