On Fri, Aug 13, 2010 at 3:20 AM, Andrea Gazzarini <andrea.gazzar...@atcult.it> wrote: > Hi, > I have a problem regarding a diacritic character on my query string : > > *q=intertestualità > * > which is encoded in > > *q=intertestualit%E0
The correct encoding is q=intertestualit%C3%A0 But I can see how you may have obtained the incorrect %E0 - it looks like current versions of Firefox have a URL encoding bug that does this. Here's a demonstration of the firefox bug: 1) index the example data in exampledocs 2) go to the solr admin page http://localhost:8983/solr/admin/ 3) put héllo into the search box and verify that it finds the example solr doc 4) make an insignificant change to the URL firefox is displaying and re-submit What happens: the URL firefox crafted from the form displayed héllo (not URL encoded) - this is fine since what is in the address bar is just for display purposes. But when you edit and resubmit, it changes the encoding to h%E9llo, which is incorrect URL encoding (should be h%C3%A9llo) and hence it now fails to find the document anymore. -Yonik http://www.lucidimagination.com