Dank je wel Astrid. Ik heb daar de oplossing gevonden, het werkt weer als een zonnetje
Code:
Workaround for weather modul:
You must edit the "helper.php" at the modul direction ("/modules/mod_weather_gk4/helper.php").
You will find the entries at line 352 and line 369.
Old Version 352:
"curl_setopt($curl, CURLOPT_URL, 'http://weather.yahooapis.com/forecastrss?w='.$this->config['WOEID']."&u=".$this->config['tempUnit']);"
New Version 352:
"curl_setopt($curl, CURLOPT_URL, 'http://xml.weather.yahoo.com/forecastrss?w='.$this->config['WOEID']."&u=".$this->config['tempUnit']);"
Old Version 369:
"$this->content = file_get_contents('http://weather.yahooapis.com/forecastrss?w='.$this->config['WOEID']."&u=".$this->config['tempUnit']);"
New Version 369:
"$this->content = file_get_contents('http://xml.weather.yahoo.com/forecastrss?w='.$this->config['WOEID']."&u=".$this->config['tempUnit']);"