I'm running Geocoding with that code, what works perfect: $url = 'http://maps.googleapis.com/maps/api/geocode/json?address=' . $address . '&sensor=false';
Problem is, it only runs with a few addresses (about 200) and then it stopps and so I have to wait 24hours to start geocoding again.
So I have created an API Key to geocode 2500 addresses a day and add it like this: $url = http://maps.googleapis.com/maps/api/geocode/json?&address= . $address . &sensor=false&key=MY_API_KEY;
Problem now is, nothing happens. No address is getting geocoded. Only without an API key it works for a few addresses. I also tried different keys, with an specific referrer and without and referrer - nothing changes. Not only one address is getting geocoded.
Thanks afor help!