How to Increase Allowed Input Nodes?

Hi all,

In older versions of emonCMS you could increase the number of allowed input nodes the following way. What is the modern equivalent with the new .ini settings files? Thanks!

Old way: Nano settings.php
Add this to the settings array
// Input
“input”=>array(
// Max number of allowed different inputs per user. For limiting garbage rf$
‘max_node_id_limit’ => 64
),

Figured it out by reading this:

Default is 32. To override, in ssh go to /var/www/emoncms

nano settings.ini

Add this:

; Input
[input]
; Max number of allowed different inputs per user. For limiting garbage rf data
max_node_id_limit = 64

Then:

sudo systemctl restart emoncms_mqtt
sudo systemctl restart feedwriter
1 Like