Вопрос

Is there a CLI command (either bin/magento, n98, or custom) in Magento 2 that can flush the images cache to perform the same function as clicking the "Flush Images Cache" button in the web admin panel?

Нет правильного решения

Другие советы

Not aware of one.

If in doubt write your own.

https://github.com/magento/magento2/blob/2eb6f847531d2308a010c13464a83399416a9e89/app/code/Magento/Backend/Controller/Adminhtml/Cache/CleanImages.php#L30

 $this->_objectManager->create(\Magento\Catalog\Model\Product\Image::class)->clearCache();

Update

Created one

https://github.com/DominicWatts/ImageCache

Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top