我最近升级了我的 XAMPP 版本(在 OS X 上),我在本地运行的所有 magento 站点都收到此错误:
注意:未定义的索引:httponly 在第 94 行的 /Applications/XAMPP/xamppfiles/htdocs/mysite/html/magento/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php
有没有人遇到过这个问题或知道是什么原因造成的?到目前为止,我在网上几乎没有找到与它相关的内容。
Comment the following section of the code in
**htdocs/mysite/html/magento/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php**
/*if (!$cookieParams['httponly']) {
unset($cookieParams['httponly']);
if (!$cookieParams['secure']) {
unset($cookieParams['secure']);
if (!$cookieParams['domain']) {
unset($cookieParams['domain']);
}
}
}
if (isset($cookieParams['domain'])) {
$cookieParams['domain'] = $cookie->getDomain();
}*/