skip to Main Content

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


  1. I think this could be an issue of system cookies, so you should try in Incognito mode, maybe your problem is solved.

    Login or Signup to reply.
  2. 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

    1. Move Magento 2 Folder and Elasticserach folder to xampp’s htdocs folder.

    5.Elasticsearch Just for Check http://localhost:9200/

    1. Edit Gd2.php file [vendormagentoframeworkImageAdapter]: Add " && !file_exists($filename)" part; Around 90 line

    2. Edit di.xml file [appetc]: find and change word "Symlink" to "copy";

    3. Edit Validator.php file [vendormagentoframeworkViewElementTemplateFile]: $realPath = str_replace(”, ‘/’, $this->fileDriver->getRealPath($path));

    4. Create Database

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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search