Not able to see database tables through PHPMyAdmin 2.11.2

Status
Not open for further replies.

xdan78

New Member
Messages
1
Reaction score
0
Points
0
Hi,

I am trying to connect to my db using PHPMyAdmin, but when I select the authtentification method "cookie" I am not able to see the db tables, however it seems to log in and I can see the name of the db there.

Could anyone make any suggestion on why this happens? I am pasting the code here, obviously "X" is for sensible data:


<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 2.11.2 setup script by Michal Čihař <michal@cihar.com>
* Version: $Id: setup.php 10748 2007-10-10 07:30:59Z cybot_tm $
* Date: Sun, 11 Nov 2007 22:19:26 GMT
*/

/* Servers configuration */
$i = 0;

/* Server mysql234 (cookie) [1] */
$i++;
$cfg['Servers'][$i]['host'] = 'XXX.XXX.XXX.XXX'';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['controluser'] = 'XXX';
$cfg['Servers'][$i]['controlpass'] = 'XXX';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['only_db'] = 'XXX';
$cfg['Servers'][$i]['verbose'] = ' XXX';
$cfg['Servers'][$i]['SignonSession'] = 'danielo';

/* End of servers configuration */

$cfg['blowfish_secret'] = '47377e85e16c56.28709520';
?>
Any guidance would be highly appreciated.

Thanks,

xDan
 
Status
Not open for further replies.
Top