Reputation: 479
Some day, when i wanted to enter django admin, i couldn't do this, because of this error. I dont remember what i've done, and dont notice, when this error start to appear..
here' full traceback: http://dpaste.com/418718/
Sorry for my english
Upvotes: 0
Views: 2401
Reputation: 9101
I got this error when reading data from a Mysql table. The database had some fields in latin1 format. Converting them to utf8 format helped.
Upvotes: 0
Reputation: 798744
The database field is too small for the data in it, and silently truncated it on insertion. You'll need to repair the data by hand, and make the field larger as well.
Upvotes: 2