Steps to install magento 2 using comopser
Steps to install Magento 2 using composer
Step 1: Login to the server through SSH
step 2: Download composer and install it from here https://getcomposer.org/download/
step 3: Use the Command for the Installation:
php -d allow_url_fopen=1 composer.phar create-project --repository=https://repo.magento.com/ magento/project-community-edition=2.2.3
Keep in mind this is going to install community edition 2.2.3 for more details visit
https://devdocs.magento.com/guides/v2.3/install-gde/composer.html
In php.ini allow_url_fopen=1 should be enabled either through Cpanel or do it by SSH login to the server otherwise you will be getting an error
After installation bin/magento setup:install \
Step 1: Login to the server through SSH
step 2: Download composer and install it from here https://getcomposer.org/download/
step 3: Use the Command for the Installation:
php -d allow_url_fopen=1 composer.phar create-project --repository=https://repo.magento.com/ magento/project-community-edition=2.2.3
Keep in mind this is going to install community edition 2.2.3 for more details visit
https://devdocs.magento.com/guides/v2.3/install-gde/composer.html
In php.ini allow_url_fopen=1 should be enabled either through Cpanel or do it by SSH login to the server otherwise you will be getting an error
After installation bin/magento setup:install \
Comments
Post a Comment