You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2006/08/28 00:01:44 UTC

[Solr Wiki] Update of "FAQ" by HossMan

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The following page has been changed by HossMan:
http://wiki.apache.org/solr/FAQ

------------------------------------------------------------------------------
  
  If you notice a problem with multibyte characters, the first step to ensuring that it is not a true Solr bug would be to write a Unit test that bypasses the applicaiton server directly using the [http://incubator.apache.org/solr/docs/api/org/apache/solr/util/AbstractSolrTestCase.html AbstractSolrTestCase].
  
+ == Solr started, and i can POST documents to it, but the admin screen doesn't work ==
+ 
+ The admin screens are implimented using JSPs which require a JDK (instead of just a JRE) to be compiled on the fly.  If you encounter errors trying to load the admin pages, and the stack traces of these errors seem to relate to compilation of JSPs, make sure you have a JDK installed, and make sure the it is the instance of java being used.
+ 
+ NOTE: Some Servlet Containers (like Tomcat5.5 and Jetty6) don't require a JDK for JSPs.
+ 
+ 
+ 
  = Developing =
  
  == Where can I find the latest and Greatest Code? ==