iradiel Posted May 13, 2015 Share Posted May 13, 2015 Buenas tardes, Estoy intentando activar HTTPS en mi tienda online, ya he obtenido el certificado SSL y cuando intento habilitarlo desde las preferencias de mi prestashop me sale el siguiente error: Error: "install" directory is missing He buscado por internet y no encuentro ninguna solución. ¿Por qué puede ser este error? PD: utilizo la versión 1.6.0.14 de prestashop. Saludos! Link to comment Share on other sites More sharing options...
tuk66 Posted May 13, 2015 Share Posted May 13, 2015 Ese mensaje es causada por este código en /config/config.inc.php: That message is caused by this code in /config/config.inc.php: /* No settings file? goto installer... */ if (!file_exists(_PS_ROOT_DIR_.'/config/settings.inc.php')) { if (file_exists(dirname(__FILE__).'/../install')) header('Location: install/'); elseif (file_exists(dirname(__FILE__).'/../install-dev')) header('Location: install-dev/'); else die('Error: "install" directory is missing'); exit; } ¿Tiene archivo /config/settings.inc.php? Do you have /config/settings.inc.php file? Link to comment Share on other sites More sharing options...
iradiel Posted May 13, 2015 Author Share Posted May 13, 2015 Ese mensaje es causada por este código en /config/config.inc.php: That message is caused by this code in /config/config.inc.php: /* No settings file? goto installer... */ if (!file_exists(_PS_ROOT_DIR_.'/config/settings.inc.php')) { if (file_exists(dirname(__FILE__).'/../install')) header('Location: install/'); elseif (file_exists(dirname(__FILE__).'/../install-dev')) header('Location: install-dev/'); else die('Error: "install" directory is missing'); exit; } ¿Tiene archivo /config/settings.inc.php? Do you have /config/settings.inc.php file? Si, tengo un archivo settings.inc.php. ¿Que debo hacer? Link to comment Share on other sites More sharing options...
tuk66 Posted May 13, 2015 Share Posted May 13, 2015 Pregunte a los expertos http://www.presta-addons.com/en/services/23-prestashop-fix.html Link to comment Share on other sites More sharing options...
Recommended Posts