3

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?

muru
  • 197,895
  • 55
  • 485
  • 740
Hugo Lobo
  • 375

2 Answers2

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
  • 197,895
  • 55
  • 485
  • 740
  • 1
    sudo 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