Closed (fixed)
Project:
Apache Solr AJAX
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
22 Mar 2010 at 19:27 UTC
Updated:
25 Mar 2017 at 20:42 UTC
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
Comment #1
jpmckinney commentedThis had already been fixed in dev. I tagged a new release. Download 6.x-1.7 once it is available.