3
(3)

Go To:

Go to app/code/core/Mage/Core/Model/Session/Abstract/Varien.php

Find this line.

// session cookie params
$cookieParams = array(
‘lifetime’ => $cookie->getLifetime(),
‘path’ => $cookie->getPath(),
‘domain’ => $cookie->getConfigDomain(),
‘secure’ => $cookie->isSecure(),
‘httponly’ => $cookie->getHttponly()
);

and comment last 3 line code and remove (,) from getPath() line as below .

// session cookie params
$cookieParams = array(
‘lifetime’ => $cookie->getLifetime(),
‘path’ => $cookie->getPath()
//’domain’ => $cookie->getConfigDomain(),
//’secure’ => $cookie->isSecure(),
//’httponly’ => $cookie->getHttponly()
);

How useful was this post?

Click on a star to rate it!

Average rating 3 / 5. Vote count: 3

No votes so far! Be the first to rate this post.