I am new for solr. I have installed apache tomcat 7.0 on my server and I have solr 3.6.1 on server.
I have solr-home folder set by network guys on my D:\\ drive. Th
Had similar problem, my issue was with symlinks (solr didn't follow them).
you have to edit solrconfig.xml and add the path to the library as well, e.g.:
<lib dir="../../../../dist/" regex="apache-solr-dataimporthandler-.*\.jar" />
..if you still have it in that directory. In the example solrconfigs I found they put it right underneath
<luceneMatchVersion>LUCENE_40</luceneMatchVersion>
The problem with solr-5.2.0 version. when i switched to solr-5.5.0, The issue has been resolved.
In solr-4.3.0 while trying to implement: http://wiki.apache.org/solr/DIHQuickStart adding:
<lib dir="../../../contrib/dataimporthandler/lib" regex=".*\.jar" />
<lib dir="../../../dist/" regex="solr-dataimporthandler-.*\.jar" />
in the file: PROJECT-HOME\solr\collection1\ conf\solrconfig.xml
under the existing lines:
<lib dir="../../../contrib/velocity/lib" regex=".*\.jar" />
<lib dir="../../../dist/" regex="solr-velocity-\d.*\.jar" />
solved the problem. maybe you need to restart the servlet container (in default case: Jetty).