Good day. I configure additional features of phpmyadmin. There was an error:

The phpMyAdmin configuration store is not fully configured, some advanced features have been disabled.

Versions:
phpmyadmin 4.7.5
MySQL 5.6
Apach 2.4
PHP: 5.6.3
I work on Windows7 X64

  1. Created user pma, gave him global privileges (see screenshot). User privileges
  2. I created the phpmyadmin database, imported the create_tables.sql file from phpMyAdmin \ sql, and then the upgrade_tables_4_7_0 + .sql file (as stated in the phpmyadmin manual)
  3. Created a file config.inc.php, here's what's inside: File inside

After that, an error occurred. How can I fix and properly connect extensions?

    1 answer 1

    1) Import the file /scripts/create_tables.sql located in phpMyAdmin.

    2) Add a line to the configuration file config.inc.php:

    $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig'; 

    3) Clear your browser cookies and log in to phpMyAdmin.

    Infu took from sudu https://forum.php-myadmin.ru/viewtopic.php?id=2213

    • The problem is that there is no such folder. The file create_tables.sql is in the folder /sql/create_tables.sql Import the file from the sql folder, but it does not solve the problem - Sergey