0

当我在互联网上上传我的网站时出现此错误。这是整个错误

CDbConnection failed to open the DB connection: SQLSTATE[28000] [1045] Access denied for user 'glochina_ehsan'@'localhost' (using password: YES) 

这是我的配置文件中的代码。

'connectionString' => 'mysql:host=localhost;port=3306;dbname=golchina_sanayedasti',
            'emulatePrepare' => true,
            'username' => 'glochina_ehsan',
            'password' => '**',
            'charset' => 'utf8',
4

1 回答 1

2

您的数据库前缀是“golchina”,而您的用户名前缀是“glochina”。

“o”和“l”颠倒了。这是故意的还是错字?

于 2012-04-09T06:34:54.503 回答