On Fri, Jan 25, 2013 at 10:38 AM, Hilton Gibson <[email protected]> wrote: > Can someone tell me why this is a SEVERE error. Thx. > >>>> > SEVERE: org.apache.solr.common.SolrException: > org.apache.lucene.queryParser.ParseException: Cannot parse > 'subject_filter:team\': Lexical error at line 1, column 21. Encountered: > <EOF> after : ""
It's SEVERE because Lucene (the one contained in Solr) declared it as such. There's nothing DSpace can do about it. This seems to be some invalid data in your repository causing facets to fail, namely an invalid character in the subject metadata. Most likely the backslash at the end causing it to interpret the next character (EOF) as part of the data. If you have a problem finding the offending item, search for it in the database: SELECT * FROM metadatavalue WHERE text_value LIKE '%team%' LIMIT 30 Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette ------------------------------------------------------------------------------ Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs and experts. ON SALE this month only -- learn more at: http://p.sf.net/sfu/learnnow-d2d _______________________________________________ DSpace-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/dspace-tech List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

