Created
May 18, 2016 08:07
-
-
Save wsagen/a36f1d02f7df9b17369849997993d1aa to your computer and use it in GitHub Desktop.
Install Latest release Magento via Composer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition <installation directory name> | |
create DB | |
edit index.php and setup/index.php to add - ini_set('xdebug.max_nesting_level', 200); | |
bin/magento setup:install --base-url=http://127.0.0.1/mage2/m206/ \ | |
--db-host=localhost --db-name=m206 --db-user=m206 --db-password=computer100 \ | |
--admin-firstname=Magento --admin-lastname=User [email protected] \ | |
--admin-user=admin --admin-password=admin123 --backend-frontname=admin --language=en_US \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment