Some comments below Gary
On Monday, 24 February 2025 at 05:17:14 UTC+10 [email protected] wrote: Hi I posted answer but don't know how it was lost, so here is again. I suspect you clicked 'Reply to author' which sends your reply by email to the author of the post you are replying to - your reply was in my spam. Better to click 'Reply all' which posts here. No matter. Here are both files, debug and skin.conf Thank you. Your problem is one of case. In skin.conf you have the following plot definition: [[[dayinhumid]]] [[[[inHumidity]]]] [[[[outHumidity]]]] This results in the file dayinhumid.png being generated with a plot of inHumidity and outHumidity. That is exactly what WeeWX is doing, I can see the generated plot file on your page at https://vreme.povej.net/dayinhumid.png. If you look at the HTML of your page that displays your plots you will see the following html img tag: <img src="dayinHumid.png" alt="Inside/Outside Humidity"> this img tag is looking for the file dayinHumid.png. This is not the same as dayinhumid.png; case matters. I suggest you change the plot definition in skin.conf to: [[[dayinHumid]]] [[[[inHumidity]]]] [[[[outHumidity]]]] That should fix the missing humidity plot after the next report cycle completes. For what its worth the file extraHumid1.png is being generated with a plot of extraHumid1, I can see it on your site at https://vreme.povej.net/extraHumid1.png Thank you best regards Damian -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/weewx-user/5a42510f-abb4-4c24-bcf1-fe68f2ea2740n%40googlegroups.com.
