This module currently relies on behavior provided by core's .htaccess file to make the autocomplete work. Unless nginx is configured in a completely identical way, the module's autocomplete callback will return a Drupal 404.
On Apache, this results in the callback PHP being executed.
/sites/all/modules/google_appliance_suggest/google_appliance_suggest_callback.php/query
On some configurations of nginx (e.g. that on Pantheon), the callback PHP file is never executed.
The solution is to use something like the following:
/sites/all/modules/google_appliance_suggest/google_appliance_suggest_callback.php?q=/query
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | google_appliance_suggest-nginx_compatibility-2207979-1.patch | 1.27 KB | iamEAP |
Comments
Comment #1
iamEAP commentedPretty straightforward patch, working on production on Pantheon. Will test via simplytest.me to confirm no regression on Apache.
Comment #2
iamEAP commentedCommitted here: 5c84e34.