So I just downloaded yii2 project from server using Winscp to run it in my local, but when I run it gives me the error: CDbConnection failed to open the DB connection: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: NO). I've checked the user privileges and I've grant all privileges. (user table mysql).
Here's the main.php:
'db'=>array(
'connectionString' => 'mysql:host=127.0.0.1;dbname=serena',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
),
NO? (First off, please set a password for root for security, and please create a separate mysql user account with password and necessary privileges for accessing the db)