Explorar el Código

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

xurongyao hace 7 años
padre
commit
ee4cdd1f06
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      crmeb/install/index.php

+ 1 - 0
crmeb/install/index.php

@@ -235,6 +235,7 @@ switch ($step) {
                 $sql = trim($sqlFormat[$i]);
                 if (strstr($sql, 'CREATE TABLE')) {
                     preg_match('/CREATE TABLE IF NOT EXISTS `eb_([^ ]*)`/is', $sql, $matches);
+                    print_r($matches);exit;
                     mysqli_query($conn,"DROP TABLE IF EXISTS `$matches[1]");
                     $sql = str_replace('`eb_','`'.$dbPrefix,$sql);//替换表前缀
                     $ret = mysqli_query($conn,$sql);