I have deleted the magento directory then I reinstalled it and the result is like the picture above, is there a solution? I am using nginx, not apache..
Solved! Go to Solution.
Hi @fajriarma
Please follow the below process to install Magento 2.4 :
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition Magento2
php bin/magento setup:install --base-url=http://127.0.0.1/magento2/ \ --db-host=localhost --db-name=magento --db-user=magento --db-password=magento \ --admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \ --admin-user=admin --admin-password=admin123 --language=en_US \ --currency=USD --timezone=America/Chicago --use-rewrites=1 \ --search-engine=elasticsearch7 --elasticsearch-host=es-host.example.com \ --elasticsearch-port=9200PS : Change the data accordingly.
Hope it helps to resolve your issue.
Hi @fajriarma
Please follow the below process to install Magento 2.4 :
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition Magento2
php bin/magento setup:install --base-url=http://127.0.0.1/magento2/ \ --db-host=localhost --db-name=magento --db-user=magento --db-password=magento \ --admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \ --admin-user=admin --admin-password=admin123 --language=en_US \ --currency=USD --timezone=America/Chicago --use-rewrites=1 \ --search-engine=elasticsearch7 --elasticsearch-host=es-host.example.com \ --elasticsearch-port=9200PS : Change the data accordingly.
Hope it helps to resolve your issue.