CodeIgniter会话不会粘在localhost(MAMP)上

时间:2011-05-04 14:23:23

标签: php session codeigniter localhost mamp

我的 localhost 似乎不会粘贴<{1}}或CI_Sessions 。我正在运行 MAMP

我做错了什么?

2 个答案:

答案 0 :(得分:5)

我从我们的实时环境中提取了一个网站并遇到了同样的问题。我必须清除config.php中的$ config ['cookie_domain']值

$config['cookie_domain'] = "";

答案 1 :(得分:1)

确保您的MAMP/tmp/php文件夹设置了正确的权限 - 很可能不是。

关闭PHP标记IE后,奇怪的会话行为的另一个原因是空格:

<?php
session_start();
$_SESSION['test'] = 'this is a test';
?>

[line breaks/spaces]