From b86acfb018f118bf14f812db0a13f7392281a16a Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Sat, 3 Aug 2024 05:20:24 -0500 Subject: [PATCH] Should address issues reported in #602 for dev-branch --- lib/common/functions.sh | 3 +++ packages/web/lib/fog/system.class.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/common/functions.sh b/lib/common/functions.sh index c5a34f3d49..7d0478f596 100755 --- a/lib/common/functions.sh +++ b/lib/common/functions.sh @@ -2400,6 +2400,9 @@ die(); chmod +rx $apacheerrlog chmod +rx $apacheacclog chown -R ${apacheuser}:${apacheuser} $webdirdest + touch $webdirdest/fog_login_accepted.log + touch $webdirdest/fog_login_failed.log + chown ${apacheuser}:${apacheuser} $webdirdest/fog_login_*.log chmod 0200 $webdirdest/fog_login_*.log errorStat $? [[ -d /var/www/html/ && ! -e /var/www/html/fog/ ]] && ln -s "$webdirdest" /var/www/html/ diff --git a/packages/web/lib/fog/system.class.php b/packages/web/lib/fog/system.class.php index 311c90ff95..64edb3a199 100644 --- a/packages/web/lib/fog/system.class.php +++ b/packages/web/lib/fog/system.class.php @@ -53,7 +53,7 @@ private static function _versionCompare() public function __construct() { self::_versionCompare(); - define('FOG_VERSION', '1.5.10.47'); + define('FOG_VERSION', '1.5.10.47.0'); define('FOG_SCHEMA', 271); define('FOG_BCACHE_VER', 141); define('FOG_CLIENT_VERSION', '0.13.0');