Hi,
ich muss jetzt nochmal nachhacken zu der weather.config.inc.php. Mein Telefonbuch kann ich auf meiner 7590 wirklich super abfragen sehe auch die Anfragen im log.
Es geht mir nochmal um die weather.config.inc.php. Mein API Key ist auch aktiv das habe ich auf
https://openweathermap.org/ geprüft.
Ich bekomme immer einen http-Fehler 500 wenn ich von meinem Telefon die weather.php aufrufe. Die SEP Config habe ich korrekt eingetragen.
Die Rechte im Dateisystem passen auch.
Mir stellt sich die Frage ob meine weather.config.inc.php korrekt ist? Ich hatte hierzu schon mal einen Thread aufgemacht.
So richtig hat mir da aber nicht geholfen. Passt der Block bei weatherid? Hier am Beispiel Berlin DE?
<?php
/*
* @author Christian Bartsch <cb AT dreinulldrei DOT de>, bt43a
* @copyright (c) Christian Bartsch, bt43a
* @license GPL v2
* @date 2013-12-06
*/
$weather_apikey = 'KEY ENTFERNT'; //GET YOUR OWN FREE API KEY AT
http://www.openweathermap.org/
$weather_city =
'Berlin';
$weather_id =
'2950159'; // can be omitted, unless there are several matches for your city by name
$lang = 'de';
$units = 'metric';
$gmt_offset = 1; // adjust for your timezone
$target = '99xx'; // currently supports 7941, 7945 and 99xx (standard), affects graphics resolution
$weather_refresh = 180; // refresh weather display after xx seconds
$wallpaper_path = '/volume1/web/weather/wallpaper/';
$wallpaper_file = '498x289_background.png'; // should match 498x289 for 99x, 289x168 or 298x156 for 79xx phones
?>