Yii
On this site, you find a guide to install Yii on CloudPanel.
#
Creating a Yii Site#
Via CloudPanel- Click on + Add Site and then click on Create a PHP Site.

- Select the Application Yii 2, enter Domain Name, Site User, Site User Password, and click on Create.

#
Via CloudPanel CLIIf you like the command line, you can create a Yii Site with the following command as root user.
clpctl site:add:php --domainName=www.domain.com --phpVersion=7.4 --vhostTemplate='Yii 2' --siteUser='john-doe' --siteUserPassword='!secretPassword!'
#
Creating a Yii Project- Log in via SSH with the Site User:
ssh john-doe@server-ip-address
- Go to htdocs and delete the directory which CloudPanel has created:
cd htdocs && rm -rf www.domain.com
- Create a Yii Project via Composer:
php7.4 /usr/local/bin/composer create-project --prefer-dist yiisoft/yii2-app-basic www.domain.com
- Done! Yii has been installed.
