Modify post "Apache Solr with Drupal 8 and Search API Solr" #2719
KarimBoudjema
started this conversation in
General
Replies: 1 comment
-
Thanks so much! Fixed in https://www.ddev.com/ddev-local/apache-solr-with-drupal-8-and-search-api-solr/ |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The post "Apache Solr with Drupal 8 and Search API Solr" in https://www.ddev.com/ddev-local/apache-solr-with-drupal-8-and-search-api-solr/ has 2 typos:
// Get the docker-compose.solr.yaml
cd .ddev && curl -O https://raw.githubusercontent.com/drud/ddev/master/pkg/servicetest/testdata/services/docker-compose.solr.yaml
should be
// Get the docker-compose.solr.yaml
cd .ddev && curl -O https://raw.githubusercontent.com/drud/ddev/master/pkg/servicetest/testdata/TestServices/docker-compose.solr.yaml
(in the URL replace services with TestServices)
// Add the solr-configupdate.sh script
mkdir -p solr/conf
cd solr && rm -rf solr-configupdate.sh && curl -O https://raw.githubusercontent.com/drud/ddev/master/pkg/servicetest/testdata/services/solr-configupdate.sh && chmod +x solr-configupdate.sh
should be
mkdir -p solr/conf
cd solr && rm -rf solr-configupdate.sh && curl -O https://raw.githubusercontent.com/drud/ddev/master/pkg/servicetest/testdata/TestServices/solr-configupdate.sh && chmod +x solr-configupdate.sh
(in the URL replace services with TestServices)
BTW, this is a great post and I really recommend it!
Beta Was this translation helpful? Give feedback.
All reactions