New features

This commit is contained in:
Diego Najar 2015-05-19 00:08:16 -03:00
parent 22ead489e2
commit 2913bd55b4
2 changed files with 2 additions and 3 deletions

View File

@ -1 +0,0 @@
Set the right permissions on this directory. Check the documentation.

View File

@ -73,9 +73,9 @@ function checkSystem()
array_push($stdOut, $errorText);
}
if(!is_writable(PATH_CONTENT))
if(!@mkdir(PATH_CONTENT.'asd'))
{
$errorText = 'Writing test on content directory failed';
$errorText = 'Writing test failure, check directory content permissions. (Error 2005)';
error_log($errorText, 0);
array_push($stdOut, $errorText);
}