MarkE Posted Friday at 11:38 PM Share Posted Friday at 11:38 PM I have enabled the emoticons plugin for TinyMCE. It appears to work when editing the page but, after saving, the emoticon just appears as ???? Any suggestions? Link to comment Share on other sites More sharing options...
wbmnfktr Posted yesterday at 12:43 AM Share Posted yesterday at 12:43 AM Is your database set to utf8mb4? // site/config.php $config->dbCharset = 'utf8mb4'; If not... saving emojis and emoticons won't work as expected. Not sure about the steps to convert a db to accept it. Sorry. 2 Link to comment Share on other sites More sharing options...
MarkE Posted 17 hours ago Author Share Posted 17 hours ago On 3/15/2025 at 12:43 AM, wbmnfktr said: Not sure about the steps to convert a db to accept it Expand ALTER DATABASE databasename CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE tablename CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; Just need to change the field tables which need to hold emoticons 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now