Created
May 13, 2017 16:50
-
-
Save a-r-m-i-n/d004fde34ac56d156eb881a13d3cac23 to your computer and use it in GitHub Desktop.
How to install TYPO3 from commandline
This file contains 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
cd /var/www/html | |
rm -Rf * | |
composer require typo3/cms:"^7.6" helhum/typo3-console:"^4.5" gridelementsteam/gridelements:"^7.1" | |
vendor/bin/typo3cms install:setup --force --database-user-name "root" --database-user-password "" --database-host-name "localhost" --database-name "typo3_76" --database-port "3306" --database-socket "" --admin-user-name "admin" --admin-password "password" --site-name "TYPO3 Project" --site-setup-type "site" --use-existing-database 0 | |
vendor/bin/typo3cms cache:flush | |
php typo3/cli_dispatch.phpsh extbase extension:install gridelements |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment