I'm migrating an application to another server and it returns me this error:
Server sent charset unknown to the client. Please, report to the developers
I thin this is about charset or collection but in mysql workbench it tells me that my database settings is this:
default collaction: utf8_general_ci
default charset: utf8
I put this in my config file, clean cache but the error continuous.
'mysql' => [
'driver' => 'mysql',
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'collation' => 'utf8_general_ci',
'prefix' => '',
'strict' => false,
'engine' => null,
],