Running Task SilverStripe\FullTextSearch\Solr\Tasks\Solr_Configure

GET /dev/tasks/Solr_Configure

[User Error] Uncaught Exception: No index configuration for Solr provided

GET /dev/tasks/Solr_Configure

Line 85 in /home/aeso/deploys/releases/20260119165806/vendor/silverstripe/fulltextsearch/src/Solr/Tasks/Solr_Configure.php

Source

76      *
77      * @return SolrConfigStore
78      * @throws Exception
79      */
80     protected function getSolrConfigStore()
81     {
82         $options = Solr::solr_options();
83 
84         if (!isset($options['indexstore']) || !($indexstore = $options['indexstore'])) {
85             throw new Exception('No index configuration for Solr provided', E_USER_ERROR);
86         }
87 
88         // Find the IndexStore handler, which will handle uploading config files to Solr
89         $mode = $indexstore['mode'];
90 
91         if ($mode === 'file') {

Trace