I've just upgrade my pibeacon to 7.105.293 from a much older version, and I had a couple of issues.
a. I don't use any homeseer security (fear not - I have some reverse proxy's for internet access to homeseer). So in the 'master' config I have 'DIGEST, BASIC or no authentication' set to 'use do not use security...', and the 'userid and password both blank'. The plugin wouldn't set running until I entered a dummy username and password. Looks like the code in plugin.py around line 8787ish - perhaps this should 'break' if no security is set?
Code: Select all
while True:
if self.userIdOfServer !="" and self.passwordOfServer !="" : break
self.indiLOG.log(20, u"userid or password not configured in config")
self.sleep(20)
Code: Select all
os.system("sudo chown -R pi:pi "+G.logDir)
Code: Select all
os.system("sudo chown -R pi:pi "+G.logDir+"piBeacon.log")
-- Paul --