From 715311c9368ba2aa3af8c901f6827f8147ea2941 Mon Sep 17 00:00:00 2001 From: Darko Date: Wed, 25 Feb 2015 11:51:23 +0100 Subject: [PATCH] Force read/write on group level for the log file. --- lib/copy_this/www/lib/Logger.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/copy_this/www/lib/Logger.php b/lib/copy_this/www/lib/Logger.php index b104516fb..4ab77eef8 100644 --- a/lib/copy_this/www/lib/Logger.php +++ b/lib/copy_this/www/lib/Logger.php @@ -535,6 +535,7 @@ class Logger ) { throw new LoggerException('Unable to create new log file ' . $this->logPath); } + chmod($this->logPath, 0664); } }