yii2 database connection to mysql on a mac os SQLSTATE[HY000] [2002] No such file or directory Hello, I would apprciate any help. Im using the prebuilt yii2 template and im trying to connect my local mysql database to it but its not working. ive tried everything in this stackoverflow page SQLSTATE[HY000] [2002] No such file or directory in yii2 but no luck.
<?php
return [
'class' => 'yii\db\Connection',
'dsn'=>'mysql:host=127.0.0.1;dbname=new_table',
'username' => 'root',
'password' => 'root',
'charset' => 'utf8',
// Schema cache options (for production environment)
//'enableSchemaCache' => true,
//'schemaCacheDuration' => 60,
//'schemaCache' => 'cache',
]; ?>