From 9fc381f4e8712fec0e7b67c0f4e7af0980261e16 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Sun, 11 Dec 2005 18:19:48 -0500
Subject: [PATCH] Check if log files are writeable
---
program/include/bugs.inc | 8 +++++++-
program/steps/mail/sendmail.inc | 2 +-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/program/include/bugs.inc b/program/include/bugs.inc
index bc1a293..771f1ae 100644
--- a/program/include/bugs.inc
+++ b/program/include/bugs.inc
@@ -67,12 +67,18 @@
if (empty($CONFIG['log_dir']))
$CONFIG['log_dir'] = $INSTALL_PATH.'logs';
- if ($fp = fopen($CONFIG['log_dir'].'/errors', 'a'))
+ // try to open specific log file for writing
+ if ($fp = @fopen($CONFIG['log_dir'].'/errors', 'a'))
{
fwrite($fp, $log_entry);
fclose($fp);
}
+ else
+ {
+ // send error to PHPs error handler
+ trigger_error($arg_arr['message']);
+ }
}
/*
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc
index 8ec30b0..6a3b511 100644
--- a/program/steps/mail/sendmail.inc
+++ b/program/steps/mail/sendmail.inc
@@ -283,7 +283,7 @@
$mailto,
$msg_subject);
- if ($fp = fopen($CONFIG['log_dir'].'/sendmail', 'a'))
+ if ($fp = @fopen($CONFIG['log_dir'].'/sendmail', 'a'))
{
fwrite($fp, $log_entry);
fclose($fp);
--
Gitblit v1.9.1