skip to Main Content

At admin, the Catalog is showing a blank page at the backend. Can someone guide me on what is creating trouble.
FYI modules
Magento_Elasticsearch
Magento_Elasticsearch6
Magento_Elasticsearch7
Magento_TwoFactorAuth are disabled when I checked the status.
Also, while creating any custom category error log is showing.

Rashi

3

Answers


  1. Elasticsearch is a requirement for magento 2.4

    https://devdocs.magento.com/guides/v2.4/install-gde/prereq/elasticsearch.html
    

    You’ll need to enable the elasticsearch extensions and also install elasticsearch to get things up and running

    Login or Signup to reply.
  2. Your admin configuration is not displayed because your system has no full permission for var/generation folder. No new directory is generated because of the permission issue.

    Please give full permissions for var generation folder, clear cache.

    Login or Signup to reply.
    • It is a permission related issue, please fire below commands and check.
    chown -R owner:group /your magento root path
    chmod 775 /your magento root path
    php bin/magento cache:clean
    
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search