full devices reset
-
Just updated...
Got
2024-02-26 12:25:03.339 openLuup.wsapi:: using openLuup/console.lua for openLuup
2024-02-26 12:25:03.339 openLuup.wsapi:: using REQUIRE to load CGI openLuup/console.lua
2024-02-26 12:25:03.339 openLuup.wsapi:: can't find WSAPI application entry point -
2024-02-26 12:27:36.315 openLuup.wsapi:: using openLuup/console.lua for openLuup
2024-02-26 12:27:36.316 openLuup.wsapi:: using REQUIRE to load CGI openLuup/console.lua
2024-02-26 12:27:36.328 scheduler.context_switch:: ERROR: [dev #0] ./openLuup/panels.lua:69: attempt to call field 'SID' (a nil value)
2024-02-26 12:27:36.328 openLuup.server:: ./openLuup/panels.lua:69: attempt to call field 'SID' (a nil value) -
Could you run this code and let me know the result? I’m thinking there must be a version mismatch somewhere in your setup.
local loader = require "openLuup.loader" local lfs = require "lfs" local ignore = {init=true, json=true} for a in lfs.dir "openLuup/" do local b = a: match "^(.-).lua$" if b and not ignore[b] then local x = loader.find_file(a) local y = require ("openLuup." .. b) if type(y) == "table" then local v = (y.ABOUT or {}) .VERSION or '----.--.--' print(v, x) end end end