CakePHP Cookie/Session problems

前端 未结 4 1252
栀梦
栀梦 2020-12-05 10:43

I am having issues with my CakePHP application. This seems to be happenining only in IE, and only on certain computers. It is consistent on the computers where it is happeni

4条回答
  •  天命终不由人
    2020-12-05 11:20

    Try putting this in your AppController's beforeFilter and see if it does anything. I have a feeling the cookie settings aren't configured like you need. See here for more info.

    function beforeFilter() {
        $this->Cookie->domain = '.example.com';
        $this->Cookie->secure = false;
    }
    

提交回复
热议问题