Search found 8 matches

by CCL54
Wednesday 27 May 2020 11:25
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Can't install domoticz on a banana pi pro with raspbian Jessie
Replies: 5
Views: 1198

Re: Can't install domoticz on a banana pi pro with raspbian Jessie

Additionnal information: I think the problem is I have not all librairies, I've made ./domoticz, several librairies are not found (the famous libssl.so.1.1.0) and others... see joined picture. I tried to update libssl with wget http://security.debian.org/debian-security/pool/updates/main/o/openssl ...
by CCL54
Wednesday 27 May 2020 10:36
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Can't install domoticz on a banana pi pro with raspbian Jessie
Replies: 5
Views: 1198

Re: Can't install domoticz on a banana pi pro with raspbian Jessie

Hello, I finally found my mistake: The command : wget https://releases.domoticz.com/releases/release/domoticz_linux_armv71.tgz doesn't work because before the . it's not a 1 but a l ! Correct command is: wget https://releases.domoticz.com/releases/release/domoticz_linux_armv7l.tgz Now I extract tgz ...
by CCL54
Tuesday 26 May 2020 19:22
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Can't install domoticz on a banana pi pro with raspbian Jessie
Replies: 5
Views: 1198

Re: Can't install domoticz on a banana pi pro with raspbian Jessie

Hello waaren,

Thanks yoiu for your quick answer.

I also try to install an old version of Domoticz:

https://www.domoticz.com/wiki/Going_bac ... us_version

and I've this problem: 404 not found, see picture.

What I'am doing wrong?

Thanks
by CCL54
Tuesday 26 May 2020 19:03
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Can't install domoticz on a banana pi pro with raspbian Jessie
Replies: 5
Views: 1198

Can't install domoticz on a banana pi pro with raspbian Jessie

Hello, I've made recently a mistake on my BPI pro with my OS jessie: domoticz showed an update green icon to update ...and I've unfortunately clicked on this icon....result was Domoticz doesn't start anymore...of course i've made no back-up :cry: Anyway I've reinstalled OS Jessie (took me 2 days ...
by CCL54
Saturday 19 November 2016 23:27
Forum: Other questions and discussions
Topic: os.execute('http...') not working
Replies: 7
Views: 3349

Re: os.execute('http...') not working

Hello, Finally thanks to forums I found a solution that I summarise below: The function capture must be created in the script because it's not native in lua (copy from one forum): function os.capture(cmd, raw) local f = assert(io.popen(cmd, 'r')) local s = assert(f:read('*a')) f:close() if raw then ...
by CCL54
Saturday 19 November 2016 19:20
Forum: Other questions and discussions
Topic: os.execute('http...') not working
Replies: 7
Views: 3349

Re: os.execute('http...') not working

Egregius, it's working now! thank you. The problem was lua doesn't find curl.exe as I didn't put the directory in the windows environment variables... So thanks for your help. May I ask you other question? Because Domoticz send a get, I see it with Wireshark and the remote server answer with the ...
by CCL54
Saturday 19 November 2016 12:21
Forum: Other questions and discussions
Topic: os.execute('http...') not working
Replies: 7
Views: 3349

Re: os.execute('http...') not working

Hello Egregius, Thank you very much for your reply. No I haven't install curl. So I've install curl on my PC following some forum on web site. I've put curl.exe and ca-bundle.crt in window path folder: C\windows\system32. I test directly by putting curl "http://169.254.1.1/status.xml" directly in ...
by CCL54
Friday 18 November 2016 20:50
Forum: Other questions and discussions
Topic: os.execute('http...') not working
Replies: 7
Views: 3349

os.execute('http...') not working

Hello, I'm trying to use Domoticz on windows 7. I have to send an http request to a remote server and retrieve a temperature. I try to do this with a LUA script. The command below doesn't send anything on ethernet (verified with wireshark): temperature=os.execute('http://169.254.1.1/ forms.htm ...