Gentoo Archives: gentoo-user

From: Joseph <syscon780@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] The phpMyAdmin configuration storage is not completely configured,
Date: Mon, 12 Dec 2011 17:05:59
Message-Id: 20111212170511.GA4792@syscon5.inet
1 I have this strange problem with phpmyadmin, error:
2 The phpMyAdmin configuration storage is not completely configured, some extended features
3 have been deactivated. To find out why click here.
4
5 I solve it in the past by generating phpmyadmin database and controluser, instruction in
6 this link:
7 http://www.phpfreaks.com/forums/index.php?topic=335580.0
8
9 Though I'm going through this procedure again and it doesn't work.
10
11 my config.ing.php
12
13 /* Servers configuration */
14 $i = 0;
15
16 /* Server: localhost [1] */
17 $i++;
18 $cfg['Servers'][$i]['verbose'] = '';
19 $cfg['Servers'][$i]['host'] = 'localhost';
20 $cfg['Servers'][$i]['port'] = '';
21 $cfg['Servers'][$i]['socket'] = '';
22 $cfg['Servers'][$i]['connect_type'] = 'tcp';
23 $cfg['Servers'][$i]['extension'] = 'mysqli';
24 $cfg['Servers'][$i]['auth_type'] = 'cookie';
25 $cfg['Servers'][$i]['user'] = 'root';
26 $cfg['Servers'][$i]['password'] = '';
27
28 /* End of servers configuration */
29
30 $cfg['blowfish_secret'] = '4ee6286bdb41d1.96573143';
31 $cfg['UploadDir'] = '';
32 $cfg['SaveDir'] = '';
33 $cfg['DefaultLang'] = 'en';
34 $cfg['ServerDefault'] = 1;
35
36 /* configuration storage */
37 $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
38 $cfg['Servers'][$i]['controluser'] = 'phpmyadmin';
39 $cfg['Servers'][$i]['controlpass'] = 'xxxxxxxxxxxx';
40 $cfg['Servers'][$i]['relation'] = 'pma_relation';
41 $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
42 $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
43 $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
44 $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
45 $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
46 $cfg['Servers'][$i]['history'] = 'pma_history';
47 $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
48 $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
49 $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
50
51 --
52 Joseph

Replies

Subject Author
Re: [gentoo-user] The phpMyAdmin configuration storage is not completely configured, Michael Hampicke <gentoo-user@××××.biz>
Re: [gentoo-user] The phpMyAdmin configuration storage is not completely configured, Paul Hartman <paul.hartman+gentoo@×××××.com>