I have been trying to install Magento from a day or 2 in windows 10 using xampp.I downloaded the Magento zip file from the website and unzipped it in htdocs folder. I also created a database name magento. Whenever I try to install magento by going to localhost/magento It doesn’t show Agree and setup magento.
Magento setup image
2
Answers
I think this could be an issue of system cookies, so you should try in Incognito mode, maybe your problem is solved.
after Magento 2.4 release, there is no UI based installation, so you have to install Magento with CLI
https://devdocs.magento.com/guides/v2.4/install-gde/install/cli/install-cli-install.html
check this might help
or
follow these steps :
1.Download and Install Xampp
2.Download and Install Elasticsearch run
3.Download Magento 2
5.Elasticsearch Just for Check http://localhost:9200/
Edit Gd2.php file [vendormagentoframeworkImageAdapter]: Add " && !file_exists($filename)" part; Around 90 line
Edit di.xml file [appetc]: find and change word "Symlink" to "copy";
Edit Validator.php file [vendormagentoframeworkViewElementTemplateFile]: $realPath = str_replace(”, ‘/’, $this->fileDriver->getRealPath($path));
Create Database
php bin/magento setup:install –base-url="http://localhost/magento" –db-host="localhost" –db-name="dbmagento" –db-user="root" –db-password="" –admin-firstname="admin" –admin-lastname="admin" –admin-email="[email protected]" –admin-user="admin" –admin-password="admin123" –use-rewrites="1" –backend-frontname="admin"
( Do not turn off elasticsearch / Install take too much time So Please Wait )
11.php bin/magento indexer:reindex
12.php bin/magento setup:upgrade
13.php bin/magento setup:static-content:deploy -f
14.php bin/magento cache:flush
15.Fix Two Factor Auth login admin
php bin/magento module:disable Magento_TwoFactorAuth