Answers for "install magento on ubuntu"

3

install magento 2

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

php bin/magento setup:install --base-url="http://magento2.local/" --db-host="localhost" --db-name="magento" --db-user="magento" --db-password="mage3nt0" --admin-firstname="admin" --admin-lastname="admin" --admin-email="[email protected]" --admin-user="admin" --admin-password="admin123" --language="en_US" --currency="USD" --timezone="America/Chicago"  --use-rewrites="1"  --backend-frontname="admin"
Posted by: Guest on October-20-2020

Browse Popular Code Answers by Language