missed it on all of them
This commit is contained in:
parent
324bfb8623
commit
5e61238b6c
1 changed files with 5 additions and 5 deletions
|
@ -10,23 +10,23 @@
|
||||||
echo "failed to get write permissions on logs";
|
echo "failed to get write permissions on logs";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if(is_writable('../../../admin/graphs_output')) {
|
if(is_writable('../../../../admin/graphs_output')) {
|
||||||
echo "failed to get write permissions on graphs_output";
|
echo "failed to get write permissions on graphs_output";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if(is_writable('../../../admin/templates/default_c')) {
|
if(is_writable('../../../../admin/templates/default_c')) {
|
||||||
echo "failed to get write permissions on default_c";
|
echo "failed to get write permissions on default_c";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if(is_writable('../../www')) {
|
if(is_writable('../../../www')) {
|
||||||
echo "failed to get write permissions on www";
|
echo "failed to get write permissions on www";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if(is_writable('../../www/html/cache')) {
|
if(is_writable('../../../www/html/cache')) {
|
||||||
echo "failed to get write permissions on cache";
|
echo "failed to get write permissions on cache";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
if(is_writable('../../www/html/templates_c')) {
|
if(is_writable('../../../www/html/templates_c')) {
|
||||||
echo "failed to get write permissions on templates_c";
|
echo "failed to get write permissions on templates_c";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue