Could this be related to the DB that have latin collation instead of UTF-8?
See attached images for the settings in Language and the error.
See attached images for the settings in Language and the error.
Before installing vBulletin Connect, it is very important that you read the sticky topics in this channel. They provide important information and tutorials on the best practices in using vBulletin Connect.
Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
Useful Links for Guests:
If you are having problems posting in the relevant areas for your software, please see this topic.
ro_RO.utf8
but verify that with your hosting provider as they will be the only ones who know what locales they have installed on the server.
UPDATE vb_text SET rawtext = REPLACE(rawtext, 'Rom?nia', 'România')
UPDATE vb_text SET rawtext = REPLACE(rawtext, '%?n%', '%în%')
Rom?nia
will probably not return any results because the ? isn't actually in the database. It would be the HTML Entity value for that character. In your example you would most likely want to search for România
.SELECT * FROM text WHERE nodeid=4464161
Turneu B+ "WTTD - AmaTur Rom?nia", Constanța - Duminică
SELECT * FROM `vb_text` WHERE rawtext like '%Rom?nia%'
Comment