我正在使用survey module for Yii2 application,但无法访问此扩展程序的创建页面。
此扩展程序的页面中有:
现在在您的后端转到/ survey并创建调查
我也将我的项目中的backend
更改为fcadmin
,然后使用localhost/myproject/fcadmin/survey
访问调查页面,但是发现未找到(#404) 错误。
如何访问此扩展程序页面? 我真的需要帮助。
我在main config
中的fcadmin
:
'modules' => [
'survey' => [
'class' => '\onmotion\survey\Module',
'params' => [
'uploadsUrl' => '@frontend/files/survey/',
// 'uploadsUrl' => '/uploads/survey/',
'uploadsPath' => '@frontend/files/survey/',
],
'as access' => [
'class' => AccessControl::class,
'except' => ['default/done'],
'only' => ['default*'],
'rules' => [
[
'allow' => true,
'roles' => ['survey'],
],
],
],
],
]
答案 0 :(得分:0)
正确的地址是localhost/yourproject/fcadmin/survey