From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-user+bounces-132375-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1Ra9KA-0004Go-Kd
	for garchives@archives.gentoo.org; Mon, 12 Dec 2011 17:05:59 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 28F8021C16C;
	Mon, 12 Dec 2011 17:05:43 +0000 (UTC)
Received: from mail.shawcable.com (shawmail.shawcable.com [64.59.128.220])
	by pigeon.gentoo.org (Postfix) with ESMTP id E62FA21C10E
	for <gentoo-user@lists.gentoo.org>; Mon, 12 Dec 2011 17:04:13 +0000 (UTC)
Received: from bpd2mi5no-svcs.prod.shawcable.com ([10.0.184.160])
  by bpd2mo1no-ssvc.prod.shawcable.com with ESMTP; 12 Dec 2011 10:04:13 -0700
X-Cloudmark-SP-Filtered: true
X-Cloudmark-SP-Result: v=1.1 cv=t+ZAJ7mrPn0ghCTQRrYVa3vbw5sbuRhC9KBpKnc45f0= c=1 sm=1
 a=wom5GMh1gUkA:10 a=DLuIO6d1P5EA:10 a=nDghuxUhq_wA:10 a=BLceEmwcHowA:10
 a=8nJEP1OIZ-IA:10 a=dgx804EzjhD8CRYpIFkhZA==:17 a=2v7OR-93AAAA:8
 a=K37_G60U3tJzzuMQAwQA:9 a=ysHcFPUd5dnYLINDckYA:7 a=wPNLvfGTeEIA:10
 a=RiSJpls90GwA:10 a=489kGEpN-TUA:10 a=Ce8kLwEWhr4iqM56:21
 a=4QSdQt6PdAS05pxn:21 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117
X-IronPort-AV: E=Sophos;i="4.71,339,1320649200"; 
   d="scan'208";a="350125161"
Received: from unknown (HELO bpd2mi5no-cmts.prod.shawcable.com) ([192.168.183.160])
  by bpd2mi5no-cmts.prod.shawcable.com with ESMTP; 12 Dec 2011 10:04:13 -0700
X-reinject: true
Received: from unknown (HELO syscon5.localdomain) ([68.148.245.78])
  by bpd2mi5no-dmz.prod.shawcable.com with ESMTP; 12 Dec 2011 10:04:13 -0700
Received: by syscon5.localdomain (Postfix, from userid 1000)
	id 9319B22158F; Mon, 12 Dec 2011 10:05:11 -0700 (MST)
Date: Mon, 12 Dec 2011 10:05:11 -0700
From: Joseph <syscon780@gmail.com>
To: gentoo-user@lists.gentoo.org
Subject: [gentoo-user] The phpMyAdmin configuration storage is not completely configured,
Message-ID: <20111212170511.GA4792@syscon5.inet>
Precedence: bulk
List-Post: <mailto:gentoo-user@lists.gentoo.org>
List-Help: <mailto:gentoo-user+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-user+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-user+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-user.gentoo.org>
X-BeenThere: gentoo-user@lists.gentoo.org
Reply-to: gentoo-user@lists.gentoo.org
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1; format=flowed
Content-Disposition: inline
User-Agent: Mutt/1.5.21 (2010-09-15)
X-Archives-Salt: f12a6810-a960-42bc-9060-3a1e4e6b00ee
X-Archives-Hash: 8fcb3f6444668164ec8b40f5b7c16ea1

I have this strange problem with phpmyadmin, error:
The phpMyAdmin configuration storage is not completely configured, some extended features 
have been deactivated. To find out why click here.

I solve it in the past by generating phpmyadmin database and controluser, instruction in 
this link:
http://www.phpfreaks.com/forums/index.php?topic=335580.0

Though I'm going through this procedure again and it doesn't work.

my config.ing.php

/* Servers configuration */
$i = 0;

/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';

/* End of servers configuration */

$cfg['blowfish_secret'] = '4ee6286bdb41d1.96573143';
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
$cfg['DefaultLang'] = 'en';
$cfg['ServerDefault'] = 1;

/* configuration storage */
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['controluser'] = 'phpmyadmin';
$cfg['Servers'][$i]['controlpass'] = 'xxxxxxxxxxxx';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';

-- 
Joseph