Trouble-shooting¶
all works but no indexing¶
If you can connect to your solr server, can commit, delete, optimize index, but indexing itself produces no requests, check your URL. It must be accessible with curl.
We are using DNS records like this for development:
myname.project.development.ourcompany.local
which lead to errors when trying to curl them:
$ curl myname.project.development.ourcompany.local
curl: (6) Couldn't resolve host 'myname.project.development.ourcompany.local'
Then you should add a dns-record like this to the webserver's hosts-file:
127.0.0.1 localhost 127.0.1.1 development.ourcompany.local 127.0.1.1 myname.project.development.ourcompany.local
WORK IN PROGRESS
The reports say that no connection can be established.¶
By default Solr doesn't use cUrl, but on some installations solr won't work without it. So try to set the following in your setup:
plugin.tx_solr.solr.useCurlHttpTransport = 1
this is broken and will be removed in the future. While you can get a connection this way the pageIndexer will still not work.