Перейти к основному содержанию

MySQL 8 — Server sent charset unknown to the client. Please, report to the developers

MySQL 8

На старом форуме phpBB после перевода базы на MySQL 8 столкнулся с ошибкой:

Server sent charset unknown to the client. Please, report to the developers.

Лечим. Находим файл конфигурации MySQL 8. В Windows он лежит по адресу:

C:\ProgramData\MySQL\MySQL Server 8.0\my.ini

utf8

Вносим изменения:

[client]
default-character-set=utf8

[mysql]
default-character-set=utf8

[mysqld]
collation-server = utf8_unicode_ci
character-set-server = utf8

Теги

 

Похожие материалы

PHPBB — отключить debug-сообщения [phpBB Debug] PHP Warning

С переходом на новую версию PHP на форуме PHPBB 3.0 стали появляться сообщения вида: [phpBB Debug] PHP Warning: in file [ROOT]/includes/functions_content.php on line 693: preg_replace(): The /e modifier is no longer supported, use preg_replace_callback instead. Версии форумов PHPBB 3.0, PHPBB 3.2

Теги