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() );

  • 相关阅读:
    新人入住博客,互相交流,互相进步
    DHCP技术
    一些额外技术
    OSPF技术
    一些常用的命令
    RSTP技术及原理
    BFD原理
    VRRP技术
    Super VLAN技术
    哈希表(HashMap)
  • 原文地址:https://www.cnblogs.com/focai/p/3813126.html
Copyright © 2011-2022 走看看