一个基础问题... [ 新手入门 ]
yii用gii创建骨架后可能大家会发现不登陆的情况下无法进行任何的操作,我想新建个注册选项可是没次点击注册选项都会先跳到登陆页面,希望能知道怎么修改
共 4 条回复
-
注意一下contorller里面
public function accessRules() { return array( array('allow', // allow all users to perform 'index' and 'view' actions 'actions' => array('index', 'view'), '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('*'), ), ); }
user=>array(/@/ )
里面的代表所有人
@代表所有登陆用户
还可以详细到具体的那个用户,应该是这块的权限你没打开~ -
-
-
lostAngel 上海
注册时间:2011-03-17
最后登录:2018-12-10
在线时长:0小时47分
最后登录:2018-12-10
在线时长:0小时47分
- 粉丝4
- 金钱1125
- 威望0
- 积分1125