douhuan4699 2011-01-18 12:55 采纳率: 100%
浏览 20
已采纳

CakePHP Cookies变得混乱 - Suhosin相关

For some reason I am unable to read any cookies from my CakePHP app on any page after they have been set, the only thing that is returned is garbled text.

My code is as simple as this:

$this->Cookie->write('Region', 'test');
$reg = $this->Cookie->read('Region');
pr($reg);

I uncomment the $this->Cookie->write() line and all I get back is a bunch of random control characters. I also recently upgraded to CakePHP 1.3 but AFAIK this should not effect cookie like this... This was working fine until I changed server, this must be the root of my problem.

Update After probing around further I have discovered this is a known issue with the Suhosin security patch for PHP effecting the rand() and srand() methods, I had configured Suhosin to allow the rand() functions but still it is happening, is there a more effective work around out there?

  • 写回答

2条回答 默认 最新

  • dongou4052 2011-01-18 13:01
    关注

    Try this code which will disable cookie encryption:

    $this->Cookie->write('Region', 'test', false);
    $reg = $this->Cookie->read('Region');
    pr($reg);
    

    The write method has the following params:

    write(mixed $key, mixed $value, boolean $encrypt, mixed $expires)

    By default all values in the cookie are encrypted by CakePHP. However for security reasons you may wish to look into working with the encryption.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?