mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
php is_writable is not reliable
This commit is contained in:
parent
80e6d911b6
commit
1c30c1067e
1 changed files with 25 additions and 6 deletions
|
@ -7,29 +7,48 @@
|
||||||
|
|
||||||
ini_set('display_errors', 1);
|
ini_set('display_errors', 1);
|
||||||
error_reporting(E_ALL);
|
error_reporting(E_ALL);
|
||||||
|
|
||||||
|
function is__writable($path) {
|
||||||
|
|
||||||
|
if ($path{strlen($path)-1}=='/')
|
||||||
|
return is__writable($path.uniqid(mt_rand()).'.tmp');
|
||||||
|
|
||||||
|
if (file_exists($path)) {
|
||||||
|
if (!($f = @fopen($path, 'r+')))
|
||||||
|
return false;
|
||||||
|
fclose($f);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!($f = @fopen($path, 'w')))
|
||||||
|
return false;
|
||||||
|
fclose($f);
|
||||||
|
unlink($path);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
//set permissions
|
//set permissions
|
||||||
if(is_writable('../../../www/login/logs')) {
|
if(is__writable('../../../www/login/logs')) {
|
||||||
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