Frage

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?

Keine korrekte Lösung

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top