It is currently March 28th, 2024, 10:35 am

NetworkPanel

Skins that monitor system information
User avatar
SilverAzide
Rainmeter Sage
Posts: 2588
Joined: March 23rd, 2015, 5:26 pm
Contact:

Re: NetworkPanel

Post by SilverAzide »

Bgdrls wrote: December 3rd, 2020, 7:21 am Everything is latest win, rain, skin...
The problem is most likely that you are behind a firewall that is blocking certain domains. The skin attempts to find your external IP address by calling the icanhazip.com site. This is often blocked (it is blocked for me too). Edit the skin and search the code for the URL. Replace the line with this:

Code: Select all

URL=https://checkip.amazonaws.com
Refresh the skin and it should work.
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: NetworkPanel

Post by jsmorley »

SilverAzide wrote: December 3rd, 2020, 12:22 pm The problem is most likely that you are behind a firewall that is blocking certain domains. The skin attempts to find your external IP address by calling the icanhazip.com site. This is often blocked (it is blocked for me too). Edit the skin and search the code for the URL. Replace the line with this:

Code: Select all

URL=https://checkip.amazonaws.com
Refresh the skin and it should work.
Yeah, I use this these days...

Code: Select all

[MeasureIPWeb]
Measure=WebParser
Flags=Resync | NoCookies
URL=https://checkip.amazonaws.com/
RegExp=(?siU)^(.*)$
StringIndex=1
UpdateRate=30
RegExpSubstitute=1
Substitute="^$":"None"
Bgdrls
Posts: 66
Joined: April 29th, 2011, 1:03 am

Re: NetworkPanel

Post by Bgdrls »

Thank you both, I made changes like you suggested.
Post Reply