cancel
Showing results for 
Search instead for 
Did you mean: 

Magento setup cannot see agree button

Magento setup cannot see agree button

Hello folks,

I have tried to install Magento via composer, and everything has gone right.

but when I try to load the site on my localhost (I'm using Xampp) I can't see the agree button .

What I'm doing wrong? I've read something about an installation via CLI, but I don't know how to do that!

 

Here's an screenshot of what I see.

thanks for an answerImmagine.png

19 REPLIES 19

Re: Magento setup cannot see agree button

Hello @canovanico6d5c 

 

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

Re: Magento setup cannot see agree button

In Magento 2.4, UI based installation has been removed. So, in Magento 2.4.0, the Web Setup Wizard is lifted, and therefore you should use the command line to install Magento along with modules and extensions.

Re: Magento setup cannot see agree button

Thanks much for the information buddy. I have been using cloudways since last 3 years. And this blog is quite helpful for me.

 

Regards,

Viva Tv for IOS  

Re: Magento setup cannot see agree button

Thanks much for the information buddy. I am Very Thankful for this post 

Cinema HD for ios 

Megabox HD for ios

beetv for ios

Re: Magento setup cannot see agree button

your post very helpful all people Thanks a lot for this post

Download Exiled Ros Cheat Update 2020

Re: Magento setup cannot see agree button

Try to run below command in your command-line.
php bin/magento setup:install \
--base-url=http://localhost/magento2 \
--db-host=localhost \
--db-name=magento2 \
--db-user=magento2 \
--db-password=magento2 \
--admin-firstname=admin \
--admin-lastname=admin \
--admin-email=username@example.com \
--admin-user=admin \
--admin-password=admin123 \
--language=en_US \
--currency=USD \
--timezone=America/Chicago \
--use-rewrites=1

In above command change url, username, db host, user, password based on your configuration and requirements.

Njmcdirect login

Re: Magento setup cannot see agree button

Thanks for the update and quick reply. I'll be sure to keep an eye on this thread KrogerFeed

Re: Magento setup cannot see agree button getting error please help

C:\Users\User>composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition Magento2
Creating a "magento/project-community-edition" project at "./Magento2"
Warning from repo.magento.com: You haven't provided your Magento authentication keys. For instructions, visit https://devdocs.magento.com/guides/v2.3/install-gde/prereq/connect-auth.html
Authentication required (repo.magento.com):
Username: pavirajuv@gmail.com
Password:
Warning from repo.magento.com: Your Magento authentication keys are invalid. Please double-check your keys in your Marketplace account. For instructions, visit https://devdocs.magento.com/guides/v2.3/install-gde/prereq/connect-auth.html
Warning from repo.magento.com: Your Magento authentication keys are invalid. Please double-check your keys in your Marketplace account. For instructions, visit https://devdocs.magento.com/guides/v2.3/install-gde/prereq/connect-auth.html
Warning from repo.magento.com: Your Magento authentication keys are invalid. Please double-check your keys in your Marketplace account. For instructions, visit https://devdocs.magento.com/guides/v2.3/install-gde/prereq/connect-auth.html


[Composer\Downloader\TransportException]
Invalid credentials for 'https://repo.magento.com/packages.json', aborting.

Re: Magento setup cannot see agree button

From Magento 2.4, web setup wizard is not supported.

You will have to install Magento 2.4 using Composer commands

https://magentip.com/install-magento-2-4-x-on-ubuntu-with-elasticsearch/

 

Hope this help!