Просмотр исходного кода

移动安装目录,支持根目录index.php访问,也可以像tp5一样只对外开放crmeb一个目录

xurongyao 7 лет назад
Родитель
Сommit
82eafc98ff
1 измененных файлов с 7 добавлено и 6 удалено
  1. 7 6
      crmeb/install/index.php

+ 7 - 6
crmeb/install/index.php

@@ -336,7 +336,13 @@ switch ($step) {
 }
 
 function testwrite($d) {
-    if(is_dir($d)){
+    if(is_file($d)){
+        if(is_writeable($d)){
+            return true;
+        }
+        return false;
+
+    }else{
         $tfile = "_test.txt";
         $fp = @fopen($d . "/" . $tfile, "w");
         if (!$fp) {
@@ -348,11 +354,6 @@ function testwrite($d) {
             return true;
         }
         return false;
-    }else{
-        if(is_writeable($d)){
-            return true;
-        }
-        return false;
     }
 
 }