Page 2 of 2

Re: NetworkPanel

Posted: December 3rd, 2020, 12:22 pm
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.

Re: NetworkPanel

Posted: December 3rd, 2020, 12:25 pm
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"

Re: NetworkPanel

Posted: December 4th, 2020, 4:58 am
by Bgdrls
Thank you both, I made changes like you suggested.