Strange yesterday we were at build 17189, and today we are at 17163.
Is the counter going backwards?
B.t.w. Problem is still gone.
Search found 452 matches
- Tuesday 17 February 2026 10:02
- Forum: Bugs and Problems
- Topic: Domoticz stops with error.
- Replies: 6
- Views: 217
- Tuesday 17 February 2026 9:39
- Forum: Bugs and Problems
- Topic: Domoticz crash after database restore
- Replies: 4
- Views: 124
Re: Domoticz crash after database restore
From the crashlog I can only see that you have a problem with libpython3.13.so and the Somfy plugin.
- Monday 16 February 2026 16:16
- Forum: Bugs and Problems
- Topic: Domoticz stops with error.
- Replies: 6
- Views: 217
Re: Domoticz stops with error.
With build 17189 this error has gone.
- Friday 13 February 2026 13:06
- Forum: Bugs and Problems
- Topic: Domoticz stops with error.
- Replies: 6
- Views: 217
Re: Domoticz stops with error.
Tnx, I will try to check that and my plugins.
- Thursday 12 February 2026 11:38
- Forum: Bugs and Problems
- Topic: Domoticz stops with error.
- Replies: 6
- Views: 217
Re: Domoticz stops with error.
Nobody any idea???
The error comes from this line:
Plugins::CPluginSystem::StopPluginSystem()
Why does this StopPluginSystem gives an error?
It is that last part of the stopping of Domoticz.
In the Python doc is this remark present
Note Calling this function from a thread when the runtime is ...
The error comes from this line:
Plugins::CPluginSystem::StopPluginSystem()
Why does this StopPluginSystem gives an error?
It is that last part of the stopping of Domoticz.
In the Python doc is this remark present
Note Calling this function from a thread when the runtime is ...
- Sunday 08 February 2026 11:20
- Forum: Bugs and Problems
- Topic: Domoticz stops with error.
- Replies: 6
- Views: 217
Domoticz stops with error.
When I stop domoticz manually I get this error, anyone any idea how to solve this or what the cause is?
2026-02-08 11:11:03.286 Error: Domoticz(pid:677, tid:677('domoticz')) received fatal signal 6 (Aborted)
2026-02-08 11:11:03.286 Error: siginfo address=0x2a5, address=0x7f04e28c495c
2026-02-08 11 ...
2026-02-08 11:11:03.286 Error: Domoticz(pid:677, tid:677('domoticz')) received fatal signal 6 (Aborted)
2026-02-08 11:11:03.286 Error: siginfo address=0x2a5, address=0x7f04e28c495c
2026-02-08 11 ...
- Friday 06 February 2026 10:42
- Forum: Suggestions
- Topic: Make offpeak hours available in Domoticz Settings
- Replies: 23
- Views: 320
Re: Make offpeak hours available in Domoticz Settings
I do the following:
With Nodered I fetch 15 minute prices for tomorrow from Nordpool every day at 18:01 and put them in a Domoticz variable.
That variable is at 23:59 processed by a big dzVents script (28Kb) for 1 to 3 slots of low prices set by various parameters.
The result of those 1 to 3 slots ...
With Nodered I fetch 15 minute prices for tomorrow from Nordpool every day at 18:01 and put them in a Domoticz variable.
That variable is at 23:59 processed by a big dzVents script (28Kb) for 1 to 3 slots of low prices set by various parameters.
The result of those 1 to 3 slots ...
- Thursday 05 February 2026 9:44
- Forum: Bugs and Problems
- Topic: Solaredge API problem
- Replies: 55
- Views: 1248
Re: Solaredge API problem
Uncommenting did not work for me, because the '#' are writen back to the 3 cookies.
- Wednesday 17 December 2025 13:58
- Forum: Show your projects
- Topic: Earthquake info from KNMI
- Replies: 63
- Views: 7443
Re: Earthquake info from KNMI
Sorry my error. I did not notice that I got the better script from HvdW.
In case of an "controlled explosion" there is no magnitude, that's why the error came.
I already correct it in the source as written above.
In case of an "controlled explosion" there is no magnitude, that's why the error came.
I already correct it in the source as written above.
- Friday 12 December 2025 19:32
- Forum: Show your projects
- Topic: Earthquake info from KNMI
- Replies: 63
- Views: 7443
Re: Earthquake info from KNMI
You might add
after
otherwise I get an error later on if field[11] is empty
Code: Select all
if magnitude == "" then magnitude = "0" end
Code: Select all
local magnitude = fields[11] or "0"- Tuesday 02 December 2025 17:03
- Forum: Bugs and Problems
- Topic: Error on a dummy General kWh meter
- Replies: 7
- Views: 103
Re: Error on a dummy General kWh meter
My version is: Version: 2025.1 (build 16657) So a little over half a year old, so should be fine.
I now use this to catch a NaN or the string 'nan' (because 'nan' was in the database).
if (isNaN(msg.payload) || msg.payload == 'nan') {
node.warn(msg.payload);
return;
} else {.....
Data is comming ...
I now use this to catch a NaN or the string 'nan' (because 'nan' was in the database).
if (isNaN(msg.payload) || msg.payload == 'nan') {
node.warn(msg.payload);
return;
} else {.....
Data is comming ...
- Monday 01 December 2025 18:49
- Forum: Bugs and Problems
- Topic: Error on a dummy General kWh meter
- Replies: 7
- Views: 103
Re: Error on a dummy General kWh meter
Node-red had some time sending 'nan' as a value.
That is transfered to Domoticz, hence the errors.
I fixed the 'nan' transfer to nothing being send to Domoticz.
I also fixed the source of the nan's so Node-red is sending valid values again.
But Domoticz still would refuse to take the valid values as ...
That is transfered to Domoticz, hence the errors.
I fixed the 'nan' transfer to nothing being send to Domoticz.
I also fixed the source of the nan's so Node-red is sending valid values again.
But Domoticz still would refuse to take the valid values as ...
- Sunday 30 November 2025 11:26
- Forum: Bugs and Problems
- Topic: Error on a dummy General kWh meter
- Replies: 7
- Views: 103
Re: Error on a dummy General kWh meter
I use node-red to populate the values.
I now made some provisions in node-red to catch the 'nan' so the domoticz database does not get the 'nan's anymore.
I had to go into deleting and editing records directly into the Domoticz database, so it is working again.
But Domoticz should be self-healing ...
I now made some provisions in node-red to catch the 'nan' so the domoticz database does not get the 'nan's anymore.
I had to go into deleting and editing records directly into the Domoticz database, so it is working again.
But Domoticz should be self-healing ...
- Sunday 30 November 2025 10:18
- Forum: Bugs and Problems
- Topic: Error on a dummy General kWh meter
- Replies: 7
- Views: 103
Error on a dummy General kWh meter
I got this error:
Any idea how to resolve the 'nan' error?
Code: Select all
2025-11-30 10:15:00.527 Error: UpdateMeter: Error converting sValue/sUsage! (IDX: 1973, sValue: 'nan', sUsage: '55210', dType: 243, sType: 29)- Friday 17 October 2025 11:58
- Forum: Node-RED
- Topic: Node red flow
- Replies: 58
- Views: 667
Re: Node red flow
Perhaps add temporarely a log message of the exact content of the message send over mqtt to Domoticz.
This way you can see in the domoticz logging of the exact content and cause of NAN and put level to error
This way you can see in the domoticz logging of the exact content and cause of NAN and put level to error
Code: Select all
/json.htm?type=command¶m=addlogmessage&message=MESSAGE&level=LEVEL- Wednesday 08 October 2025 19:03
- Forum: Show your projects
- Topic: Earthquake info from KNMI
- Replies: 63
- Views: 7443
Re: Earthquake info from KNMI
I use this to trigger the update of the widget, with the current solution I sometimes get for some reason false updates.
if string.sub(alertText, 1, 16) ~= string.sub(lastalertText, 1, 16) then
I just compare the entire string.
if alertText ~= lastalertText then
I have to be honest, I ...
- Tuesday 07 October 2025 11:16
- Forum: Show your projects
- Topic: Earthquake info from KNMI
- Replies: 63
- Views: 7443
Re: Earthquake info from KNMI
That would be nice. But just a compare of the scripts makes it visible too.
I have some remarks too.
I use this to trigger the update of the widget, with the current solution I sometimes get for some reason false updates.
if string.sub(alertText, 1, 16) ~= string.sub(lastalertText, 1, 16) then
I ...
I have some remarks too.
I use this to trigger the update of the widget, with the current solution I sometimes get for some reason false updates.
if string.sub(alertText, 1, 16) ~= string.sub(lastalertText, 1, 16) then
I ...
- Tuesday 22 July 2025 13:57
- Forum: Other questions and discussions
- Topic: Code that hides elements whose name is prefixed with a $
- Replies: 6
- Views: 2352
Re: Code that hides elements whose name is prefixed with a $
I think if you search the source of 'WebServerCmds.cpp' and/or 'WebServer.cpp' for '$' you will find what you are searching for.
- Sunday 06 July 2025 19:48
- Forum: Design, usability and languages
- Topic: AM/PM versus 24 hours (linux)
- Replies: 1
- Views: 4843
Re: AM/PM versus 24 hours (linux)
Found the shortcut solution on github. 
- Sunday 06 July 2025 19:35
- Forum: Design, usability and languages
- Topic: AM/PM versus 24 hours (linux)
- Replies: 1
- Views: 4843
AM/PM versus 24 hours (linux)
2 of my domoticz have the graphics changed in AM/PM instead of the 24 hours I used to have.
For years I had the same problem, but don't know anymore how I solved it.
I changed a lot of settings in the locale and restarted Domoticz every time, but did not found the right setting.
Who has the richt ...
For years I had the same problem, but don't know anymore how I solved it.
I changed a lot of settings in the locale and restarted Domoticz every time, but did not found the right setting.
Who has the richt ...