yii-app icon indicating copy to clipboard operation
yii-app copied to clipboard

Database password mismatch

Open iurquiza opened this issue 10 years ago • 1 comments

The password used in bootstrap.sh script

create database

mysql -uroot -pyii_app -e "CREATE DATABASE IF NOT EXISTS yii_app CHARACTER SET utf8 COLLATE utf8_general_ci;" does not match the password in dev. environment config. file (main-environment.php) 'db' => array( 'connectionString' => 'mysql:host=localhost;dbname=yii_app', 'username' => 'root', 'password' => 'vagrant', 'charset' => 'utf8', 'enableProfiling' => true, 'enableParamLogging' => true, ),

It is not a big deal but making them match will help to have the app configured in the Virtualbox up and running easier.

iurquiza avatar Mar 13 '14 20:03 iurquiza

This is a good idea, could you create a PR for this?

crisu83 avatar May 12 '14 07:05 crisu83