Legacy Installation

This guide details how TYPO3 can be installed without using Composer. This method of installation is now considered out of date, users are strongly encouraged to use the Composer-based Installing TYPO3

Installing on a Unix Server

  1. Download TYPO3's source package from https://get.typo3.org/:

    /var/www/site/$
    wget --content-disposition https://get.typo3.org/13
    Copied!

    Ensure that the package is one level above the web server's document root.

  2. Unpack the typo3_src-13.x.y.tar.gz:

    /var/www/site/$
    tar xzf typo3_src-13.x.y.tar.gz
    Copied!

    Note that the x in the extracted folder will be replaced with the latest minor number and the y by the bugfix number of TYPO3.

  3. Create the following symlinks in the document root:

    /var/www/site/$
    cd public
    ln -s ../typo3_src-13.x.y typo3_src
    ln -s typo3_src/index.php index.php
    ln -s typo3_src/typo3 typo3
    Copied!
  4. This will then create the following structure:

    ├── typo3_src-13.x.y/
    ├── public/
    ├── ── typo3_src -> ../typo3_src-13.x.y/
    ├── ── typo3 -> typo3_src/typo3/
    ├── ── index.php -> typo3_src/index.php
    Copied!

Installing on a Windows Server

  1. Download TYPO3's source package from https://get.typo3.org/ and extract the .zip file on the web server.

    Ensure that the package is one level above the web server's document root.

  2. Use the shell to create the following symlinks in the document root:

    /var/www/site/$
    cd public
    mklink /d typo3_src ..\typo3_src-13.x.y
    mklink /d typo3 typo3_src\typo3
    mklink index.php typo3_src\index.php
    Copied!
  3. This will then create the following structure:

    ├── typo3_src-13.x.y/
    ├── public/
    ├── ── typo3_src -> ../typo3_src-13.x.y/
    ├── ── typo3 -> typo3_src/typo3/
    ├── ── index.php -> typo3_src/index.php
    Copied!

Completing The Installation

After the source package has been extracted and the symlinks created, visit the Access TYPO3 via web browser to complete the installation.