Image Catalog is not showing

Comments

1 comment

  • Avatar
    orolfes

    Hi,

    Apply this patch from: https://github.com/magento/magento2/issues/8770

    diff --git a/vendor/magento/module-media-storage/Console/Command/ImagesResizeCommand.php b/vendor/magento/module-media-storage/Console/Command/ImagesResizeCommand.php
    index ba12d60..3fc2f72 100644
    --- a/vendor/magento/module-media-storage/Console/Command/ImagesResizeCommand.php
    +++ b/vendor/magento/module-media-storage/Console/Command/ImagesResizeCommand.php
    @@ -77,7 +77,9 @@ class ImagesResizeCommand extends \Symfony\Component\Console\Command\Command
    {
    try {
    $errors = [];
    - $this->appState->setAreaCode(Area::AREA_GLOBAL);
    + if (!$this->appState->getAreaCode()) {
    + $this->appState->setAreaCode(Area::AREA_GLOBAL);
    + }
    $generator = $this->resize->resizeFromThemes();

    /** @var ProgressBar $progress */

     

    I hope it helps.

    0
    Comment actions Permalink

Please sign in to leave a comment.