I get this error in my working environment (CentOS 5.6), but it works fine in development (Ubuntu 11.04). In both environments, the application uses Ruby 1.9.3 and Rails 3.0.9 and is served with passengers and nginx. My version of the mechanical stone is 2.3.
code converter not found (UTF-8)
The last line of this code launches it:
mech = Mechanize.new page = mech.get("http://myurl.com/login.php?login_name=a&password=b") form = page.form_with(:name => "loginForm") form.field_with(:name => "active_pgm").value = '1' page = form.submit
Any ideas? I have config.encoding = "utf-8"
in my .rb application.
source share