Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/10/2009, 05:11
chefnelone
 
Fecha de Ingreso: diciembre-2005
Ubicación: Barcelona
Mensajes: 1.428
Antigüedad: 18 años, 4 meses
Puntos: 15
Respuesta: Entrar a Administracion en Magento

Cita:
Iniciado por AnisDelMono Ver Mensaje
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