I have been using the Mond skin for a few years and since the change to Yahoo weather with no problem. The last few days the weather widgets have stopped working.
Both Mond and Weather Alternative skins weather widgets failed
Mond Skin -> https://www.deviantart.com/apexxx-sensei/art/Mond-762455575
Weather Alternative => https://www.deviantart.com/apexxx-sensei/art/Weather-Alternative-827733989
Has anyone else had problems with Yahoo weather lately?
What are my potential fixes? (i.e. changing code to use another weather source)
Tested Lottaweather 1.5.2 and it works fine. => https://www.deviantart.com/louisly/art/Lottaweather-1-5-2-847570474
Thanks
It is currently October 1st, 2023, 1:18 am
Mond with Yahoo weather not working SEP 2022
-
- Posts: 2
- Joined: September 14th, 2022, 1:05 pm
-
- Posts: 816
- Joined: January 4th, 2018, 9:52 pm
Re: Mond with Yahoo weather not working SEP 2022
Right click on the skin and choose Edit skin.empfarseer wrote: ↑September 15th, 2022, 1:39 am I have been using the Mond skin for a few years and since the change to Yahoo weather with no problem. The last few days the weather widgets have stopped working.
Both Mond and Weather Alternative skins weather widgets failed
Mond Skin -> https://www.deviantart.com/apexxx-sensei/art/Mond-762455575
Weather Alternative => https://www.deviantart.com/apexxx-sensei/art/Weather-Alternative-827733989
Has anyone else had problems with Yahoo weather lately?
What are my potential fixes? (i.e. changing code to use another weather source)
Tested Lottaweather 1.5.2 and it works fine. => https://www.deviantart.com/louisly/art/Lottaweather-1-5-2-847570474
Thanks
Go to [MeasureWeather] and replace in RegExp, numbers 26 and 37 with .*
Then save and refresh the skin
-
- Posts: 2
- Joined: September 14th, 2022, 1:05 pm
Re: Mond with Yahoo weather not working SEP 2022
Thank you that worked. For anyone else here is the code.
Original Code
Fixed Code
Thanks again!
Original Code
Code: Select all
[MeasureWeather]
Measure=Plugin
Plugin=WebParser
URL=https://www.yahoo.com/news/weather/united-states/juneau/juneau-2430300
RegExp=(?siU)<h1 class="city.*data-reactid="7">(.*)</h1>.*<div class="My\(2px\).*60x60\/(.*)@2x.png.*data-reactid="[color=#BF0000]26[/color]">(.*)<.*<span class="Va\(t\)" data-reactid="[color=#BF0000]37[/color]">(.*)</span>
UpdateRate=300
Code: Select all
[MeasureWeather]
Measure=Plugin
Plugin=WebParser
URL=https://www.yahoo.com/news/weather/united-states/juneau/juneau-2430300
RegExp=(?siU)<h1 class="city.*data-reactid="7">(.*)</h1>.*<div class="My\(2px\).*60x60\/(.*)@2x.png.*data-reactid=".*">(.*)<.*<span class="Va\(t\)" data-reactid=".*">(.*)</span>
UpdateRate=300
Last edited by balala on September 15th, 2022, 12:19 pm, edited 1 time in total.
Reason: Please use <code> tags whenever are posting codes. It's the </> button.
Reason: Please use <code> tags whenever are posting codes. It's the </> button.
-
- Posts: 1
- Joined: September 25th, 2022, 1:09 am
Re: Mond with Yahoo weather not working SEP 2022
Fixed Code
[MeasureWeather]
Measure=Plugin
Plugin=WebParser
Url=https://www.yahoo.com/news/weather
RegExp=(?siU)<h1 class="city.*data-reactid="7">(.*)</h1>.*<div class="My\(2px\).*60x60\/(.*)@2x.png.*data-reactid=".*">(.*)<.*<span class="Va\(m\) Px\(6px\)" data-reactid=".*"><\!-- react-text: 35 -->(.*)<.*<\!-- react-text: 39 -->(.*)<.*<span class="Va\(t\)" data-reactid=".*">(.*)</span>
UpdateRate=300
[MeasureWeather]
Measure=Plugin
Plugin=WebParser
Url=https://www.yahoo.com/news/weather
RegExp=(?siU)<h1 class="city.*data-reactid="7">(.*)</h1>.*<div class="My\(2px\).*60x60\/(.*)@2x.png.*data-reactid=".*">(.*)<.*<span class="Va\(m\) Px\(6px\)" data-reactid=".*"><\!-- react-text: 35 -->(.*)<.*<\!-- react-text: 39 -->(.*)<.*<span class="Va\(t\)" data-reactid=".*">(.*)</span>
UpdateRate=300
Last edited by SilverAzide on September 25th, 2022, 2:12 am, edited 1 time in total.
Reason: Please use code tags when posting code. It's the </> button.
Reason: Please use code tags when posting code. It's the </> button.