|
| 1 | +:orphan: |
1 | 2 | .. include:: /Includes.rst.txt |
2 | 3 |
|
3 | 4 | .. index:: legacy installation |
4 | 5 |
|
5 | 6 | .. _legacyinstallation: |
| 7 | +.. _release_integrity: |
6 | 8 |
|
7 | 9 | =================== |
8 | 10 | Legacy Installation |
9 | 11 | =================== |
10 | 12 |
|
11 | 13 | .. warning:: |
12 | | - This guide details how TYPO3 can be installed without using Composer. This method of installation |
| 14 | + TYPO3 can be installed without using Composer. This method of installation |
13 | 15 | is now considered **out of date**, users are strongly encouraged to use the |
14 | 16 | :ref:`Composer-based installation instructions <install>`. |
15 | 17 |
|
16 | | -Installing on a Unix Server |
17 | | -=========================== |
18 | | - |
19 | | -#. Download TYPO3's source package from `https://get.typo3.org/ |
20 | | - <https://get.typo3.org/>`_: |
21 | | - |
22 | | - .. code-block:: bash |
23 | | - :caption: /var/www/site/$ |
24 | | -
|
25 | | - wget --content-disposition https://get.typo3.org/13 |
26 | | -
|
27 | | - Ensure that the package is one level above the web server's document root. |
28 | | - |
29 | | - .. note:: |
30 | | - Make sure to check the :ref:`release_integrity` of the downloaded files. |
31 | | - |
32 | | - |
33 | | -#. Unpack the :file:`typo3_src-13.x.y.tar.gz`: |
34 | | - |
35 | | - .. code-block:: bash |
36 | | - :caption: /var/www/site/$ |
37 | | -
|
38 | | - tar xzf typo3_src-13.x.y.tar.gz |
39 | | -
|
40 | | - Note that the `x` in the extracted folder will be replaced with the latest |
41 | | - minor number and the `y` by the bugfix number of TYPO3. |
42 | | - |
43 | | - |
44 | | -#. Create the following symlinks in the document root: |
45 | | - |
46 | | - |
47 | | - .. code-block:: bash |
48 | | - :caption: /var/www/site/$ |
49 | | -
|
50 | | - cd public |
51 | | - ln -s ../typo3_src-13.x.y typo3_src |
52 | | - ln -s typo3_src/index.php index.php |
53 | | - ln -s typo3_src/typo3 typo3 |
54 | | -
|
55 | | - .. important:: |
56 | | - Make sure to upload the whole TYPO3 source directory including the |
57 | | - :path:`vendor` directory, otherwise you will miss important dependencies. |
58 | | - |
59 | | -#. This will then create the following structure: |
60 | | - |
61 | | -.. directory-tree:: |
62 | | - |
63 | | - * :path:`typo3_src-13.x.y/` |
64 | | - * :path:`public/` |
65 | | - |
66 | | - * :path:`typo3_src -> ../typo3_src-13.x.y/` |
67 | | - * :path:`typo3 -> typo3_src/typo3/` |
68 | | - * :file:`index.php -> typo3_src/index.php` |
69 | | - |
70 | | -Installing on a Windows Server |
71 | | -============================== |
72 | | - |
73 | | -#. Download TYPO3's source package from `https://get.typo3.org/ |
74 | | - <https://get.typo3.org/>`_ and extract the :file:`.zip` file on the web server. |
75 | | - |
76 | | - Ensure that the package is one level above the web server's document root. |
77 | | - |
78 | | - |
79 | | -#. Use the shell to create the following symlinks in the document root: |
80 | | - |
81 | | - .. code-block:: bash |
82 | | - :caption: /var/www/site/$ |
83 | | -
|
84 | | - cd public |
85 | | - mklink /d typo3_src ..\typo3_src-13.x.y |
86 | | - mklink /d typo3 typo3_src\typo3 |
87 | | - mklink index.php typo3_src\index.php |
88 | | -
|
89 | | -#. This will then create the following structure: |
90 | | - |
91 | | - .. directory-tree:: |
92 | | - |
93 | | - * :path:`typo3_src-13.x.y/` |
94 | | - * :path:`public/` |
95 | | - |
96 | | - * :path:`typo3_src -> ../typo3_src-13.x.y/` |
97 | | - * :path:`typo3 -> typo3_src/typo3/` |
98 | | - * :file:`index.php -> typo3_src/index.php` |
99 | | - |
100 | | - |
101 | | -Completing The Installation |
102 | | -=========================== |
103 | | - |
104 | | -After the source package has been extracted and the symlinks created, continue from the |
105 | | -:ref:`Access TYPO3 via a web browser <install-access-typo3-via-a-web-browser>` |
106 | | -section of the :ref:`instructions for installing TYPO3 using Composer <install>` to |
107 | | -complete the installation. |
108 | | - |
109 | | -.. toctree:: |
110 | | - :hidden: |
111 | | - :titlesonly: |
112 | | - |
113 | | - ReleaseIntegrity |
| 18 | +See how to do a :ref:`Legacy installation in TYPO3 explained <t3coreapi:legacyinstallation>`. |
0 commit comments