每当我尝试访问Yii::app()
属性时,例如user
或session
该程序已完成,我收到了200 OK
个回复。
如果我尝试访问任何其他属性一切都很好。有谁知道这可能是什么原因?
编辑(如果有帮助)
'components'=>array(
'user'=>array(
// enable cookie-based authentication
'allowAutoLogin'=>true,
),
'file'=>array(
'class'=>'application.extensions.file.CFile',
),
'cache'=>array(
'class'=>'system.caching.CFileCache',
),
);
答案 0 :(得分:0)
在session
数组中添加components
:
'components'=>array(
'user'=>array(
'class' => 'application.components.WebUser',
'allowAutoLogin'=>true,
),
'session' => array(
'class' => 'CHttpSession',
'autoStart' => true,
),
'file'=>array(
'class'=>'application.extensions.file.CFile',
),
'cache'=>array(
'class'=>'system.caching.CFileCache',
),
);