From b24dcf66a7b437bdb4d20808ae2d23d8564b23ac Mon Sep 17 00:00:00 2001 From: tianya Date: Sat, 2 Apr 2022 19:39:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=89=E8=A3=85=E7=A8=8B=E5=BA=8F=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/install/index.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/install/index.php b/src/install/index.php index 696a3dc1..e176551c 100644 --- a/src/install/index.php +++ b/src/install/index.php @@ -11,7 +11,7 @@ error_reporting(E_ALL || ~E_NOTICE); define('INSLOCKFILE', dirname(__FILE__).'/install_lock.txt'); if(file_exists(INSLOCKFILE)) { - exit("程序已运行安装,如果您确定要重新安装,请先删除 public/install/install_lock.txt"); + exit("程序已运行安装,如果您确定要重新安装,请先删除 /install/install_lock.txt"); } $verMsg = 'V6'; $dfDbname = 'DedeBIZ'; @@ -49,6 +49,9 @@ if($step==1) if (!extension_loaded("sockets")) { $arrMsg[] = "Sockets未开启,将无法安装DedeBIZ商业组件"; } + if (!extension_loaded("fileinfo")) { + $arrMsg[] = "Fileinfo未开启,将无法正常进行文件上传"; + } if (!function_exists('mysqli_connect')) { $arrMsg[] = "MySQL不支持,将无法使用本系统"; }