dzzoffice/admin/system/fileperms.php
小胡 77979b6ed5
更新至V2.3.2版本,离线升级的用户需要执行升级程序 (#278)
* 优化百度编辑器,修复编辑器插入的图片不能预览问题

* 处理系统异常时登录无反应问题

* 更新至V2.3.1版本,离线升级的用户需要执行升级程序
2025-01-16 21:17:09 +08:00

59 lines
2.0 KiB
PHP

<?php
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
if (!defined('IN_DZZ') || !defined('IN_ADMIN')) {
exit('Access Denied');
}
include_once libfile('function/admin');
$oparr = array('updatecache', 'database','cron', 'log','fileperms');
$op = isset($_GET['op']) ? $_GET['op'] : '';
$navtitle = lang('fileperms') . ' - ' . lang('appname');
$step = max(1, intval($_GET['step']));
if ($step == 1) {
} elseif ($step == 2) {
$type = implode('_', (array)$_GET['type']);
} elseif ($step == 3) {
$type = explode('_', $_GET['type']);
try {
$entryarray = array(
'data',
'data/attachment',
'data/attachment/album',
'data/attachment/category',
'data/attachment/common',
'data/attachment/forum',
'data/attachment/group',
'data/attachment/portal',
'data/attachment/profile',
'data/attachment/swfupload',
'data/attachment/temp',
'data/cache',
'data/log',
'data/template',
'data/threadcache',
'data/diy'
);
$result = '';
foreach($entryarray as $entry) {
$fullentry = DZZ_ROOT.'./'.$entry;
if(!is_dir($fullentry) && !file_exists($fullentry)) {
continue;
} else {
if(!dir_writeable($fullentry)) {
$result .= '<li class="list-group-item text-danger d-flex justify-content-between align-items-start"><div class="ms-2 me-auto"><div class="fw-bold">'.(is_dir($fullentry) ? lang('dir') : lang('file')).'./'.$entry.'</div></div><span class="badge bg-danger rounded-pill">无法写入</span></li>';
}
}
}
$result .= '<li class="list-group-item d-flex justify-content-between align-items-start"><div class="ms-2 me-auto"><div class="fw-bold">文件及目录属性全部正确</div></div><span class="badge bg-primary rounded-pill">都能写入</span></li>';
} catch (Exception $e) {
$result .= "<li class=\"list-group-item text-danger\">发生错误:".$e->getMessage()."</li>";
}
}
include template('fileperms');
?>