CakephpでIEだとSessionが引き継がれない件
Jul 18, 2013AD:
SSL下にあるアプリケーションで、Sessionを情報を引き継ぐフォームを作成したのですが、IEだけ画面遷移するとSessionが引き継がれないことに気づきました。
core.phpに下記の内容を記述して、対応して回避できました。
1 2 3 4 5 6 |
Configure::write('Session', array( 'defaults' => 'php', 'ini' => array('session.cookie_secure' => false, 'session.referer_check' => false), 'checkAgent' => false, )); Configure::write('Security.level', 'low'); |
AD:
No Comments, Comment or Ping
Reply to “CakephpでIEだとSessionが引き継がれない件”
Warning: Undefined variable $user_ID in /home/sazaeau/mizoshiri.com/public_html/blog.mizoshiri.com/wp-content/themes/grid_focus_public_mizo/comments.php on line 66
You must be logged in to post a comment.