I am currently running a honeypot to catch forum spammers, and I have been having problems with storing non Latin characters in my database, I have utf8_unicode_ci set on database and table level and I use mysql_query("SET NAMES 'utf8'") to make sure the information is sent as utf8.

Information such as time is stored as int. IP, username and such is stored as Varchar and text, the only difference with the spam data is that I use base64_encode(htmlspecialchars()) before I insert the data, and that the spam column is stored in medium blob and I use COMPRESS() in the query for that column.

With Latin characters it returns the correct data, but with non-Latin characters such as Russian and Thai it does not return the correct data.

For example:

Уровня конечного начальники или не

Will return as:

Ð£Ñ€Ð¾Ð²Ð½Ñ ÐºÐ¾Ð½ÐµÑ‡Ð½Ð¾Ð³Ð¾ начальнÐ

or just diamonds with question marks in them.

I managed to store this information correctly years ago when I created a forum but I can not remember how I managed to get it to store correctly, I have been searching all day and have not been able to find a solution that worked for me.

Edit: Extra info if its any help.

  • Apache/2.2.14 (Ubuntu)
  • MySQL client version: 5.1.41
  • PHP extension: php5-mysql
link|improve this question
What kind of encode do you have on your webpage? Is it UTF-8? – Aurelio De Rosa Oct 29 '11 at 16:38
utf8 set in a meta tag and set via header("Content-Type: text/html; charset=utf-8"); – Connorw600 Oct 29 '11 at 17:05
Can you post your CREATE statement for the table in question? – Chris Henry Oct 29 '11 at 20:21
Here it is properly formatted pastebin.com/kb8LG6qR – Connorw600 Oct 29 '11 at 21:40
Try setting the charset right after selecting a database with mysql_set_charset('utf8'). – abruski Oct 30 '11 at 5:31
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

Turns out that the page that sends spam submissions from my domains to the main hub didn't have header("Content-Type: text/html; charset=utf-8"); So when a query was made to the page it was getting corrupted there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.