Page 1 of 1

Error: "Double check path to domoticz in settings!"

Posted: Friday 13 July 2018 23:25
by tomasz
Hi Guys!

With my fairly simple config, I am getting message "Double check path to domoticz in settings!". It pops up after few seconds of using dashticz. Everything is loaded & displayed properly, but still I did not manage to find the reason behind this annoying issues.

Maybe I missed something obvious? Could you take a look quickly?

Code: Select all

var config = {}
config['domoticz_ip'] = 'http://192.168.2.150:8080';
config['app_title'] = 'xyz';
config['domoticz_refresh'] = '5';
config['dashticz_refresh'] = '60';

var buttons = {}
buttons.buienradar = {width:12, isimage:true, image: 'https://api.buienradar.nl/image/1.0/RadarMapNL?w=285&h=256'};

var blocks = {}
blocks['58'] = {}
blocks['58']['icon'] ='fa-home';
blocks['58']['title'] = 'Cho';

blocks['47'] = {}
blocks['47']['icon'] ='fa-female';
blocks['47']['title'] = 'Gab';

blocks['1'] = {}
blocks['1']['icon'] ='fa-home';
blocks['1']['title'] = 'Local';

var columns = {}

columns[1] = {}
columns[1]['blocks'] = ['graph_1','graph_47','graph_58']
columns[1]['width'] = 5;

columns[2] = {}
columns[2]['blocks'] = [1,47,58]
columns[2]['width'] = 4; 

columns[3] = {}
columns[3]['blocks'] = [buttons.buienradar]
columns[3]['width'] = 2; 

var screens = {}
screens[1] = {}
screens[1]['background'] = 'iss2.jpg';
screens[1]['columns'] = [2,3]
Thanks in advance!
Tomasz

Re: Error: "Double check path to domoticz in settings!"

Posted: Monday 01 October 2018 3:23
by wergeld
I am facing similar issue. Only ever shows the "Double check path to domoticz in settings!" in lower right. I am running latest 2.4 beta on latest Domoticz 4.97 clean install. I have several devices all showing under my main URL. My custom/CONFIG.js:

Code: Select all

var config = {}
config['domoticz_ip'] = 'http://192.168.1.102:8080';
config['user_name'] = 'xxxxxxxxxxxx';
config['pass_word'] = 'yyyyyyyyyyyy';
config['loginEnabled'] = 1;
config['app_title'] = 'Dashticz';
config['domoticz_refresh'] = '5';
config['dashticz_refresh'] = '60';

Re: Error: "Double check path to domoticz in settings!"

Posted: Tuesday 23 October 2018 13:11
by EastXIII
Same issue here. Can't figure out why....

Re: Error: "Double check path to domoticz in settings!"

Posted: Tuesday 30 October 2018 10:17
by Minglarn
Hi!
Having the same issues with mine, but there I think i've found the fault...

When running the Dashticz on a low end computer as RPI on WiFi there seems that the connection to Domoticz server times out.
When running on my High-End computer i've never encounter this error....
See this error in Chrome runing in RPI:
Skärmklipp.PNG
Skärmklipp.PNG (33.75 KiB) Viewed 1381 times
Maybe there should be an option to add something like this:

Code: Select all

config['domoticz_timeout_reload'] = '10';
Where the timeout is defined in seconds and Dasthicz should try to reload the data from Domoticz?
Now it just halts and does not even try to reload. Only when Dasthicz is refreshed it reloads the data ..

Re: Error: "Double check path to domoticz in settings!"

Posted: Tuesday 30 October 2018 10:56
by pvm
I have the same issue, running dashticz on a simple tablet and domoticz on a synology nas.

Re: Error: "Double check path to domoticz in settings!"

Posted: Tuesday 30 October 2018 11:10
by RapTile
Same here.

This is the first time i try to set this up.
I am using a username and password on domoticz so i set my config to:

Code: Select all

config['domoticz_ip'] = 'http://USERNAME:#rfvbgtu@domoticzip:8080';
I also tried %23 for url encoding for the dash (#) and offcourse this aint my real password...

Code: Select all

http://USERNAME:%23rfvbgtu@ip:8080
But nothing seems to work.
Also tried to add the domoticzip to the local networks so no UN/PW is required but that didnt solve my problem either.

Re: Error: "Double check path to domoticz in settings!"

Posted: Sunday 04 November 2018 20:08
by rgroothuis
Same issue on my side as well. Hope there is a solution at some stage.

Re: Error: "Double check path to domoticz in settings!"

Posted: Sunday 04 November 2018 21:37
by Lokonli
rgroothuis wrote: Sunday 04 November 2018 20:08 Same issue on my side as well. Hope there is a solution at some stage.
I propose to first test without username/password. In Domoticz you can set the subnets that don't require a user/password combination.

If it's working without user/password, then you may enable user/password checking again in Domoticz.
In Dashticz use the following settings in CONFIG.js:
config['user_name'] = 'username';
config['pass_word'] = 'password';

Re: Error: "Double check path to domoticz in settings!"

Posted: Sunday 04 November 2018 21:40
by rgroothuis
Lokonli wrote: Sunday 04 November 2018 21:37
rgroothuis wrote: Sunday 04 November 2018 20:08 Same issue on my side as well. Hope there is a solution at some stage.
I propose to first test without username/password. In Domoticz you can set the subnets that don't require a user/password combination.

If it's working without user/password, then you may enable user/password checking again in Domoticz.
In Dashticz use the following settings in CONFIG.js:
config['user_name'] = 'username';
config['pass_word'] = 'password';
For connections from the local network I'm not making used of a login name and password.
Screen Shot 2018-11-04 at 21.39.57.png
Screen Shot 2018-11-04 at 21.39.57.png (114.65 KiB) Viewed 1307 times

Re: Error: "Double check path to domoticz in settings!"

Posted: Sunday 04 November 2018 22:27
by Minglarn
The same here... no user/pass for local networks.

The switches and all work, it just do not update status and time for switches and temperatures. Strange.