The script apachesolr_ajax.js makes hard coded assumptions that the base path of the Drupal site is '/'.

      $.post('/search/apachesolr_ajax' + state, { js: 1 }, apachesolr_ajax_response_callback, 'json');

This should be

      $.post(Drupal.settings.basePath + 'search/apachesolr_ajax' + state, { js: 1 }, apachesolr_ajax_response_callback, 'json');

Comments

jpmckinney’s picture

Status: Needs review » Fixed

This had already been fixed in dev. I tagged a new release. Download 6.x-1.7 once it is available.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.