it is entered
should be any problems with country (Slovenia) within Google?
Maybe. Try the address (without the first number) from the output in
http://maps.google.de/mapsGoogle does not knows the zip codes I think
change
if ($statuscode != 200) // errors occurred; the address was successfully parsedd.
{
// Versuch ohne Straße
$url = "http://maps.google.com/maps/geo?q=";
$url .= $order->delivery['postcode'] . "," . $order->delivery['city'] . "," . $order->delivery['country'];to
if ($statuscode != 200) // errors occurred; the address was successfully parsedd.
{
// Versuch ohne Straße
$url = "http://maps.google.com/maps/geo?q=";
$url .= $order->delivery['city'] . "," . $order->delivery['country'];in
report_googlemap.php and
orders_to_latlng.phpNach diesem Teil zuerst schauen, ob der Eintrag schon in der Tabelle orders_to_latlng ist, damit man orders_to_latlng.php mehrmals aufrufen kann. Kann notwendig sein, wenn sehr viele Bestellungen vorhanden sind.
Ich weiß zwar nicht, warum es notwendig sein sollte, aber ich kann es ja beim nächsten Update mal einbauen.