Joomla 3.9
On this page, we explain step by step how to setup Joomla 3.9 with CloudPanel.
Installation
In the following example we will setup Joomla under the domain www.domain.com.
Preparation
Before we can start with the installation, we need to create an SSH User, a Database, and a Domain.
When you Add the Domain, make sure to select the Joomla 3.9 Vhost Template and the right PHP Version.

Installation
To install Joomla do the following steps:
- Login via SSH to the server e.g. with john-ssh and go to the users tmp directory:
cd ~/tmp
- Download and extract the latest Joomla 3.9 version.
mkdir ~/tmp/joomla-3.9 && curl -sL https://downloads.joomla.org/cms/joomla3/3-9-23/Joomla_3-9-23-Stable-Full_Package.tar.gz | tar xfz - -C ~/tmp/joomla-3.9/
- Move files to the htdocs directory of the domain:
cp -R joomla-3.9/* /home/cloudpanel/htdocs/www.domain.com/
- Reset permissions.
cd /home/cloudpanel/htdocs/
clpctl system:permissions:reset www.domain.com 775
- Clean up the tmp directory.
rm -rf ~/tmp/*
- Open your domain in the browser and go through the installation wizard.

- Done! Joomla 3.9 is now installed.
