The Linux “tar” stands for tape archive, which is used by a large number of Linux/Unix system administrators to deal with tape drive backup in Linux.The tar command is used to rip a collection of files and directories into a highly compressed archive file commonly called tarball or tar, gzip and bzip in Linux.The tar is...
2022-10-06
2022-10-04
How to Fix “The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here.”
This works with MariaDB. I assume it works with MySQL, but have not tried it.
Run this SQL in PHPMyAdmin with phpmyadmin selected: GRANT SELECT, INSERT, UPDATE, DELETE ON phpmyadmin.* TO 'pma'@'localhost';
FLUSH PRIVILEGES;Note that this does not grant "ALL PRIVILEGES" because it is not necessary....