Cakephp Auth只能远程注销

时间:2013-11-19 22:49:52

标签: php cakephp

在localhost上我完全没有问题。我可以登录访问所有网站并完成网站的过程而没有任何问题。

现在,当我把它远程放入时,我会在更改页面时立即退出(即使我被重定向到我的登录视图,无论我按哪个链接)

我的AppController像这样松散:

    <?php
App::uses('Controller', 'Controller');

class AppController extends Controller {
    public $components = array(
        'Acl',
        'Auth' => array(
            'authorize' => array(
                'Actions' => array('actionPath' => 'controllers')
            )
        ),
        'Session'
    );
    public $uses = array
    (
        'Category'
    );

    public $helpers = array('Html', 'Form', 'Session');

    public function beforeFilter() {
        $this->Auth->allow('*');
        //Configure AuthComponent
        $this->Auth->loginAction = array('controller' => 'users', 'action' => 'login');
        $this->Auth->logoutRedirect = array('controller' => 'users', 'action' => 'login');
        $this->Auth->loginRedirect = array('controller' => 'home', 'action' => 'index');

        $this->set('menu_categories', $this->Category->find('all'));

    }
}

如果您需要更多信息,请告诉我(如果您想尝试此问题,也请转到我的页面(my domain  以测试密码test123登录

0 个答案:

没有答案