Answers for "magento 2.4.3 installation"

3

magento 2.4.3 setup tutorial

composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition new_project_name

// using php -d memory_limit = -1 => for fix bug limit memory of php

php -d memory_limit=-1  bin/magento setup:install 
--base-url=http://localhost/magento243 
--db-host=localhost 
--db-name=magento243 
--db-user=root 
--admin-firstname=vi 
--admin-lastname=Ly 
[email protected] 
--admin-user=vilh 
--admin-password=admin111 
--language=vi_VN 
--currency=VND 
--timezone=Asia/Bangkok 
--use-rewrites=1
Posted by: Guest on October-14-2021
1

install magento 2.4.2

composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition ./


php bin/magento setup:install 
--admin-firstname=John 
--admin-lastname=Doe 
[email protected] 
--admin-user=admin 
--admin-password=tin@me42. 
--base-url=https://fohow.kara.com.ng 
--base-url-secure=https://fohow.kara.com.ng 
--backend-frontname=admin 
--db-host=mysql 
--db-name=fohowkara 
--db-user=root 
--db-password=Tin@@me43.. 
--use-rewrites=1 
--language=en_US 
--currency=NGN 
--timezone=Africa/Lagos 
--use-secure-admin=1 
--admin-use-security-key=1 
--session-save=files 
--elasticsearch-host=elasticsearch 
--elasticsearch-port=9200
Posted by: Guest on April-28-2021

Code answers related to "magento 2.4.3 installation"

Browse Popular Code Answers by Language