![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
16/10/2009, 05:11
|
| | Fecha de Ingreso: diciembre-2005 Ubicación: Barcelona
Mensajes: 1.428
Antigüedad: 19 años, 1 mes Puntos: 15 | |
Respuesta: Entrar a Administracion en Magento Cita:
Iniciado por AnisDelMono Es un problema con las cookies al trabajar en localhost.
Abre app/code/core/Mage/Core/Model/Session/Abstract/Varien.php y busca: Código PHP: // set session cookie params
session_set_cookie_params(
$this->getCookie()->getLifetime(),
$this->getCookie()->getPath(),
$this->getCookie()->getDomain(),
$this->getCookie()->isSecure(),
$this->getCookie()->getHttponly()
);
y lo reemplazas por: Código PHP: // set session cookie params
session_set_cookie_params(
$this->getCookie()->getLifetime(),
$this->getCookie()->getPath()
//$this->getCookie()->getDomain(),
//$this->getCookie()->isSecure(),
//$this->getCookie()->getHttponly()
);
Por supuesto, esta solucion es solo para trabajar en el local
saludos
ha funcionado perfecto
gracias
saludos |