dashticz: Important Request

Dashticz, alternative dashboard based on HTML, CSS, jQuery

Moderators: leecollings, htilburgs, robgeerts

Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

Lokonli wrote: Wednesday 16 January 2019 21:05
Derik wrote: Saturday 05 January 2019 20:42 Dear All...
I do found some time to play with Dashticz...
I hope some can tell me with a new setup for my all the missing parts before Rob changed some masterthings..

When i read some topics.. There are a lot of different perimeters...
And unfortunately the WIKI :-(


I hope some can give a step by step guide..
For my calendar and garbage first


Thanks in advanced
How far are you?
Did you follow the installation instructions in the Wiki?
https://www.domoticz.com/wiki/Dashticz_ ... stallation

Can you post your CONFIG.js, and summarize the problems you have?

My garbage is have running with a other script..

Only the calendar ...:-(
So i follow the wiki i can run the calender on my own "server" ?
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: IMPORTANT REQUEST!!!

Post by Lokonli »

geertvercamer wrote: Monday 31 December 2018 16:41 Hi all,

as a complete Linux noob this is quite difficult. Even more so, because I feel the wiki is quite often not up to date.

I started by downloading the zip and unpacking it in to /var/www/html/dashticz_v2
I've modified /etc/apace2/sites-enabled/000-default.conf and added:

Code: Select all

<VirtualHost *:8092>
# Always set these headers.
Header set Access-Control-Allow-Origin "*"
DocumentRoot /var/www/html/dashticz_v2
<Directory "/var/www/html/dashticz_v2">
allow from all
Options Indexes FollowSymLinks
Require all granted
</Directory>
</VirtualHost>
added port 8092 to ports.conf

<ip_of_pi_running_dashticz>:8092 loads dasthicz with the desired buttons, weather, ... but the garbage block keeps loading, no calendars added so far.

Then I read, the files are included in the latest beta, so I upgraded. Still no luck. Added an info.php page, which shows PHP and cURL are up and running
<ip_of_pi_running_dashticz>:8092/vendor/dashticz/garbage/info.php reads PHP version 7.0.30-0+deb9u1 and cURL suppert enabled, version 7.52.1
Same info when I click the cog in dashticzs and select the info tab.

CONGIF.js:

Code: Select all

config['garbage_company'] = 'ophaalkalender';
config['garbage_hideicon'] = 0;
config['garbage_housenumber'] = '54';
config['garbage_icalurl'] = '';
config['garbage_icon_use_colors'] = true;		// true / false; shows colored or only white trashcan
config['garbage_maxitems'] = '2';
config['garbage_street'] = 'De Patine';
config['garbage_use_names'] = true;				// true / false; shows name from config
config['garbage_use_colors'] = true;			// true / false; shows coloring for complete line
config['garbage_use_cors_prefix'] = true;
config['garbage_width'] = '12';
config['garbage_zipcode'] = '8980';
config['garbage'] = {
	gft: {kliko: 'White', code: '#White', name: 'GFT'},
	pmd: {kliko: '#87CEFA', code: '#87CEFA', name: 'PMD', icon: 'img/garbage/kliko_blue.png'},
	rest: {kliko: 'White', code: 'White', name: 'Restafval'},
	papier: {kliko: 'gray', code: '#c7763f', name: 'Papier & karton'},
	kca: {kliko: 'red', code: '#b21807', name: 'Chemisch afval'},
	brown: {kliko: 'brown', code: '#c7763f', name: 'Bruin'},
	black: {kliko: 'black', code: '#000000', name: 'Zwart'},
};

I haven't done the symlink thing, I thought it isn't needed as dashticz is not running on the domoticz server (which is actually a W10 machine as I had way to many trouble with the PI). Of course, I may be wrong here.

Is there anyone who can shed a light in this darkness? ;)
Thanks
Ok, so you are running dashticz on a PI and Domoticz on a W10 machine. That should be no problem.
On the PI you are running Apache and serve Dashticz on port 8092. Configuration looks ok as well.

Dashticz reports the correct PHP version on the info-tab. That means PHP is installed correctly.

I checked ophaalkalender, and indeed it doesn't work anymore.
ophaalkalender switched from http to https only. I will make a fix for the next beta.

If you can't wait for the next beta:
In file 'garbage.js', line 164, change http to https
After that garbage should work ...

You also have a problem with calendar?
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by Lokonli »

Derik wrote: Wednesday 16 January 2019 21:13
Lokonli wrote: Wednesday 16 January 2019 21:05
Derik wrote: Saturday 05 January 2019 20:42 Dear All...
I do found some time to play with Dashticz...
I hope some can tell me with a new setup for my all the missing parts before Rob changed some masterthings..

When i read some topics.. There are a lot of different perimeters...
And unfortunately the WIKI :-(


I hope some can give a step by step guide..
For my calendar and garbage first


Thanks in advanced
How far are you?
Did you follow the installation instructions in the Wiki?
https://www.domoticz.com/wiki/Dashticz_ ... stallation

Can you post your CONFIG.js, and summarize the problems you have?

My garbage is have running with a other script..

Only the calendar ...:-(
So i follow the wiki i can run the calender on my own "server" ?
Yes, that should work.
Please share some more details on your configuration.
geertvercamer
Posts: 84
Joined: Friday 12 May 2017 20:03
Target OS: -
Domoticz version:
Contact:

Re: IMPORTANT REQUEST!!!

Post by geertvercamer »

Lokonli wrote: Wednesday 16 January 2019 21:51
geertvercamer wrote: Monday 31 December 2018 16:41 Hi all,

as a complete Linux noob this is quite difficult. Even more so, because I feel the wiki is quite often not up to date.

I started by downloading the zip and unpacking it in to /var/www/html/dashticz_v2
I've modified /etc/apace2/sites-enabled/000-default.conf and added:

Code: Select all

<VirtualHost *:8092>
# Always set these headers.
Header set Access-Control-Allow-Origin "*"
DocumentRoot /var/www/html/dashticz_v2
<Directory "/var/www/html/dashticz_v2">
allow from all
Options Indexes FollowSymLinks
Require all granted
</Directory>
</VirtualHost>
added port 8092 to ports.conf

<ip_of_pi_running_dashticz>:8092 loads dasthicz with the desired buttons, weather, ... but the garbage block keeps loading, no calendars added so far.

Then I read, the files are included in the latest beta, so I upgraded. Still no luck. Added an info.php page, which shows PHP and cURL are up and running
<ip_of_pi_running_dashticz>:8092/vendor/dashticz/garbage/info.php reads PHP version 7.0.30-0+deb9u1 and cURL suppert enabled, version 7.52.1
Same info when I click the cog in dashticzs and select the info tab.

CONGIF.js:

Code: Select all

config['garbage_company'] = 'ophaalkalender';
config['garbage_hideicon'] = 0;
config['garbage_housenumber'] = '54';
config['garbage_icalurl'] = '';
config['garbage_icon_use_colors'] = true;		// true / false; shows colored or only white trashcan
config['garbage_maxitems'] = '2';
config['garbage_street'] = 'De Patine';
config['garbage_use_names'] = true;				// true / false; shows name from config
config['garbage_use_colors'] = true;			// true / false; shows coloring for complete line
config['garbage_use_cors_prefix'] = true;
config['garbage_width'] = '12';
config['garbage_zipcode'] = '8980';
config['garbage'] = {
	gft: {kliko: 'White', code: '#White', name: 'GFT'},
	pmd: {kliko: '#87CEFA', code: '#87CEFA', name: 'PMD', icon: 'img/garbage/kliko_blue.png'},
	rest: {kliko: 'White', code: 'White', name: 'Restafval'},
	papier: {kliko: 'gray', code: '#c7763f', name: 'Papier & karton'},
	kca: {kliko: 'red', code: '#b21807', name: 'Chemisch afval'},
	brown: {kliko: 'brown', code: '#c7763f', name: 'Bruin'},
	black: {kliko: 'black', code: '#000000', name: 'Zwart'},
};

I haven't done the symlink thing, I thought it isn't needed as dashticz is not running on the domoticz server (which is actually a W10 machine as I had way to many trouble with the PI). Of course, I may be wrong here.

Is there anyone who can shed a light in this darkness? ;)
Thanks
Ok, so you are running dashticz on a PI and Domoticz on a W10 machine. That should be no problem.
On the PI you are running Apache and serve Dashticz on port 8092. Configuration looks ok as well.

Dashticz reports the correct PHP version on the info-tab. That means PHP is installed correctly.

I checked ophaalkalender, and indeed it doesn't work anymore.
ophaalkalender switched from http to https only. I will make a fix for the next beta.

If you can't wait for the next beta:
In file 'garbage.js', line 164, change http to https
After that garbage should work ...

You also have a problem with calendar?
Hi Lokonli,

Calendars are working fine. It's just the garbage that isn't/wasn't. Maybe only my Belgian part of it.
I've tried tried your proposal, and it's working as a charm!
Thanks a million.
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: IMPORTANT REQUEST!!!

Post by Lokonli »

geertvercamer wrote: Wednesday 16 January 2019 23:27
Lokonli wrote: Wednesday 16 January 2019 21:51
geertvercamer wrote: Monday 31 December 2018 16:41 Hi all,

as a complete Linux noob this is quite difficult. Even more so, because I feel the wiki is quite often not up to date.

I started by downloading the zip and unpacking it in to /var/www/html/dashticz_v2
I've modified /etc/apace2/sites-enabled/000-default.conf and added:

Code: Select all

<VirtualHost *:8092>
# Always set these headers.
Header set Access-Control-Allow-Origin "*"
DocumentRoot /var/www/html/dashticz_v2
<Directory "/var/www/html/dashticz_v2">
allow from all
Options Indexes FollowSymLinks
Require all granted
</Directory>
</VirtualHost>
added port 8092 to ports.conf

<ip_of_pi_running_dashticz>:8092 loads dasthicz with the desired buttons, weather, ... but the garbage block keeps loading, no calendars added so far.

Then I read, the files are included in the latest beta, so I upgraded. Still no luck. Added an info.php page, which shows PHP and cURL are up and running
<ip_of_pi_running_dashticz>:8092/vendor/dashticz/garbage/info.php reads PHP version 7.0.30-0+deb9u1 and cURL suppert enabled, version 7.52.1
Same info when I click the cog in dashticzs and select the info tab.

CONGIF.js:

Code: Select all

config['garbage_company'] = 'ophaalkalender';
config['garbage_hideicon'] = 0;
config['garbage_housenumber'] = '54';
config['garbage_icalurl'] = '';
config['garbage_icon_use_colors'] = true;		// true / false; shows colored or only white trashcan
config['garbage_maxitems'] = '2';
config['garbage_street'] = 'De Patine';
config['garbage_use_names'] = true;				// true / false; shows name from config
config['garbage_use_colors'] = true;			// true / false; shows coloring for complete line
config['garbage_use_cors_prefix'] = true;
config['garbage_width'] = '12';
config['garbage_zipcode'] = '8980';
config['garbage'] = {
	gft: {kliko: 'White', code: '#White', name: 'GFT'},
	pmd: {kliko: '#87CEFA', code: '#87CEFA', name: 'PMD', icon: 'img/garbage/kliko_blue.png'},
	rest: {kliko: 'White', code: 'White', name: 'Restafval'},
	papier: {kliko: 'gray', code: '#c7763f', name: 'Papier & karton'},
	kca: {kliko: 'red', code: '#b21807', name: 'Chemisch afval'},
	brown: {kliko: 'brown', code: '#c7763f', name: 'Bruin'},
	black: {kliko: 'black', code: '#000000', name: 'Zwart'},
};

I haven't done the symlink thing, I thought it isn't needed as dashticz is not running on the domoticz server (which is actually a W10 machine as I had way to many trouble with the PI). Of course, I may be wrong here.

Is there anyone who can shed a light in this darkness? ;)
Thanks
Ok, so you are running dashticz on a PI and Domoticz on a W10 machine. That should be no problem.
On the PI you are running Apache and serve Dashticz on port 8092. Configuration looks ok as well.

Dashticz reports the correct PHP version on the info-tab. That means PHP is installed correctly.

I checked ophaalkalender, and indeed it doesn't work anymore.
ophaalkalender switched from http to https only. I will make a fix for the next beta.

If you can't wait for the next beta:
In file 'garbage.js', line 164, change http to https
After that garbage should work ...

You also have a problem with calendar?
Hi Lokonli,

Calendars are working fine. It's just the garbage that isn't/wasn't. Maybe only my Belgian part of it.
I've tried tried your proposal, and it's working as a charm!
Thanks a million.
Good!
I've created the PR on github. Probably it will be merged with the next beta release of Dashticz.
pieter1964
Posts: 6
Joined: Wednesday 23 January 2019 15:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by pieter1964 »

for anyone who is running dashticz on a synology server and can't get google agenda running.

there is a solution that I just found out.
what works for me:
I have apache 2.4 funning with PHP7

login to your synology
open webstation (so you can edit the settings)
goto PHP Settings
edit the default profiles that are listed there
at the extensions there is CURL
standard, the thick mark is not set
change it and enable it.

go back to your dashticz and check

I use the hidden ICAL url from Google agenda

for me it works.

now I need to combine 2 different agenda's into 1 view and for a full week(7 days).
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

Dear all

I did have a mega crash on my Rpi3...
Now i setting evrything up again...
Only my calendars are not working i get the error:

Code: Select all

GET http://dashticz.nl/ical/?time=1559427667562&url=https://calendar.google.com/calendar/ical/dylanvas%40gmail.com/private-a6e86e45fa4e99f68b3f2f60ee7292ab/basic.ics net::ERR_NAME_RESOLUTION_FAILED
and is was thinking there was a issue of Rob, so he removed something from his server.

So does any one have a how to i get the server for calendars running n my own Odriod

Thanks!!
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
User avatar
HansieNL
Posts: 964
Joined: Monday 28 September 2015 15:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by HansieNL »

Derik wrote: Sunday 02 June 2019 0:28 Dear all

I did have a mega crash on my Rpi3...
Now i setting evrything up again...
Only my calendars are not working i get the error:

Code: Select all

GET http://dashticz.nl/ical/?time=1559427667562&url=https://calendar.google.com/calendar/ical/dylanvas%40gmail.com/private-a6e86e45fa4e99f68b3f2f60ee7292ab/basic.ics net::ERR_NAME_RESOLUTION_FAILED
and is was thinking there was a issue of Rob, so he removed something from his server.

So does any one have a how to i get the server for calendars running n my own Odriod

Thanks!!
See https://buildmedia.readthedocs.org/medi ... icz-v2.pdf Dashticz.nl is not used anymore. You need PHP runnig,
Blah blah blah
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

HansieNL wrote: Sunday 02 June 2019 3:00
Derik wrote: Sunday 02 June 2019 0:28 Dear all

I did have a mega crash on my Rpi3...
Now i setting evrything up again...
Only my calendars are not working i get the error:

Code: Select all

GET http://dashticz.nl/ical/?time=1559427667562&url=https://calendar.google.com/calendar/ical/dylanvas%40gmail.com/private-a6e86e45fa4e99f68b3f2f60ee7292ab/basic.ics net::ERR_NAME_RESOLUTION_FAILED
and is was thinking there was a issue of Rob, so he removed something from his server.

So does any one have a how to i get the server for calendars running n my own Odriod

Thanks!!
See https://buildmedia.readthedocs.org/medi ... icz-v2.pdf Dashticz.nl is not used anymore. You need PHP runnig,

Thanks... Did not now there was a manual.....

Ony there is no solution for the calendar...
Is see a Php instal.. i did that.
Only no calendar running...
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by Lokonli »

Derik wrote: Sunday 02 June 2019 9:48
HansieNL wrote: Sunday 02 June 2019 3:00
Derik wrote: Sunday 02 June 2019 0:28 Dear all

I did have a mega crash on my Rpi3...
Now i setting evrything up again...
Only my calendars are not working i get the error:

Code: Select all

GET http://dashticz.nl/ical/?time=1559427667562&url=https://calendar.google.com/calendar/ical/dylanvas%40gmail.com/private-a6e86e45fa4e99f68b3f2f60ee7292ab/basic.ics net::ERR_NAME_RESOLUTION_FAILED
and is was thinking there was a issue of Rob, so he removed something from his server.

So does any one have a how to i get the server for calendars running n my own Odriod

Thanks!!
See https://buildmedia.readthedocs.org/medi ... icz-v2.pdf Dashticz.nl is not used anymore. You need PHP runnig,

Thanks... Did not now there was a manual.....

Ony there is no solution for the calendar...
Is see a Php instal.. i did that.
Only no calendar running...
Did you install the beta version of Dashticz and PHP according to the installation instructions? Then the calendar module should work...

Please check that PHP is configured correctly:
Open the Dashticz s settings (settings icon right top), info tab: What is the Dashticz version and PHP version that is reported?

In CONFIG.js remove all settings related to CORS. (not needed anymore)

Can you post your calendar definition from CONFIG.js here? (hide your private info)
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

Strange last beta..

Code: Select all

Reading state information... Done
apache2 is already the newest version (2.4.29-1ubuntu4.6).
0 upgraded, 0 newly installed, 0 to remove and 27 not upgraded.
pi@odroid:~$ sudo apt-get install php
Reading package lists... Done
Building dependency tree
Reading state information... Done
php is already the newest version (1:7.2+60ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 27 not upgraded.
pi@odroid:~$ sudo apt-get install php-xml php-curl
Reading package lists... Done
Building dependency tree
Reading state information... Done
php-curl is already the newest version (1:7.2+60ubuntu1).
php-xml is already the newest version (1:7.2+60ubuntu1).
php... looks ok


Only in the info tab:
ScreenShot046.jpg
ScreenShot046.jpg (27.75 KiB) Viewed 1329 times
And i see no Php

Code: Select all

{maxitems: 15, 	icalurl: 'https://calendar.google.com/calendar/ical/aname%40gmail.com/private-3592da1ad5731667df1d6ea83/basic.ics' }

Where do i find this:

Code: Select all

 In CONFIG.js remove all settings related to CORS. (not needed anymore)
In the config i cannot find them..
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
User avatar
HansieNL
Posts: 964
Joined: Monday 28 September 2015 15:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by HansieNL »

@Derik: You are running a master version, not the latest beta. Latest beta can be downloaded here https://github.com/Dashticz/dashticz_v2/tree/beta
Blah blah blah
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

mmm did thinking that i had the latest beta..

Now i have:
ScreenShot047.jpg
ScreenShot047.jpg (31.39 KiB) Viewed 1322 times
Only Putty says php installed
And dashticz says not??
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by Lokonli »

Derik wrote: Thursday 06 June 2019 22:06 mmm did thinking that i had the latest beta..

Now i have:
ScreenShot047.jpg

Only Putty says php installed
And dashticz says not??
Did you install all required php modules?

For php with Apache:

Code: Select all

sudo apt-get install php-xml php-curl libapache2-mod-php
sudo systemctl restart apache2
Are you using Apache webserver url? (not your Domoticz ip:port)

Check the installation instructions just to be sure:
https://dashticz-v2.readthedocs.io/en/l ... setup.html
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

@lokonli,

I did:

Code: Select all

pi@odroid:~$ sudo apt-get install php-xml php-curl libapache2-mod-php
Reading package lists... Done
Building dependency tree
Reading state information... Done
libapache2-mod-php is already the newest version (1:7.2+60ubuntu1).
php-curl is already the newest version (1:7.2+60ubuntu1).
php-xml is already the newest version (1:7.2+60ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
pi@odroid:~$ sudo systemctl restart apache2
pi@odroid:~$
Strange other thing
everything double check
i run some other php scripts that are working fine?
ScreenShot048.jpg
ScreenShot048.jpg (19.14 KiB) Viewed 1309 times
This ok?
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by Lokonli »

Via which path do you open Dashticz? (on port 80)
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

Lokonli wrote: Friday 07 June 2019 7:45 Via which path do you open Dashticz? (on port 80)

Code: Select all

http://192.168.5.70:8080/dashticz_v2/index.html
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by Lokonli »

Derik wrote: Friday 07 June 2019 8:24
Lokonli wrote: Friday 07 June 2019 7:45 Via which path do you open Dashticz? (on port 80)

Code: Select all

http://192.168.5.70:8080/dashticz_v2/index.html
You open Dashticz via port 8080. I guess Domoticz is running on this port. The Domoticz web server doesn't support PHP, That means also the PHP functionality in Dashticz will not work (like calendar, tv guide and a few more)

To fix this, try to follow the Dashticz installation instructions. First step is to have Apache web server running correctly. You should see the default Apache webpage when you open http://192.168.5.70

You have a slightly different system (Ubuntu) on different hardware, so in your case the way on how to install Apache might be slightly different. There are sufficient guides on the web for this if you need help.

Next step is to make Dashticz accessible via Apache.
Normally the web-root folder of Apache is /var/www/html
You have to copy the complete dashticz_v2 folder to this location (/var/www/html/dashticz_v2/) or you create a symlink in /var/www/html to the current position of the dashticz_v2 folder. The installation guide contains the instructions for this.

Dashtics should then become available via http://192.168.5.70/dashticz_v2
(so default port 80, not port 8080)
Derik
Posts: 1602
Joined: Friday 18 October 2013 23:33
Target OS: Raspberry Pi / ODroid
Domoticz version: BETA
Location: Arnhem/Nijmegen Nederland
Contact:

Re: dashticz: Important Request

Post by Derik »

Thanks for the help!!!

Only 1 problem.
I cannot find the root of the apache
There is no /var/www
And i can not find the apache www place
Xu4: Beta Extreme antenna RFXcomE,WU Fi Ping ip P1 Gen5 PVOutput Harmony HUE SolarmanPv OTG Winddelen Alive ESP Buienradar MySensors WOL Winddelen counting RPi: Beta SMAspot RFlinkTest Domoticz ...Different backups
Lokonli
Posts: 2289
Joined: Monday 29 August 2016 22:40
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: dashticz: Important Request

Post by Lokonli »

Derik wrote: Friday 07 June 2019 13:58 Thanks for the help!!!

Only 1 problem.
I cannot find the root of the apache
There is no /var/www
And i can not find the apache www place
If I remember correctly the Apache configuration is stored in /etc/apache2
There should be a configuration file in that folder containing the default settings including the directory path for the default web site.

Fallback:
I'm preparing a new Docker file. With Docker we can setup a default configuration which should work on most systems
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest