Check if log files are writeable
| | |
| | | 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']); |
| | | } |
| | | } |
| | | |
| | | /* |
| | |
| | | $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); |