Extended characters like 😁 are causing a problem in comments but also in show notes.
[06-Jan-2026 08:31:40 UTC] PHP Fatal error: Uncaught mysqli_sql_exception: Incorrect string value: '\xF0\x9F\x98\x81\x0D\x0A' for column `hpr_hpr`.`comments`.`comment_text` at row 1 in /home/hpr/public_html/cms/comment_process.php:126
- https://stackoverflow.com/questions/1168036/how-to-fix-incorrect-string-value-errors
- https://www.w3tutorials.net/blog/incorrect-string-value-when-trying-to-insert-utf-8-into-mysql-via-jdbc/
ken_fallon
self-assigned this 2026-01-06 08:38:22 +00:00
ALTER TABLE eps
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
and
ALTER TABLE assets ENGINE=InnoDB;
for every table
database now supports utf8mb4_unicode_ci
```
ALTER TABLE eps
CONVERT TO CHARACTER SET utf8mb4
COLLATE utf8mb4_unicode_ci;
```
and
```
ALTER TABLE assets ENGINE=InnoDB;
```
for every table
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Extended characters like 😁 are causing a problem in comments but also in show notes.
[06-Jan-2026 08:31:40 UTC] PHP Fatal error: Uncaught mysqli_sql_exception: Incorrect string value: '\xF0\x9F\x98\x81\x0D\x0A' for column
hpr_hpr.comments.comment_textat row 1 in /home/hpr/public_html/cms/comment_process.php:126database now supports utf8mb4_unicode_ci
and
for every table