no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | phpmyadmin [2015/06/01 23:17] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== phpMyAdmin ====== | ||
+ | |||
+ | * [[MySQL]] | ||
+ | |||
+ | ==== Configuration ==== | ||
+ | |||
+ | Setup a new user for PMA: | ||
+ | |||
+ | < | ||
+ | mysql -e " | ||
+ | mysql -e "GRANT ALL PRIVILEGES ON *.* TO pma@localhost WITH GRANT OPTION;" | ||
+ | </ | ||
+ | |||
+ | To setup a configuration that uses the config file for authentication, | ||
+ | |||
+ | < | ||
+ | $cfg[' | ||
+ | $cfg[' | ||
+ | $cfg[' | ||
+ | $cfg[' | ||
+ | # $cfg[' | ||
+ | </ | ||
+ | |||
+ | Disable version check, which runs over http and breaks the https seal: | ||
+ | |||
+ | < | ||
+ | $cfg[' | ||
+ | </ | ||
+ | |||