On May 15, 12:28 pm, "[email protected]" <[email protected]> wrote: > > 1. Where are you getting that Firebug readout from? I've duplicated > your search, and can't find anything like what you've posted in > Firebug? I typically only use it for CSS info
The "Net" tab. That shows what has been retrieved, and I found the geocoding results, which look right, and this url. > 2. The actual URL that you have linked to is an interesting one - > there is no "pages" folder in the site, that is generated by an SEO > URL function of the cart software we are using. Your script uses a relative url: var searchUrl = 'phpsqlsearch_genxml.php?lat=' so if the browser thinks the page is served from a /pages folder, that's where that script needs to be. Or: alter your Javascript so that it references the actual file with /phpsqlseach_genxml.php, but it there are problems there: http://www.savant-health.com/phpsqlsearch_genxml.php?lat=50.7668678&lng=0.2848044&radius=30 You may be able to get round that by not require()ing a url but instead using a real local server file path (like there is in the error message). Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
