Question

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?

Pas de solution correcte

Autres conseils

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top