Code:
Mysqli statement execute error : Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '=' - library/Zend/Db/Statement/Mysqli.php:214
I'm pretty sure this is a table from MyBB, what happened is that I recently converted to XF and used a redirection script to forward old URLs to new ones, as part of this you had to import the google seo table from MyBB. The issue is that the table was not in utf8. The redirections I tested worked fine but should I be concerned with the above message?
It looks like it was triggered because of this thread:
Code:
array(3) {
["url"] => string(98) "http://www.xyz.com/community/mybbthreadredir.php?slug=%E2%98%85-cool-screenshot-thread-%E2%98%85"
["_GET"] => array(1) {
["slug"] => string(30) "★-cool-screenshot-thread-★"
}
["_POST"] => array(0) {
}
}
If it is an issue, I imagine to reseolve it I'd have to convert this culprit table to utf8 from latin1_swedish and from implicit to coercible, how would I go about doing this?
Thanks,