0

请帮助我深入了解此错误:

致命错误:未捕获的异常 'Doctrine_Connection_Exception' 带有消息'PDO 连接错误:SQLSTATE [28000] [1045] 用户'root'@'localhost' 的访问被拒绝(使用密码:否)'

检查了我的数据库配置文件,它读取正确,

下面是我的配置文件:

$db['default']['hostname'] = 'localhost';
$db['default']['username'] = 'root';
$db['default']['password'] = 'mypassword';
$db['default']['database'] = 'mydb';
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;

如果有任何帮助,我正在运行 Doctrine 2.xx + COdeigniter 2.xx

4

1 回答 1

0

在 phpmyAdmin 中删除密码似乎可以解决问题,尽管是暂时的。

有趣的是,编辑codeigniter

配置文件

似乎不会影响连接状态/错误。

确保通过注释掉允许没有密码的 phpmyAdmin 登录

$cfg['Servers'][$i]['AllowNoPassword'] = TRUE;

/etc/phpmyadmin/config.inc.php

谢谢。

于 2012-07-05T13:47:46.323 回答