Further I have the browser_filter plugin installed.
Searching is working great, the problem is that when I enter Umlauts in
the
search field they are not correctly transferred to the controller and
resulting view.
For example if I enter “ä” in the search field the request parameters
are
these:
Safari:
{“search”=>“\344”, ““=>”“}
Firefox:
{“search”=>“��”,””=>“”}
In the log I see searches for ‘?’ that will not find results with “ä”
but
with “a”.
You have to also verify that all of your components treat Unicode
properly (from the database to HTML and back).
Unicode seems to work everywhere else. All my content is UTF-8 in MySQL
and
storing/retrieving works normally. Only the AJAX calls fail to treat
UTF-8
correcly.