I'm getting the following error with my Ruby 1.9 & Rails 2.3.4. This happens when user submits a non-ASCII standard character.

I read a lot of online resources but none seems to have a solution that worked!

I tried using (as some resources suggested)

string.force_encoding('utf-8')

But it didn't help!

Any ideas how to resolve this? is there a way to eliminate such characters before saving to DB? or is a there a way to make them show?

Thanks,

Tam

link|improve this question

4  
There is a good post about it on Yehuda Katz blog: yehudakatz.com/2010/05/17/encodings-unabridged – makevoid May 20 '10 at 17:20
feedback

3 Answers

up vote 0 down vote accepted

I don't know much about Ruby (or Rails), but I imagine the problem is caused by a lack of control over your character encodings.

First, you should decide which encoding you're storing in your database. Then, you need to make sure to convert all text to that encoding before storing in the database. In order to do that, you first need to know which encoding it is to begin with.

One often repeated piece of advice is to decode all input from whatever encoding it uses, to unicode (if your language supports it) as soon as possible after you get control of it. Then you know that all the text you handle in your program is unicode. On the other end, encode the text to whatever output-encoding you want as a last step before outputting it.

The key is to always know which encoding a piece of text is using at any given place in your code.

link|improve this answer
feedback

For ruby 1.9 and Rails 3.0.x, use the mysql2 adapter.

In your gemfile

gem 'mysql2', '~> 0.2.7'

and update your database.yml to

adapter: mysql2

http://www.rorra.com.ar/2010/07/30/rails-3-mysql-and-utf-8/

link|improve this answer
1  
Thanks, this worked great for me. But be warned that mysql2 v0.3.* throws errors with Rails 3.0.7. stackoverflow.com/questions/3467054/… – aNoble Jul 7 '11 at 20:47
1  
I was struggling with the incompatible character encodings: ASCII-8BIT and UTF-8 while using rack-webconsole — then I found this post. Thanks, @Jhony Fung! – Ben Kreeger Aug 10 '11 at 14:18
feedback

I've come across this problem too. I noticed in my case that it is when I use the translation in the .yml with I18n. If the translation has a tilde it brings up the error. Like in "votación"... the error won't show if I spell the word without the tilde like in "votacion".

Any hints?

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.