This is an old revision of the document!
Debian 10/11, other than Debian 9, require manual installation of phpmyadmin, phpmyadmin has been removed from Debian's repositories.
$ wget https://files.phpmyadmin.net/phpMyAdmin/5.2.0/phpMyAdmin-5.2.0-english.tar.gz
apache.conf later) and set ownership:$ tar xvf phpMyAdmin-5.2.0-english.tar.gz sudo mv phpMyAdmin-5.2.0-english/ /home/user/html/phpMyAdmin $ sudo chown -R www-data:www-data /home/user/html/phpMyAdmin
/home/user/html/phpMyAdmin).sudo mkdir -m770 /home/user/html/phpMyAdmin/tmp
config.sample.inc.php to config.inc.php and edit as follows$ sudo vim /home/user/html/phpMyAdmin/config.inc.php $cfg['blowfish_secret'] = 'new 32 byte secret key';
config.inc.php:$cfg['FirstLevelNavigationItems'] = 150; // number of databases in navigation, default: 100 $cfg['MaxNavigationItems'] = 150; // number of tables in db navigation, default: 50 $cfg['NavigationWidth'] = 300; // width of the navigation window, default: 240 $cfg['RetainQueryBox'] = true; // retain query box, results of query shown below box, default: false $cfg['ShowPhpInfo'] = true; // show phpinfo link on home screen, default: false $cfg['TempDir'] = '/home/user/html/phpMyAdmin/tmp'; // you may omit this line as the default is ./tmp
config.inc.php unchanged. The pma settings are better done within phpMyAdmin, where you click “Find out why” in the warning at the bottom of the screen when you first run phpMyAdmin, and then create the database phpmyadmin which will contain those settings./home/user/html/phpMyAdmin/apache.conf:# phpMyAdmin default Apache configuration
Alias /phpmyadmin /home/bco/html/phpMyAdmin
<Directory /home/bco/html/phpMyAdmin>
Options SymLinksIfOwnerMatch
DirectoryIndex index.php
<IfModule mod_php.c>
<IfModule mod_mime.c>
AddType application/x-httpd-php .php
</IfModule>
<FilesMatch ".+\.php$">
SetHandler application/x-httpd-php
</FilesMatch>
php_value include_path .
php_admin_value upload_tmp_dir /home/bco/html/phpMyAdmin/tmp
php_admin_value open_basedir /home/bco/html/phpMyAdmin/:/usr/share/
</IfModule>
</Directory>
# Authorize for setup
<Directory /home/bco/html/phpMyAdmin/setup>
<IfModule mod_authz_core.c>
<IfModule mod_authn_file.c>
AuthType Basic
AuthName "phpMyAdmin Setup"
AuthUserFile /home/bco/html/phpMyAdmin/htpasswd.setup
</IfModule>
Require valid-user
</IfModule>
</Directory>
# Disallow web access to directories that don't need it
<Directory /home/bco/html/phpMyAdmin/templates>
Require all denied
</Directory>
<Directory /home/bco/html/phpMyAdmin/libraries>
Require all denied
</Directory>
<Directory /home/bco/html/phpMyAdmin/setup/lib>
Require all denied
</Directory>
# Secure access to phpMyAdmin by restricting access to it's parent, for example by IP address or domain name, local or external
<Directory /home/bco/html>
<RequireAny>
Require ip 127.0.0.1
Require forward-dns ddns.domain.name
</RequireAny>
</Directory>
Require all denied as we will not use the setup script. However, if you do want to use the setup script prior to creating config.inc.php, first create the password file to access the setup script's directory:$ sudo htpasswd -c /home/user/html/phpMyAdmin/htpasswd.setup user
$ sudo ln -s /home/user/html/phpMyAdmin/apache.conf /etc/apache2/conf-enabled/phpmyadmin.conf $ sudo service apache2 restart
sudo mariadb GRANT ALL PRIVILEGES ON *.* TO 'user'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; exit
/phpmyadmin to any website url hosted on the same server.Edit /etc/apache2/conf-available/phpmyadmin.conf:
Alias /phpmyadmin /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
Options FollowSymLinks
DirectoryIndex index.php
# Allow user to access without password
Include conf-available/user-access.conf
<IfModule mod_php5.c>
<IfModule mod_mime.c>
AddType application/x-httpd-php .php
</IfModule>
<FilesMatch ".+\.php$">
SetHandler application/x-httpd-php
</FilesMatch>
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_admin_flag allow_url_fopen Off
php_value include_path .
php_admin_value upload_tmp_dir /var/lib/phpmyadmin/tmp
php_admin_value open_basedir /usr/share/phpmyadmin/:/etc/phpmyadmin/:/var/lib/phpmyadmin/:/usr/share/php/php-gettext/:/usr/share/javascript/:/usr/share/php/tcpdf/
</IfModule>
</Directory>
conf-available/user-access.conf contains:
# Allow user to access without password Require ip www.xx.yyy.zzz