cakephp在使用safari和Internet Explorer时丢失了会话

时间:2013-03-01 20:08:50

标签: internet-explorer cakephp safari cakephp-2.1

我正在为cakephp项目使用ajax和sessions,但是当我使用safari或IE时,它看起来像会丢失。我按照Sessions in IE and cakephp 1.3 not working properly when saving via AJAX中的解决方案进行了操作 我已将core.php文件设置为以下设置。

  Configure::write('Session.checkAgent', false);
  Configure::write('Security.level', 'low');

我已经将蛋糕版本升级到2.3.0,我仍然遇到同样的问题。请帮忙?谢谢。

这是我的pastebins

的JScript http://pastebin.com/WDCaTkEH

php - http://pastebin.com/YL7qkLf0

2 个答案:

答案 0 :(得分:3)

某处蛋糕似乎有问题...添加session_start();作为webroot / index.php的第一行解决了我的问题。

答案 1 :(得分:0)

我使用的是2.9版本。 我添加了session_start();在webroot / index.php中 - 它解决了我的问题 Cakephp有些不对劲。