By WhiplashInfo on
Can a moderator remove this item? I posted at the wrong site, by misstake and can't erease this item.
Thanks / Tomas
Can a moderator remove this item? I posted at the wrong site, by misstake and can't erease this item.
Thanks / Tomas
Comments
I'm having the same issue.
I'm having the same issue.
I also get this error trying
I also get this error trying to post a new article: PDOException: SQLSTATE[HY000]: General error: 1366 Incorrect string value:
Anyone know what it means?
Same problem. I am running
Same problem. I am running 7.x distribution of recruiter and the error happens on new user trying to register.
Problem solved by covnerting the string to UTF-8
It issue happen when character set is not in UTF-8 format.
If you got the error while using the db_insert then you can use the following code
$val = mb_check_encoding($val, 'UTF-8') ? $val : utf8_encode($val);
if it is just matter of some field values.