Magento 2.4 Installation Issue on Windows Machine

installationmagento2magento2.3magento2.3.1magento2.4

I have downloaded magento 2.4 and trying to install on windows machine but while hitting "localhost/magento-24/" it is not showing install button. I don't know the reason can some help me in this. Please find the screenshot below. enter image description here

Best Answer

Install https://www.elastic.co/downloads/past-releases/elasticsearch-7-6-0. Go to bin directory from command prompt and run :-

  1. elasticsearch-service.bat install

  2. elasticsearch-service.bat start

Then run the command:-

php bin/magento setup:install --base-url= http://localhost/yourrootfoldername/ --db-host=localhost --db-name= magento2 --db-user= root --db-password= password --admin-firstname=test --admin-lastname=testadmin --admin-email=test@gmail.com --admin-user=admin --admin-password=admin123 --language=en_US --currency=USD --timezone=America/Chicago --cleanup-database --sales-order-increment-prefix="ORD$" --session-save=db --use-rewrites=1

Should work like a charm.

Related Topic