You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
We had a player report they lost their balance from their crew, when I inspected the logs, I saw this crypic mysql error from simpleclans, scrolling up I see a player with this weird tag for thier clan; [SimpleClans] [ἄνουβις] Aslifecrawls » it gives extra armor and health
ALTERTABLE`sc_players` MODIFY `flags`TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
ALTERTABLE`sc_clans` MODIFY `ranks`TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
Should I do this, is it safe? would this solve the issue?
To Reproduce
Steps to reproduce the behavior:
use weird characters in clan name/tag
use mysql
See error
Software (please complete the following information):
Server: PurPur 1.18.2
Plugin version 2.19.3-snapshot
The text was updated successfully, but these errors were encountered:
Aha perfect, thats the same answer then, using utf8mb4 encoding. I made my SimpleClans tables so many years ago, the encoding may be different for freshly generated tables to be utf8mb4, it looks like the AI is specifying just those errors its been sent, maybe its worthwhile doing it across all of SimpleClans tables, I dont think I want to mess around with global mysql if I can just tell the tables to be the correct encoding.
if not what other colums would be good to update too?
Describe the bug
We had a player report they lost their balance from their crew, when I inspected the logs, I saw this crypic mysql error from simpleclans, scrolling up I see a player with this weird tag for thier clan;
[SimpleClans] [ἄνουβις] Aslifecrawls » it gives extra armor and health
I presume those special characters are breaking saving into the MySQL table for the Database Encoding?
https://gist.github.com/TomLewis/a02d6e0099b72a8e5344bf191e23423c
I put this error into ChatGPT and it asked me to check the schema should be utf8mb4 but its latin1
It suggests to do;
Should I do this, is it safe? would this solve the issue?
To Reproduce
Steps to reproduce the behavior:
Software (please complete the following information):
The text was updated successfully, but these errors were encountered: