安装 yii2 reportico 模块并尝试输入管理员密码后,出现此错误:
Projects area does not exist - cannot write project
配置变量“path_to_projects”指向一个存在的项目文件夹。
我该如何解决这个问题?
在更改以下文件之前,我收到了此错误:
vendor\reportico\yii2-reportico\components\reportico.php
5468行
从:
$proj_parent = find_best_location_in_include_path($this->admin_projects_folder);
至:
$proj_parent = $this->admin_projects_folder;
swutil.php 文件中的 find_best_location_in_include_path() 函数中的某些内容不喜欢提供的路径,并且什么也不返回。
为 yii2 设置 repotico 时出现此错误,我通过更改解决了:
$proj_parent = find_best_location_in_include_path( $this->admin_projects_folder);
--which is around line 5737(notepad++)
至:
$proj_parent = $this->admin_projects_folder;
并且错误消失了。