From fd6d12b1667aab5a2f6fbea742934c7b33ed8a57 Mon Sep 17 00:00:00 2001 From: Matthias Wirth Date: Sun, 29 Dec 2019 17:55:00 +0100 Subject: [PATCH] conf-enable bug fix readme --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 8e8e266..bcb72b2 100644 --- a/README.md +++ b/README.md @@ -207,3 +207,20 @@ If you are using another dump1090 fork, change `/run/dump1090-fa` in this sectio location /tar1090/data/ { alias /run/dump1090-fa/; } + + +## history not loading issue (possible fix) + +For a day or so i had a bug in the install script turning symbolic links in /etc/lighttpd/conf-enabled into copies of the files they were pointing to. + +This can cause some other issues with my install script which fiddles with the lighttpd config files to make mod_setenv work. + +Anyhow if just rerunning the install script does not fix your history loading issue, you can try this: + +``` +cd /etc/lighttpd/conf-enabled +for i in *; do if [ -f "../conf-available/$i" ]; then sudo ln -s -f "../conf-available/$i" $i; fi; done +``` + +After that rerun the install script. +If you still have history loading issues, get back to me via the github issues or the various forums i frequent.