本文介绍了ZFCUser和bjyauthorize - 如何离开了着陆页授权的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要建一个封闭的网站里面有一个登陆页面给大家。

我使用和。
一切正常,但现在我不知道我怎么能排除我的应用程序的应用程序\\控制器\\指数::首页操作。

在我的 module.bjyauthorize.global.php 我告诉我的行动,不需要身份验证:

'BjyAuthorize \\后卫\\控制器'=>阵列(
    阵列(
        控制器=> 应用程序\\控制器\\指数,
        '行动'=> '指数',
        角色=>阵列()
    )
    // ...

但我仍得到转发到 ZFCUser 登录页面。

任何想法,我缺少的是什么?

编辑:

我的作用,但至今没有运气试了一下

'default_role'=> '客人',
 BjyAuthorize \\提供商\\地位\\配置'=>阵列(
     '客人'=>阵列(),
     '用户'=>阵列(
         '孩子'=>阵列(
             '管理员'= GT;阵列(),
         )
     )
 )


解决方案

注意:中的

您必须允许用户访问索引页:

'BjyAuthorize \\后卫\\控制器'=>阵列(
    阵列(
        控制器=> 应用程序\\控制器\\指数,
        '行动'=> '指数',
        角色=>阵列('客人','用户')
    )
    // ...

您在你的问题中定义什么是全部拒绝吧。

由于BjyAuthorize的控制器Guard配置充当,有没有办法允许访问同时,现在的所有角色。

I'm building a closed website which has a landing page for everyone.

I'm using ZfcUser and BjyAuthorize.Everything works now but I wonder how I can exclude my Application's Application\Controller\Index::index action.

In my module.bjyauthorize.global.php I told my action to require no authentication:

'BjyAuthorize\Guard\Controller' => array(
    array(
        'controller' => 'Application\Controller\Index',
        'action' => 'index',
        'roles' => array()
    ),
    // ...

But still I get forwarded to the ZFCUser login page.

Any idea what I'm missing?

Edit:

I tried it with the guest role but no luck so far:

 'default_role'          => 'guest',
 'BjyAuthorize\Provider\Role\Config' => array(
     'guest' => array(),
     'user'  => array(
         'children' => array(
             'admin' => array(),
         ),
     ),
 ),
解决方案

NOTE: valid in BjyAuthorize 1.2.*

You have to allow the guest user to access the index page:

'BjyAuthorize\Guard\Controller' => array(
    array(
        'controller' => 'Application\Controller\Index',
        'action' => 'index',
        'roles' => array('guest', 'user')
    ),
    // ...

What you defined in your question is a deny-all instead.

Since BjyAuthorize's controller guard configuration acts as a whitelist, there is no way to allow access to all roles at once right now.

这篇关于ZFCUser和bjyauthorize - 如何离开了着陆页授权的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 18:21