在安装yii2模块并尝试输入管理员密码后,出现此错误:
Projects area does not exist - cannot write project
配置变量“path_to_projects”指向已存在的项目文件夹。怎么解决问题呢?
a11xaf1n1#
我得到这个错误,直到我改变了以下文件:
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()函数中的某些内容不喜欢提供的路径,并且没有返回任何内容。
mbskvtky2#
我在为yii2设置repotico时遇到了这个错误,我通过改变解决了这个问题:
$proj_parent = find_best_location_in_include_path( $this->admin_projects_folder); --which is around line 5737(notepad++)
错误就消失了
2条答案
按热度按时间a11xaf1n1#
我得到这个错误,直到我改变了以下文件:
5468线
发件人:
收件人:
swutil.php文件中的find_best_location_in_include_path()函数中的某些内容不喜欢提供的路径,并且没有返回任何内容。
mbskvtky2#
我在为yii2设置repotico时遇到了这个错误,我通过改变解决了这个问题:
收件人:
错误就消失了