0

我正在开发一个 Yii 应用程序,它使用多个模块,包括用于访问控制的权限模块。它们都驻留在同一个“模块”文件夹中,并在同一个 config/main.php 文件中进行配置。并且应用程序只有一个入口脚本。

但是我注意到 Rights 模块使用不同的应用程序会话,而所有其他模块使用另一个应用程序会话。由于这个原因,用户会话不与权限共享。

有没有人遇到过 yii 模块的问题?请帮忙。谢谢!

我的配置文件:

'rights'=>array(
            'debug' => true,
            'superuserName'         => 'Super Administrator', // Name of the role with super user privileges.                       
            'authenticatedName'     => 'Customer', // Name of the authenticated user role.
            'userIdColumn'          => 'id', // Name of the user id column in the database.
            'userNameColumn'        => 'username', // Name of the user name column in the database.
            'enableBizRule'         => true, // Whether to enable authorization item business rules.
            'enableBizRuleData'     => true, // Whether to enable data for business rules.
            'displayDescription'    => false, // Whether to use item description instead of name.
            'flashSuccessKey'       => 'success', // Key to use for setting success flash messages.
            'flashErrorKey'         => 'error', // Key to use for setting error flash messages.
            //'baseUrl'             =>'/rights', // Base URL for Rights. Change if module is nested.
            //'layout'              => 'rights.views.layouts.main', // Layout to use for displaying Rights.
            //'appLayout'           => 'application.views.layouts.main', // Application layout.
            //'cssFile'             => 'rights.css', // Style sheet file to use for Rights.
            'install'               => false, // Whether to enable installer.
        ),
4

1 回答 1

0

经过两天的尝试,我找到了解决方案。

我注意到它在系统中使用了两个不同的键前缀(stateKeyPrefix)。一个用于权利,另一个用于其他模块。这可以配置为在主配置文件中使用单键前缀。

'user'=>array(
            'class'=>'RWebUser',
            'allowAutoLogin'=>true, // enable cookie-based authentication
            'stateKeyPrefix'=>'f298d9729c7408c3d406db95a9639204', // some random value
    ),

希望这会帮助有同样问题的人。

于 2013-04-24T10:28:06.200 回答