There are some configuration options in the main.php file of the Yii structure. This is how it installs mysql
'db'=>array( 'connectionString' => 'mysql:host=localhost;dbname=testdrive', 'emulatePrepare' => true, 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', ),
On my MAMP system, I have to specify the port as 8889. How would I add it to this?
thanks
Leahcim
source share