Skip to content

Instantly share code, notes, and snippets.

@Macorreag
Created June 15, 2019 22:39
Show Gist options
  • Save Macorreag/1551fd125715f2ea0750908d2e3f08f9 to your computer and use it in GitHub Desktop.
Save Macorreag/1551fd125715f2ea0750908d2e3f08f9 to your computer and use it in GitHub Desktop.
Comandos para instalar typo3 en Ubuntu 16.04
unzip typo3_src-8.7.26.zip -d /var/www/html/
cd /var/www/html/
sudo mv typo3_src-8.7.26/ test
ls -l test
chown www-data:www-data -R test
chmod -R 775 test
locate php.ini
gedit /etc/php/7.0/apache2/php.ini
/*
max_execution_time = 240
post_max_size = 10M
upload_max_filesize = 10M
max_input_vars = 150
*/
mysql -u root -p
CREATE DATABASE testdb;
GRANT ALL PRIVILEGES on testdb.* to 'testuser'@'localhost' identified by 'djblend';
FLUSH PRIVILEGES;
exit
service apache2 restart ; service mysql restart
cd typo3/
touch FIRST_INSTALL typo3_src
mv _.htaccess .htaccess
chown www-data:www-data -R test
chmod -R 775 test
service apache2 restart ; service mysql restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment