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
Comment #1
vishun commentedThis appears to only make the search work properly when no query is entered, it still needs to be qt when a query is provided.