The full details are farther down in the stack...

: null:org.apache.solr.common.SolrException: SolrCore 'master' is not
: available due to init failure: Error initializing QueryElevationComponent.
        ...
: Caused by: org.apache.solr.common.SolrException: Error initializing
: QueryElevationComponent.
        ...
: Caused by: org.apache.solr.common.SolrException:
: org.xml.sax.SAXParseException; systemId: solrres:/elevate.xml; lineNumber:
: 28; columnNumber: 80; The reference to entity "ver" must end with the ';'
: delimiter.

The problem is that your elevate.xml is not a valid XML file at all -- you 
have a bare "&" character in there (as part of your "id" which is not 
valid in XML -- you are confusing hte parser into thinking that you intend 
for "&ver" to be an XML entity but you are missing the ";" at the end (and 
even if you had that, then you'd get an error that the entity "&ver;" is 
not defined) ...

: id="sitecore://master/{137f5eb3-eb84-4165-bef0-5be1fbbc3201}?lang=en&ver=1"/>


you need to use valid XML, so that id attribute should be something 
like...

id="sitecore://master/{137f5eb3-eb84-4165-bef0-5be1fbbc3201}?lang=en&ver=1"


-Hoss
http://www.lucidworks.com/

Reply via email to