phpMyAdmin configuration storage is not completely configured

前端 未结 5 623
粉色の甜心
粉色の甜心 2021-02-02 03:22

I have installed xampp 5.6.14 on windows. I open phpmyadmin http://localhost/phpmyadmin/

but warning

! The phpMyAdmin configuration storage is not

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-02 04:22

    The officially distributed create_tables.sql script includes a line to create and use the 'phpmyadmin' database, so perhaps XAMPP changes things.

    Note that I don't use XAMPP and I expected that their installer would have set this all up for you, so there may be something wrong there that should be fixed in a more proper way, but one possible solution might be to download the official phpMyAdmin version of create_tables.sql and use that, or you could just add the following line at the top of your sql file:

    CREATE DATABASE IF NOT EXISTS `phpmyadmin`
      DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
    USE phpmyadmin;
    

提交回复
热议问题