On a debug site I would recommend uncommenting the following lines in the file settings.php.
nano sites/default/settings.php
if (file_exists(__DIR__ . '/settings.local.php')) {
include __DIR__ . '/settings.local.php';
}
In addition to adding the next setting:
$config = 'verbose';
It also adds a few other settings which will help you in debugging and making development easier. If you don't want...
Install phpMyAdmin on Ubuntu
You can install PHPMyAdmin from the Ubuntu repos.
You can do this by update the local references and then use the apt packaging system to pull download the files and install them on our Linux:
sudo apt-get update
sudo apt-get install phpmyadmin
restart Apache with the following cmd:
service apache2 restart
Verify...
For Debian 9 Stretch wireless intel 6205,
1.Add “non-free” component to /etc/apt/sources.list, for example:
# Debian 9 "Stretch"
deb http://httpredir.debian.org/debian/ stretch main contrib non-free
2.Update the list of available packages and install the firmware-iwlwifi package:
# apt-get update; apt-get install firmware-iwlwifi
3.As the iwlwifi module is automatically loaded for supported devices, reinsert this module to...