[求助]关于ckfinder和yii权限管理的问题 [ 新手入门 ]
我在yii中使用了ckediter+ckfinder 的设置,是可以用的,但后来加上权限管理以后,会提示
The system is unable to find the requested action "ckfinder"
.
public function filters()
{
return array(
'accessControl', // perform access control for CRUD operations
);
}
public function accessRules()
{
return array(
array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array('index','view','ckfinder'),
'users'=>array('*'),
),
array('allow', // allow authenticated user to perform 'create' and 'update' actions
'actions'=>array('create','update'),
'users'=>array('@'),
),
array('allow', // allow admin user to perform 'admin' and 'delete' actions
'actions'=>array('admin','delete'),
'users'=>array('admin'),
),
array('deny', // deny all users
'users'=>array('*'),
),
);
}
注销掉这段权限处理就好了,加上就提示 The system is unable to find the requested action "ckfinder"
.求高手帮忙~~
共 2 条回复
-
ybt7755221 回复于 2012-09-28 07:57 举报
查到了不是权限问题,是使用url美化之后不好用了
ybt7755221 山东烟台
注册时间:2011-07-26
最后登录:2018-02-08
在线时长:2小时37分
最后登录:2018-02-08
在线时长:2小时37分
- 粉丝1
- 金钱570
- 威望0
- 积分590