It is currently March 28th, 2024, 10:47 pm

illustro [ERROR]

Get help with installing and using Rainmeter.
rickyLUcis
Posts: 2
Joined: December 5th, 2017, 1:56 am

illustro [ERROR]

Post by rickyLUcis »

Something like this happen out of nowhere.
Anybody know what actually happen?
You do not have the required permissions to view the files attached to this post.
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: illustro [ERROR]

Post by jsmorley »

Open network.ini in a text editor.

Find this measure:

Code: Select all

[measureIP]
; This measure returns your IP. WebParser measures are relatively complicated. If you're a beginner with
; Rainmeter, take a look at some of the other illustro skins before modifying this one.
; For more information, go here: https://docs.rainmeter.net/tips/ipaddress
Measure=Plugin
Plugin=WebParser
URL=http://get-ip.me/
UpdateRate=14400
RegExp=<h2>(.*)</h2>
StringIndex=1
Substitute="":"N/A"
Replace it with this one:

Code: Select all

[measureIP]
; This measure returns your IPv4 address. WebParser measures are relatively complicated. If you're a beginner with
; Rainmeter, take a look at some of the other illustro skins before modifying this one.
; For more information, go here: https://docs.rainmeter.net/tips/ipaddress
Measure=Plugin
Plugin=WebParser
URL=http://checkip.amazonaws.com/
UpdateRate=14400
RegExp=(?siU)^(.*)$
StringIndex=1
Substitute="":"N/A"
That should fix it.

https://docs.rainmeter.net/history/#r2917
rickyLUcis
Posts: 2
Joined: December 5th, 2017, 1:56 am

Re: illustro [ERROR]

Post by rickyLUcis »

@jsmorley. Thank you, it's working.