Skip to main content

TYPO3

On this site, you find a guide to install TYPO3 on CloudPanel.

Creating a TYPO3 Site

Via CloudPanel

  1. Click on + Add Site and then click on Create a PHP Site.
Create a PHP Site
  1. Select the Application TYPO3 v12, enter Domain Name, Site User, Site User Password, and click on Create.
Create a TYPO3 Site

Via CloudPanel CLI

If you like the command line, you can create a TYPO3 Site with the following command as root user.

clpctl site:add:php --domainName=www.domain.com --phpVersion=8.2 --vhostTemplate='TYPO3 12' --siteUser='john-doe' --siteUserPassword='!secretPassword!'

Creating a TYPO3 Project

  1. Log in via SSH with the Site User:
ssh john-doe@server-ip-address
  1. Go to htdocs and delete the directory which CloudPanel has created:
cd htdocs && rm -rf www.domain.com
  1. Create a TYPO3 Project via Composer:
php8.2 /usr/local/bin/composer create-project typo3/cms-base-distribution:~12 www.domain.com
  1. Open your site in your browser and go through the installation wizard:
Welcome to TYPO3 Site
  1. Create the empty file FIRST_INSTALL and reload the browser:
touch ~/htdocs/www.domain.com/public/FIRST_INSTALL
  1. Create a Database, open your site in the browser, and go through the TYPO3 Installer.
TYPO3 Installer
  1. Done! TYPO3 has been installed.
TYPO3 Installed