in the apachesolr_local_apachesolr_modify_query(&$query, &$params, $caller) function, the $params['qt'] is incorrect and gives errors saying it cannot connect to server. upon reading the java error log, i found out that it should be $params['qf']... please fix this

--      $params['qt'] = 'geo';
++     $params['qf'] = 'geo';

Comments

vishun’s picture

This appears to only make the search work properly when no query is entered, it still needs to be qt when a query is provided.