The error log file is not writable: /var/www/mammoth/logs/errors.txt
Please assign writing permissions on the error log file for the Apache user.
| Document | /phproad/modules/phpr/classes/phpr_errorlog.php |
|---|---|
| Document type | PHP document |
| Line | 247 |
| Exception class | Phpr_SystemException |
// Check whether the file and directory are writable
//
if ( file_exists($this->_logFileName) )
{
if ( !is_writable($this->_logFileName) )
{
$exception = new Phpr_SystemException( 'The error log file is not writable: '.$this->_logFileName );
$exception->hint_message = 'Please assign writing permissions on the error log file for the Apache user.';
throw $exception;
}
}
else
{
| # | Call Stack Code | Document | Line |
|---|---|---|---|
| 5 | Phpr_ErrorLog->loadConfiguration(()) | /phproad/modules/phpr/classes/phpr_errorlog.php | 33 |
| 4 | Phpr_ErrorLog->__construct(()) | /phproad/system/initialize.php | 155 |
| 3 | include('/var/www/mammoth/phproad/system/initialize.php') | /phproad/system/phproad.php | 24 |
| 2 | include('/var/www/mammoth/phproad/system/phproad.php') | /boot.php | 114 |
| 1 | require_once('/var/www/mammoth/boot.php') | /index.php | 3 |