WXforum.net

Weather Software => Weather Display => Topic started by: Jumpin Joe on October 23, 2021, 01:36:09 PM

Title: Solar and UV info missing
Post by: Jumpin Joe on October 23, 2021, 01:36:09 PM
WD is not showing the information for Solar and UV on my site. I have a Davis 6163 wireless with Solar & UV. I have UV and Solar checked in WD.

Can anyone tell me what be causing this?

Thanks,
Joe
Title: Re: Solar and UV info missing
Post by: waiukuweather on October 23, 2021, 01:57:04 PM
as in this site?
https://joesweather.info/

I would think you would need to enable that in the web page setup/script settings?
Title: Re: Solar and UV info missing
Post by: Jumpin Joe on October 23, 2021, 02:52:12 PM
as in this site?
https://joesweather.info/

I would think you would need to enable that in the web page setup/script settings?

Yes.

I have enabled them.
Title: Re: Solar and UV info missing
Post by: waiukuweather on October 23, 2021, 06:57:05 PM
maybe try contacting the author of the script maybe
but also make sure the switch is in WD under control panel, solar setup
Title: Re: Solar and UV info missing
Post by: Jumpin Joe on October 23, 2021, 07:13:42 PM
maybe try contacting the author of the script maybe
but also make sure the switch is in WD under control panel, solar setup

Thanks…. It is on.

I’m hoping Ken True or Brian from WD will see this post and reply with their thoughts.

Title: Re: Solar and UV info missing
Post by: saratogaWX on October 24, 2021, 10:53:10 AM
In your Settings-weather.php, you have
Code: [Select]
$SITE['UV']                = false;  // set to false if no UV sensor
$SITE['SOLAR']            = false;  // set to false if no Solar sensor
That should be
Code: [Select]
$SITE['UV']                = true;  // set to false if no UV sensor
$SITE['SOLAR']            = true;  // set to false if no Solar sensor
to enable the display of the station's UV and Solar sensor data.
Title: Re: Solar and UV info missing
Post by: Jumpin Joe on October 24, 2021, 11:41:54 AM
In your Settings-weather.php, you have
Code: [Select]
$SITE['UV']                = false;  // set to false if no UV sensor
$SITE['SOLAR']            = false;  // set to false if no Solar sensor
That should be
Code: [Select]
$SITE['UV']                = true;  // set to false if no UV sensor
$SITE['SOLAR']            = true;  // set to false if no Solar sensor
to enable the display of the station's UV and Solar sensor data.


Never thought of checking that script.

Thanks, Ken!