Magento Chile Desarrolladores Magento

¿Tienes una pregunta?

Si usted tiene cualquier pregunta, escriba a continuación lo que está buscando!

X.commerce Magento 2


Bien para desarrollar Magento 2, debemos ver y estudiar todo en: https://www.x.com

Mientras Podemos bajar e instalar Magento 2, que lo pueden descargar desde aquí: https://github.com/magento/magento2

Despues de haberlo instalado nos mandará esta advertencia:

Warning: strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Santiago' for 'CLT/-4.0/no DST' instead in app/code/Mage/Core/Model/Config/Primary.php on line 112

La cual está en app/code/Mage/Core/Model/Config/Primary.php on line 112 y la he arreglado así en:

 protected function _loadInstallDate()
    {
        $installDateNode = $this->getNode(self::XML_PATH_INSTALL_DATE);
        if ($installDateNode) {
           // $this->_installDate = strtotime((string)$installDateNode);
            $this->_installDate = time((string)$installDateNode);
        }
    }

Continuará…

Atte
Boris Durán R.

X.commerce Magento 2
Califica este Wiki

Comentarios

Comentarios

Leave a Reply

You must be logged in to post a comment.