17.02.2008, 14:25
Dragon schrieb:Ist die Einstellung "allow_url_fopen" aktiviert?
Ja die habe ich auf on umgestellt.
Kann aber sein das es etwas dauert bist die Einstellungen umgestellt werden, oder ist das sofort verfügbar?
MFG
Hasa
Dragon schrieb:Ist die Einstellung "allow_url_fopen" aktiviert?
Dragon schrieb:Das kommt auf den Server an. Du kannst ja bei PHP-Info die Einstellungen überprüfen.
http://maps.google.com/maps/geo?q=göttingen&output=xml&key=hieristmeinkey
<kml>
?
<Response>
<name>göttingen</name>
?
<Status>
<code>200</code>
<request>geocode</request>
</Status>
?
<Placemark id="p1">
<address>Göttingen, Germany</address>
?
<AddressDetails Accuracy="4">
?
<Country>
<CountryNameCode>DE</CountryNameCode>
?
<AdministrativeArea>
<AdministrativeAreaName>Niedersachsen</AdministrativeAreaName>
?
<SubAdministrativeArea>
<SubAdministrativeAreaName>Göttingen</SubAdministrativeAreaName>
?
<Locality>
<LocalityName>Göttingen</LocalityName>
</Locality>
</SubAdministrativeArea>
</AdministrativeArea>
</Country>
</AddressDetails>
?
<Point>
<coordinates>9.928160,51.532638,0</coordinates>
</Point>
</Placemark>
</Response>
</kml>
Zitat:Warning: fopen() [function.fopen]: URL file-access is disabled in the server configuration in /var/www/web23/html/board/usermap.php on line 191Das Selbe wenn ich die Kordinaten für Köln eintippe
Warning: fopen(http://maps.google.com/maps/geo?q=K%C3%B...cIfJIsqrzA) [function.fopen]: failed to open stream: no suitable wrapper could be found in /var/www/web23/html/board/usermap.php on line 191
Warning: fread(): supplied argument is not a valid stream resource in /var/www/web23/html/board/usermap.php on line 192
Zitat:Warning: fopen() [function.fopen]: URL file-access is disabled in the server configuration in /var/www/web23/html/board/usermap.php on line 191
Warning: fopen(http://maps.google.com/maps/geo?q=50.933...cIfJIsqrzA) [function.fopen]: failed to open stream: no suitable wrapper could be found in /var/www/web23/html/board/usermap.php on line 191
Warning: fread(): supplied argument is not a valid stream resource in /var/www/web23/html/board/usermap.php on line 192
Zitat:{
$lookupfile = fopen("http://maps.google.com/maps/geo?q=".urlencode($mybb->input['adress'])."&output=xml&key=".$mybb->settings['usermap_apikey'], "r");
$lookup_file = fread($lookupfile, 100024);
$parser = new XMLParser($lookup_file);
$lookup = $parser->get_tree();
if($lookup['kml']['Response']['Status']['code']['value'] != 200)
{
error($lang->coordinatesnotfound, $lang->error);
}