Skip to content

Commit

Permalink
[TASK] Use version 13 for legacy installation of TYPO3 (#316)
Browse files Browse the repository at this point in the history
Releases: main
  • Loading branch information
brotkrueml authored Feb 1, 2024
1 parent ea5c7cb commit 8152700
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions Documentation/Installation/LegacyInstallation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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 :ref:`install`
is now considered out of date, users are strongly encouraged to use the Composer-based :ref:`install`

Installing on a Unix Server
===========================
Expand All @@ -20,18 +20,19 @@ Installing on a Unix Server
.. code-block:: bash
:caption: /var/www/site/$
wget --content-disposition https://get.typo3.org/12
wget --content-disposition https://get.typo3.org/13
Ensure that the package is one level above the web server's document root.

#. Unpack the :file:`typo3_src-12.4.x.tar.gz`:
#. Unpack the :file:`typo3_src-13.x.y.tar.gz`:

.. code-block:: bash
:caption: /var/www/site/$
tar xzf typo3_src-12.4.x.tar.gz
tar xzf typo3_src-13.x.y.tar.gz
Note that the `x` in the extracted folder will be replaced with the latest bugfix version of TYPO3.
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.


#. Create the following symlinks in the document root:
Expand All @@ -41,7 +42,7 @@ Installing on a Unix Server
:caption: /var/www/site/$
cd public
ln -s ../typo3_src-12.4.x typo3_src
ln -s ../typo3_src-13.x.y typo3_src
ln -s typo3_src/index.php index.php
ln -s typo3_src/typo3 typo3
Expand All @@ -53,9 +54,9 @@ Installing on a Unix Server

.. code-block:: none
├── typo3_src-12.4.x/
├── typo3_src-13.x.y/
├── public/
├── ── typo3_src -> ../typo3_src-12.4.x/
├── ── typo3_src -> ../typo3_src-13.x.y/
├── ── typo3 -> typo3_src/typo3/
├── ── index.php -> typo3_src/index.php
Expand All @@ -74,17 +75,17 @@ Installing on a Windows Server
:caption: /var/www/site/$
cd public
mklink /d typo3_src ..\typo3_src-12.4.x
mklink /d typo3_src ..\typo3_src-13.x.y
mklink /d typo3 typo3_src\typo3
mklink index.php typo3_src\index.php
#. This will then create the following structure:

.. code-block:: none
├── typo3_src-12.4.x/
├── typo3_src-13.x.y/
├── public/
├── ── typo3_src -> ../typo3_src-12.4.x/
├── ── typo3_src -> ../typo3_src-13.x.y/
├── ── typo3 -> typo3_src/typo3/
├── ── index.php -> typo3_src/index.php
Expand Down

0 comments on commit 8152700

Please sign in to comment.