From 0972ec14086d9cd10c1a7ed90a84b69ee9f021ce Mon Sep 17 00:00:00 2001 From: Will Budic Date: Wed, 8 Jan 2020 19:37:01 +1100 Subject: [PATCH] upd --- Current Development Check List.md | 10 +++++++--- startDevWebServer.sh | 6 +++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Current Development Check List.md b/Current Development Check List.md index 121d584..cd93ade 100644 --- a/Current Development Check List.md +++ b/Current Development Check List.md @@ -48,9 +48,13 @@ This version is not compatible in data structure to prior versions. Data migrati ## Bugs ### v. 1.7 Encountered/Fixed -* Bug 14 Subpages pages links to main, restart main page session counter, making main page fully usable. - * Not really a bug. These pages simply need to inherit the counter, and jump user to login screen if expired. - * Possible workaround is to allow only subpage display for an pre established amount of time, before login user off. +* Issue 14 Subpages pages links to main, restart main page session counter, making the main page fully usable. + * Not really a bug. Session will expire but time remaining will be displayed wrong on the main page. + * All subpages need either to inherit the counter, and jump user to the login screen if expired. + * Or update main pages timer countdown. Which is not possible if browsers back button is pressed. + * Pressing back button brings the page display to initial time it was loaded from. + * This has been now marked as an complex issue. Not worth much spending time on. LifeLong is not an banking app. + * ✔ Bug 13 - Migrated old data, linking to wrong id, db fix in config page seems to fix this. * ✔ Bug 12 - Invalid login only shows db error. diff --git a/startDevWebServer.sh b/startDevWebServer.sh index d64d154..1c36d8e 100755 --- a/startDevWebServer.sh +++ b/startDevWebServer.sh @@ -1,10 +1,10 @@ -#!/bin/bash +#!/bin/bash DIR="/home/will/dev/LifeLog" if [ ! -d "$DIR/log" ]; then - mkdir "$DIR/log" + mkdir "$DIR/log" fi cd $DIR cd /home/will/dev/LifeLog -thttpd -C thttpd.conf& +thttpd -C thttpd.conf & -- 2.34.1