Hi
Im having problems with the file handling when using multicore setup in solr 3.6. The same issue that is described in Solr-1894 <https://issues.apache.org/jira/browse/SOLR-1894> . In Jira it says that it has been fixed in 3.1, doesnt that mean that it should work also for 3.6? The problem for me is that the browse gui is not able to load the css files. But Ive also noticed that solr wont load the schema.xml ++ from either of the cores admin. Neither the default core. My core setup is quite simple: <?xml version="1.0" encoding="UTF-8" ?> <solr persistent="false"> <cores adminPath="/admin/cores" defaultCoreName="default"> <core name="default" instanceDir="default" /> <core name="parts" instanceDir="parts" /> <core name="service" instanceDir="service" /> </cores> </solr> And each core has its own home directory that is more or less the same as the example dirs. This is also where the velocity folder resides. /Aleksander