Can a moderator remove this item? I posted at the wrong site, by misstake and can't erease this item.
Thanks / Tomas

Comments

klucid’s picture

I'm having the same issue.

aarsic’s picture

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?

taskjo’s picture

Same problem. I am running 7.x distribution of recruiter and the error happens on new user trying to register.

purabdk’s picture

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.