在CakePHP中我有这样的配置:
//Config/routes.php
Router::connect('/viewServices', array('plugin' => 'usermgmt', 'controller' => 'services', 'action' => 'viewServices'));
//View/Users/dashboard.ctp
<?php echo $this->Html->link(__("Services",true),"/viewServices")?>
//View/Services/view_services.ctp
//I put here the view..
//Controller/ServicesController.php
public function viewServices(){
....
}
现在我无法理解为什么它不起作用的原因!
我看不到“view_services.ctp”。服务器将我重定向到“access_denied.ctp”页面,但是在“view_services.ctp”中我没有对身份验证进行任何控制,所以也许我正在做其他错误。有人可以帮助我吗?
谢谢!
答案 0 :(得分:0)
我解决了改变它的问题:
//Controller/Component/UserAuthComponent.php
.....
//CHANGE IT:
//if(!$userGroupModel->isUserGroupAccess($controller, $action, $this->getGroupId()))
//WITH IT:
if(!$userGroupModel->isUserGroupAccess($controller, $action, 1))
通过这种方式,它可以工作!
感谢大家!