zoukankan      html  css  js  c++  java
  • Magento在IE下登陆不了后台,在Firefox下正常

    目前的解决办法如下:
    方法一,用FF登陆后台,在 System—Configuration-Web-Session Cookie management....timeout 改为:86400
    方法二:在后台将地址设为与服务器所在的时区一.
    方法三:如果仍不能登陆请打开文件 app/code/core/Mage/Core/Model/Session/Abstract/Varien.php
    找到代码:

    session_set_cookie_params(
    $this->getCookie()->getLifetime(),
    $this->getCookie()->getPath(),
    $this->getCookie()->getDomain(),
    $this->getCookie()->isSecure(),

    $this->getCookie()->getHttponly()

    );

    session_set_cookie_params(

    $this->getCookie()->getLifetime(),
    $this->getCookie()->getPath() ,
    //$this->getCookie()->getDomain(),
    //$this->getCookie()->isSecure(),
    //$this->getCookie()->getHttponly() );

  • 相关阅读:
    SPI简述
    stm32和sd卡
    BKP和RTC
    Lwip与底层的接口
    关于Ad-hoc
    stm32 引脚映射 和 ADC
    GDB使用总结
    linux管道和重定向
    学习python的第四天
    学习pyton的第三天
  • 原文地址:https://www.cnblogs.com/focai/p/3813126.html
Copyright © 2011-2022 走看看