Pasos para actualizar a Magento2 2.1.8 (community power) utilizando composer.
composer require magento/product-community-edition 2.1.8 --no-update composer update rm -rf var/di/* var/generation/* var/cache/* var/log/* var/page_cache/* php bin/magento cache:clean php bin/magento cache:flush php bin/magento setup:upgrade php bin/magento setup:static-content:deploy php bin/magento setup:di:compile php bin/magento indexer:reindex
Restablecer permisos y propietario carpetas y archivos en magento2
find . -type f -exec chmod 644 {} \; find . -type d -exec chmod 755 {} \; find ./var -type d -exec chmod 777 {} \; find ./pub/media -type d -exec chmod 777 {} \; find ./pub/static -type d -exec chmod 777 {} \; chmod 777 ./app/etc chmod 644 ./app/etc/*.xml chown -R zonamovil:psacln httpdocs/ chown zonamovil:psaserv httpdocs