Skip to content

Instantly share code, notes, and snippets.

@marcobiedermann
Last active December 22, 2017 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcobiedermann/1fa8e6eb25feeaf2025814a2d9650c18 to your computer and use it in GitHub Desktop.
Save marcobiedermann/1fa8e6eb25feeaf2025814a2d9650c18 to your computer and use it in GitHub Desktop.
Typo3 Installation Setup
#!/usr/bin/env bash
TYPO3_VERSION="8.7.9"
# Download and extract Typo3
curl -L -o typo3_src.tgz get.typo3.org/${TYPO3_VERSION}
tar -xzf typo3_src.tgz
rm -f typo3_src.tgz
# Symlink Typo3 source folder
ln -s typo3_src-${TYPO3_VERSION} typo3_src
ln -s typo3_src/index.php index.php
ln -s typo3_src/typo3 typo3
# Rename .htaccess
cp typo3_src/_.htaccess .htaccess
# Create FIRST_INSTALL file
touch FIRST_INSTALL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment