PDA

View Full Version : phpMyAdmin 2.2.2 vs. 2.2.0


Jet
Tue 18th Dec '01, 11:44am
Hi. I just tried to install the new 2.2.2 release (there's in dev the 2.2.3 but this is the Release).
But nothing works... :(
I always used the 2.2.0 without any problem, with a single user and a single db.... :p

Of course, I customized (a little) the new config.inc.php file as I did with the old one, even the new $cfgPmaAbsoluteUri variable, but ...
Actually, I specified only the following vars:
$cfgServers[1]['host']
$cfgServers[1]['user']
$cfgServers[1]['password']
$cfgServers[1]['only_db']
$cfgServerDefault = 1;
$cfgServer = 'localhost';

Actually the program (index.... url in browser) starts, but there isn't any database selected, neither I can select anyone...
Any idea ?
Thanks a lot.
Bye

Pingu
Wed 19th Dec '01, 7:21pm
I've got the same things specified as you, minus one thing, I've left the 'only_db' option empty:

$cfgServers[1]['host'] = 'localhost';
$cfgServers[1]['connect_type'] = 'tcp';
$cfgServers[1]['adv_auth'] = FALSE;
$cfgServers[1]['user'] = 'username';
$cfgServers[1]['password'] = 'userpassword';
$cfgServers[1]['only_db'] = '';


Works for me

Jet
Thu 20th Dec '01, 7:06am
Thanks.
Now it works and selects automatically the unique DB I have.
Absolutely I don't know how, but works!
;)
Bye