Hata Kodları ve Çözümleri

Hata Kodları ve Çözümleri

Syntax error or access violation: 1115 Unknown character set: utf8mb4

Go to config/database.php and replace these two lines with these

'charset' => 'utf8', 'collation' => 'utf8_unicode_ci',
1st - edit your .env file

DB_CHARSET=utf8
DB_COLLATION=utf8_unicode_ci
2nd - If you don't use env-file just edit config/database.php

'charset' => 'utf8',  
'collation' => 'utf8_unicode_ci',