From cb89616e1d7117a9d9e44ffc01fa6bcec0c1cdab Mon Sep 17 00:00:00 2001 From: thomascube Date: Thu, 1 Oct 2009 06:50:48 +0000 Subject: Trigger warning if logs cannot be written --- program/include/main.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'program') diff --git a/program/include/main.inc b/program/include/main.inc index 97a3db16c..6e4cbe1bc 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1042,12 +1042,15 @@ function write_log($name, $line) $CONFIG['log_dir'] = INSTALL_PATH.'logs'; // try to open specific log file for writing - if ($fp = @fopen($CONFIG['log_dir'].'/'.$name, 'a')) { + $logfile = $CONFIG['log_dir'].'/'.$name; + if ($fp = @fopen($logfile, 'a')) { fwrite($fp, $log_entry); fflush($fp); fclose($fp); return true; } + else + trigger_error("Error writing to log file $logfile; Please check permissions", E_USER_WARNING); } return false; } -- cgit v1.2.3