我正在开发一个 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.
),