It is currently March 28th, 2024, 9:11 pm

illustro\Network IP Address Rainmeter 4.3.1 [Solved]

Get help with creating, editing & fixing problems with skins
wrphillips
Posts: 2
Joined: September 30th, 2019, 3:49 pm

illustro\Network IP Address Rainmeter 4.3.1 [Solved]

Post by wrphillips »

I need help getting the illustro'\Network skin to display the IP Address. Here's a link to the skin script I'm using: https://1drv.ms/t/s!Ag9MrIdQMNIZoRPybafaYct62bjk?e=xbFqxz.

I'm an absolute novice and don't plan to be developing or modifying skins. I use the illustro\Network and \System skins on both my laptop and desktop. On the laptop both work fine, but the IP Address in the \Network skin on the desktop has always been "N/A" for all the Rainmeter versions I've used. I've tried another URL and I've verified that the URL in the skin works. So, I'm guessing that the problem is with the parsing on the PC, but I haven't been able to figure that out.

Thanks for any assistance.
Bill
Last edited by wrphillips on September 30th, 2019, 9:56 pm, edited 1 time in total.
User avatar
SilverAzide
Rainmeter Sage
Posts: 2588
Joined: March 23rd, 2015, 5:26 pm

Re: illustro\Network IP Address Rainmeter 4.3.1

Post by SilverAzide »

Try changing the URL and regexp to this:

Code: Select all

Url="https://checkip.amazonaws.com"
RegExp="(.*)"
Some "what is my IP" sites may be blocked by AV software or corporate firewalls.
Gadgets Wiki GitHub More Gadgets...
User avatar
CyberTheWorm
Posts: 860
Joined: August 22nd, 2016, 11:32 pm
Location: Surrey, B.C., Canada

Re: illustro\Network IP Address Rainmeter 4.3.1

Post by CyberTheWorm »

or this

Code: Select all

[MeasureWANIP]
Measure=Plugin
Plugin=WebParser
URL=https://icanhazip.com/
RegExp=(.*)
UpdateDivider=3600
DynamicVariables=1
The only source of knowledge is experience. Albert Einstein
Deviant Art Page
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: illustro\Network IP Address Rainmeter 4.3.1

Post by jsmorley »

This works for me...

Code: Select all

[MeasureIPWeb]
Measure=WebParser
URL=http://whatismyip.host/ipv4
RegExp=(?siU)<p class="ipaddress">(.*)</p>
StringIndex=1
UpdateRate=30
RegExpSubstitute=1
Substitute="^$":"None"
wrphillips
Posts: 2
Joined: September 30th, 2019, 3:49 pm

Re: illustro\Network IP Address Rainmeter 4.3.1

Post by wrphillips »

SilverAzide wrote: September 30th, 2019, 5:11 pm Try changing the URL and regexp to this:

Code: Select all

Url="https://checkip.amazonaws.com"
RegExp="(.*)"
Some "what is my IP" sites may be blocked by AV software or corporate firewalls.
Thanks. This one worked. So I didn't try the rest.

Thanks to all 3 who made suggestions. I'm guessing all would work. So I copied the suggestions into a folder for future reference if this one stops working.

Bill