I have migrated a yii framework webapp to a 1&1 server and i am having troubles to connect with the database. The error is:
CDbConnection failed to open the DB connection: SQLSTATE[HY000] [2002] Connection refused
In my config/main.php i have this:
'db'=>array(
'connectionString' => 'mysql:host=localhost:/tmp/mysql5.sock;dbname=nombrebasededatos',
'emulatePrepare' => true,
'username' => 'nombreusuario',
'password' => 'password,',
'charset' => 'utf8',
),
Why can this be happening to me?