Unable to load config file
Forum rules
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
Hi,
I have the kiosk.txt file on my server (publicly accessible & loads correctly in browser so is correct & accessible) with all settings including kiosk_config url but the setup will not load it. Url is: kiosk_config=http://myserver.co.za/lab/kiosk.txt. Have tried with and without https & www. Any ideas?
I have the kiosk.txt file on my server (publicly accessible & loads correctly in browser so is correct & accessible) with all settings including kiosk_config url but the setup will not load it. Url is: kiosk_config=http://myserver.co.za/lab/kiosk.txt. Have tried with and without https & www. Any ideas?
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Unable to load config file
I understand you enter just the URL in the wizard and not parameter+URL?
Make sure on final config window:
http://porteus-kiosk.org/screens/wizard/config.png
you have parameter+URL:
By the way - this url is not valid:
http://myserver.co.za/lab/kiosk.txt
i cant find any kiosk config there.
Make sure on final config window:
http://porteus-kiosk.org/screens/wizard/config.png
you have parameter+URL:
Code: Select all
kiosk_config=http://myserver.co.za/lab/kiosk.txt
http://myserver.co.za/lab/kiosk.txt
i cant find any kiosk config there.
Please add [Solved] to your thread title if the solution was found.
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
It was an example domain I used. The actual one is https://www.kingsschool.co.za/lab/kiosk.txt
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Unable to load config file
Your webserver is configured to reject all clients which does not have an user agent set:
This works:
Maybe you could remove this policy?
We cant add user agent by default as it breaks configs hosted on e.g. dropbox.com.
Code: Select all
wget https://www.kingsschool.co.za/lab/kiosk.txt
--2018-08-08 21:08:11-- https://www.kingsschool.co.za/lab/kiosk.txt
Resolving www.kingsschool.co.za... 77.104.189.92
Connecting to www.kingsschool.co.za|77.104.189.92|:443... connected.
HTTP request sent, awaiting response... 403 Forbidden
2018-08-08 21:08:12 ERROR 403: Forbidden.
Code: Select all
wget -U mozilla https://www.kingsschool.co.za/lab/kiosk.txt
--2018-08-08 21:08:23-- https://www.kingsschool.co.za/lab/kiosk.txt
Resolving www.kingsschool.co.za... 77.104.189.92
Connecting to www.kingsschool.co.za|77.104.189.92|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/plain]
Saving to: 'kiosk.txt'
kiosk.txt [ <=> ] 782 --.-KB/s in 0s
2018-08-08 21:08:24 (40.5 MB/s) - 'kiosk.txt' saved [782]
We cant add user agent by default as it breaks configs hosted on e.g. dropbox.com.
Please add [Solved] to your thread title if the solution was found.
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
Yes this is to block spam traffic and cannot be disabled. How could I set the user agent?
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
Ok I managed to remove just wget and it works
Thank you for your assistance.

-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
This is such a useful piece of software thank you.
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
Last question: When it boots it shows my wallpaper, then a black screen for a few seconds then displays the wallpaper again. Is there any way to skip the black screen interval?
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Unable to load config file
Its not possible to skip the black screen completely as splash works on a kernel framebuffer while browser needs Xorg session (different drivers).
Please add [Solved] to your thread title if the solution was found.
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
Ok ty.
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Unable to load config file
Actually - you may try:
but you'll loose some features (e.g. there may be tearing on Intel GPU when screen is rotated).
Code: Select all
gpu_driver=modesetting
Please add [Solved] to your thread title if the solution was found.
-
- White ninja
- Posts: 8
- Joined: 08 Aug 2018, 12:11
- Distribution: Custom built Ubuntu Plasma
Unable to load config file
Still has the black screen interval with that setting enabled.
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Unable to load config file
In this case the only solution is to use completely black wallpaper.
Please add [Solved] to your thread title if the solution was found.