cancel
Showing results for 
Search instead for 
Did you mean: 

Blank when install

SOLVED

Blank when install

Screenshot from 2020-08-23 02-59-51.png

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..

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Blank when install

Hi @fajriarma 

 

Please follow the below process to install Magento 2.4 :

  1. run below command to download Magento on local version Magento Community 2.4:
     composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition Magento2
  2. As the Magento 2.4 has removed Frontend installation, so the only way to install Magento is by command line :
    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=9200
    PS : Change the data accordingly.
  3. Hit the project URL and enjoy Smiley Happy

Hope it helps to resolve your issue.

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy

View solution in original post

1 REPLY 1

Re: Blank when install

Hi @fajriarma 

 

Please follow the below process to install Magento 2.4 :

  1. run below command to download Magento on local version Magento Community 2.4:
     composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition Magento2
  2. As the Magento 2.4 has removed Frontend installation, so the only way to install Magento is by command line :
    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=9200
    PS : Change the data accordingly.
  3. Hit the project URL and enjoy Smiley Happy

Hope it helps to resolve your issue.

Problem Solved ? Click on 'Kudos' & Accept as Solution ! Smiley Happy