diff --git a/config/vufind/config.ini b/config/vufind/config.ini index 89073a8889571bf2cf92380ecbfa90ce5af42865..9a7092060fce06635ef9755d252dfcbf88bc1a30 100644 --- a/config/vufind/config.ini +++ b/config/vufind/config.ini @@ -217,6 +217,9 @@ ils_encryption_key = false ; When using the Solr mode, specify the address of a Solr server containing a ; "stats" core here; if no URL is specified, [Index]/url below will be used. +; +; Note: The stats core is disabled by default -- you will need to edit solr/solr.xml +; to turn it on. ;solr = http://localhost:8080/solr ; When using the File mode, specify a directory for saving stat files here: diff --git a/solr/solr.xml b/solr/solr.xml index 41f6d035aef883f22685b27fd56fc733d2c559f5..243b00523351f50a8192c837a170871b358e62b4 100644 --- a/solr/solr.xml +++ b/solr/solr.xml @@ -2,7 +2,7 @@ <cores adminPath="/admin/multicore"> <core name="biblio" instanceDir="biblio"/> <core name="authority" instanceDir="authority"/> - <core name="stats" instanceDir="stats"/> + <!-- uncomment to enable stats core: <core name="stats" instanceDir="stats"/> --> <!-- uncomment to enable website core: <core name="website" instanceDir="website"/> --> <!-- uncomment to enable reserves core: <core name="reserves" instanceDir="reserves"/> --> </cores>