- Create root directory for project:
mkdir magento2.test
- Cd to created directory:
cd magento2.test
- Download files with composer:
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition .
- Install with wizard in browser or with command bellow:
php bin/magento setup:install --base-url=http://magento2.test/ --db-host=localhost --db-name=magento2_test --db-user=root --db-password= --admin-firstname=Admin --admin-lastname=Admin [email protected] --admin-user=admin --admin-password=q1234567 --backend-frontname=admin --language=en_US --currency=USD --timezone=Europe/Kiev --use-rewrites=1
- Install simple data:
php bin/magento sampledata:deploy
php bin/magento setup:upgrade
- Deploy static content:
php bin/magento setup:static-content:deploy -f
- Tools:
php bin\magento indexer:reindex
i have this problem can you help thank you
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires magento/product-community-edition 2.4.4 -> satisfiable by magento/product-community-edition[2.4.4].
- magento/product-community-edition 2.4.4 requires ext-soap * -> it is missing from your system. Install or enable PHP's soap extension.
To enable extensions, verify that they are enabled in your .ini files:
- C:\laragon\bin\php\php-7.4.19-Win32-vc15-x64\php.ini
You can also run
php --ini
inside terminal to see which files are used by PHP in CLI mode.