[2] ErrorException in App.php line 300

is_file(): open_basedir restriction in effect. File(/mnt/7kzhanqun/data/runtime/2026_02_06/new.ceshi9.cn/init.php) is not within the allowed path(s): (/mnt/7kzhanqun/:/tmp/)

  1. {
  2. // 定位模块目录
  3. $module = $module ? $module . DIRECTORY_SEPARATOR : '';
  4. $path = $this->appPath . $module;
  5. if (empty($module) || empty(static::$modulesInited[$module])) {
  6. // 加载初始化文件
  7. if (is_file($path . 'init.php')) {
  8. include $path . 'init.php';
  9. } elseif (is_file($this->runtimePath . $module . 'init.php')) {
  10. include $this->runtimePath . $module . 'init.php';
  11. } else {
  12. // 加载行为扩展文件
  13. if (is_file($path . 'tags.php')) {
  14. $tags = include $path . 'tags.php';