skip to Main Content

I’m working on Magento 2.3.6 EE version with 68 stores and around 10K products.

Sometimes the products on the category reduce without any reason and automatically get appear again in a few minutes.

Has anyone faced an issue like this before? I assume this is something with indexing.

2

Answers


  1. The problem may be caused by the cache on your site. You can run these two commands one by one

    php bin/magento indexer:reindex

    php bin/magento c:f

    Login or Signup to reply.
  2. If you can run ssh command, you can try below command to fix immediately

    php bin/magento indexer:reindex
    
    php bin/magento cache:flush

    For long term, you need go to System->Index Management change index mode to update by schedule if not being set like this

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search