“
Invalid server index: “”
“
After googling around I found that this problem was occurring due to a undefined variable in the “config.inc.php” file. In order to resolve the situation I wrote the following lines of code inside “config.inc.php” file and now it is working fine.
“
$i=1;
$cfg['PmaAbsoluteUri'] = ‘http://localhost/phpMyadmin/’;
$cfg['blowfish_secret'] = ‘holla’;
$cfg['Servers'][$i]['host'] = ‘localhost’;
$cfg['Servers'][$i]['auth_type'] = ‘cookie’;
$cfg['Servers'][$i]['user'] = ‘root’;
$cfg['Servers'][$i]['password'] = ‘myrootpassword’;
?>
“
phpMyAdmin – 2.10.1
“
After googling around I found that this problem was occurring due to a undefined variable in the “config.inc.php” file. In order to resolve the situation I wrote the following lines of code inside “config.inc.php” file and now it is working fine.
“
$i=1;
$cfg['PmaAbsoluteUri'] = ‘http://localhost/phpMyadmin/’;
$cfg['blowfish_secret'] = ‘holla’;
$cfg['Servers'][$i]['host'] = ‘localhost’;
$cfg['Servers'][$i]['auth_type'] = ‘cookie’;
$cfg['Servers'][$i]['user'] = ‘root’;
$cfg['Servers'][$i]['password'] = ‘myrootpassword’;
?>
“
No comments:
Post a Comment