Magento 1.6 cannot log on to the background

Source: Internet
Author: User

Today, a customer said that its magento 1.6 Background could not be logged on. It took a long time to find a solution. This was found on the Internet. I hope my friends can refer to this problem.

Magento 1.4.x stable has a problem on the login procedure on localhost.
You need to change in app/code/core/Mage/Core/Model/Session/Abstract/Varien. php tutorial


// Session cookie params

$ CookieParams = array (
'Lifetime' => $ cookie-> getLifetime (),
'Path' => $ cookie-> getPath (),
'Domain '=> $ cookie-> getConfigDomain (),
'Secure '=> $ cookie-> isSecure (),
'Httpponly '=> $ cookie-> getHttponly ()
);

If (! $ CookieParams ['httpponly ']) {
Unset ($ cookieParams ['httponly ']);
If (! $ CookieParams ['Secure ']) {
Unset ($ cookieParams ['Secure ']);
If (! $ CookieParams ['domain ']) {
Unset ($ cookieParams ['domain ']);
}
}
}

If (isset ($ cookieParams ['domain ']) {
$ CookieParams ['domain '] = $ cookie-> getDomain ();
}
// Session cookie params
$ CookieParams = array (
'Lifetime' => $ cookie-> getLifetime (),
'Path' => $ cookie-> getPath (),
// 'Domain '=> $ cookie-> getConfigDomain (),
// 'Secure '=> $ cookie-> isSecure (),
// 'Httpponly '=> $ cookie-> getHttponly ()
);
/*
If (! $ CookieParams ['httpponly ']) {
Unset ($ cookieParams ['httponly ']);
If (! $ CookieParams ['Secure ']) {
Unset ($ cookieParams ['Secure ']);
If (! $ CookieParams ['domain ']) {
Unset ($ cookieParams ['domain ']);
}
}
}

If (isset ($ cookieParams ['domain ']) {
$ CookieParams ['domain '] = $ cookie-> getDomain ();
}
*/


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.