you can change your accessRules to solve your problem in siteController or in userController like this
return array(
array('allow', // allow all users to perform 'index' and 'view' and create action
'actions'=>array('index','view','create'),
'users'=>array('*'),
),