Mysql
 sql >> Database >  >> RDS >> Mysql

Configurazione di Laravel su un Mac php craft errore di migrazione:nessun file o directory di questo tipo

Se stai usando MAMP assicurati di aggiungere il unix_socket chiave con un valore del percorso che il mysql.sock risiede in MAMP.

'mysql' => array(
        'driver'    => 'mysql',
        'host'      => 'localhost',
        'unix_socket'   => '/Applications/MAMP/tmp/mysql/mysql.sock',
        'database'  => 'database',
        'username'  => 'root',
        'password'  => 'root',
        'charset'   => 'utf8',
        'collation' => 'utf8_unicode_ci',
        'prefix'    => '',
    ),