I know, strange title....
this is my problem:
I have the cakephp stack in /var/www/site
from one view under controller A I do a jquery ajax call:
$("#searchstring").autocomplete("/items/getitemsforautocomplete", { ... more code
when the call is triggered I can see from firebug that cakephp wants to call:
http://localhost/items/getitemsforautocomplete?q=me
Note that 'site' is missing, resulting in a 404.
When I upload this to my site it works the way it should. How should I configure this correctly??