TYPO3 12 LTS (12.4.30)
The old stable LTS release (for existing projects)
Download
To the detailed instructions in Getting Started, Installing TYPO3 with DDEV
DDEV simplifies integrating the power and consistency of containerization into your workflows. Set up environments in minutes; switch contexts and projects quickly and easily; speed your time to deployment. DDEV handles the complexity. You get on with the valuable part of your job.
Before proceeding, make sure your DDEV installation is up-to-date.
In a new project folder using your favorite shell, run these lines:
ddev config --project-type=typo3 --docroot=public --php-version 8.1 --webserver-type 'apache-fpm'
ddev composer create --no-install "typo3/cms-base-distribution:^12.4"
ddev composer install
ddev restart
ddev typo3 setup --server-type=apache --driver=mysqli --host=db --port=3306 --dbname=db --username=db --password=db
ddev restart
ddev launch /typo3/
Important note for Git Bash users on Windows using the default terminal MSYS2, don't forget to prepend winpty to interactive commands:
winpty ddev typo3 setup
If you are experienced with Composer you can create your own composer.json and select the needed packages of TYPO3 via the Composer Helper. Instead of the ddev composer create
command above, run the command created with the Composer Helper prepended with ddev
. E.g.:
ddev config --project-type=typo3 --docroot=public --php-version 8.1 --webserver-type 'apache-fpm'
ddev composer require "typo3/cms-core:^12.4" "typo3/minimal:^12.4" ...
ddev typo3 setup --server-type=apache --driver=mysqli --host=db --port=3306 --dbname=db --username=db --password=db
ddev restart
ddev launch /typo3/
composer create-project "typo3/cms-base-distribution:^12.4" my-new-project
If you are experienced with Composer you can create your own composer.json and select the needed packages of TYPO3 via the Composer Helper.
wget --content-disposition https://get.typo3.org/12.4.30Using cURL (e.g., when wget fails with SSL error)
curl -L -o typo3_src.tgz https://get.typo3.org/12.4.30
In case you are encountering SSL warnings (host name mismatch), please make sure that you are using a client that supports Server Name Indication (SNI). This especially affects old versions of wget (before version 1.14).
See also: TYPO3 installation with wget
git clone https://github.com/typo3/typo3
See also: TYPO3 contribution quick start: Get ready to contribute to TYPO3 in under 30 minutes!
System Requirements
For more information and installation instructions read the Installation guide.
Operating System | Linux, Microsoft Windows or macOS (this also includes hosting on all common cloud environments) |
---|---|
Webserver | Apache httpd, Nginx, Microsoft IIS, Caddy Server |
Supported Browsers |
Chrome
(latest)
Edge (latest) Firefox (latest) Safari (latest) |
Composer |
Composer
>= 2.1
|
Database |
MariaDB
>= 10.3
<= 11.0
MySQL >= 8.0.17 PostgreSQL >= 10.0 SQLite >= 3.8.3 |
Hardware |
RAM
>= 256
MB
|
PHP |
PHP
>= 8.1.0
<= 8.4.99
|
TYPO3 has been tested to work on the platforms listed above. Further setups are conceivable. Let us know which components we should add to the list.
Checksums of TYPO3 12.4.30
SHA256
4e0394910c45782522d5323abf5bcf1f8fd59e6089b22aab35282461e2327f12 typo3_src-12.4.30.tar.gz 4792248d8c7c44886e77ac562bfdde8a58ce2de157df4ab1cc0282202ef8232e typo3_src-12.4.30.zip
SHA1
388a0837e5dcc72bdb0aec8c73d7425e898080a2 typo3_src-12.4.30.tar.gz 0eaf4f017a36361a3e0e47c1616dc56dbea0cdae typo3_src-12.4.30.zip
MD5
e400e8f847bce9adfb8f09e2a6c31358 typo3_src-12.4.30.tar.gz 8d78404a88a2c3f0846d7313be63436e typo3_src-12.4.30.zip
Package Signatures
TYPO3 Release Packages (the downloadable tarballs and zip files) as well as Git tags are signed using PGP signatures during the automated release process. Besides that, MD5 and SHA2-256 hashes are being generated for these files. Find more details on verifying signatures and hashes in the infrastructure guide.
Download GPG signed release README.md file
Example of verifying integrity of tar.gz package of current release:
wget --content-disposition https://get.typo3.org/12.4.30/tar.gz wget --content-disposition https://get.typo3.org/12.4.30/tar.gz.sig gpg --verify typo3_src-12.4.30.tar.gz.sig typo3_src-12.4.30.tar.gz