SQLSTATE[42000]: Syntax error or access violation: 1115 Unknown character set: 'utf8mb4'
Error:
SQLSTATE[42000]: Syntax error or access violation: 1115 Unknown character set: 'utf8mb4'
Solution:
Go to config/database.php and replace these two lines with these
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
SQLSTATE[42000]: Syntax error or access violation: 1115 Unknown character set: 'utf8mb4'
Solution:
Go to config/database.php and replace these two lines with these
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
Komentar