Warning: fopen(/www/htdocs/w0135691/api.json-content-importer.com/wp-content/cache/jsoncontentimporterpro/647a52242f0fa4673a27318de7335927.cgi): Failed to open stream: Permission denied in /www/htdocs/w01dd09b/api.json-content-importer.com/wp-content/plugins/jsoncontentimporterpro3/class-fileload-cache-pro.php on line 491
PRO: Openweather Forecast – weather at a location – Supportsite JSON Content Importer

PRO: Openweather Forecast – weather at a location

cache-error:
/www/htdocs/w0135691/api.json-content-importer.com/wp-content/cache/jsoncontentimporterpro/647a52242f0fa4673a27318de7335927.cgi
is either empty or unwriteable – plugin aborted

See how this is done:


JCI-Template:

  • urlparam4twig: lat#lon#su
  • URL:
{% set lat = 48.1371079 %}{% if urlparam.lat %}{% set lat = (urlparam.lat | e) %}{% endif %}
{% set lon =11.5753822 %}{% if urlparam.lon %}{% set lon = (urlparam.lon | e) %}{% endif %}
https://api.openweathermap.org/data/2.5/onecall?lat={{lat}}&lon={{lon}}&appid=...
  • twig-template:
current time at {{urlparam.su|e}}: {{ (current.dt+timezone_offset) | date("d.m.Y, H:i:s")   }}, timezone: {{timezone}}<hr>
sunrise: {{ (current.sunrise+timezone_offset) | date("H:i:s")   }}<br>
sunset: {{ (current.sunset+timezone_offset) | date("H:i:s")   }}<br>
temp: {{current.temp-273.15}} Celcius, feels_like {{current.feels_like-273.15}} Celsius<br>
windspeed: {{current.wind_speed}}<br>
{% if (alerts|length)>0 %}
{{alerts.0.sender_name}} {{(a.start+timezone_offset)| date("H:i") }} - {{(alerts.0.end+timezone_offset) | date("H:i") }}: <br>{{alerts.0.description}}
{% endif %}