Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/configuration/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,14 +560,14 @@ rm -rf /tmp/ilias_update
```
</details>
After upgrading the code from ILIAS 9 to ILIAS 10 due to structural changes, you need to move the `/Customizing/global/plugins`
and `/data` folder to its new destination. Both are now located in the newly created `public` folder. If this `public` folder does not exist yet you
and `/data` folder to its new destination (please beware that custom skins moved to `public/Customizing/skin`).
Both are now located in the newly created `public` folder. If this `public` folder does not exist yet you
will have to execute the npm and composer command first:

```shell
cd /var/www/ilias
sudo -u www-data npm clean-install --omit=dev --ignore-scripts
sudo -u www-data composer install --no-dev
sudo -uwww-data mkdir -p public/Customizing/global/plugins
mv data/* public/data/
mv Customizing/global/plugins/* public/Customizing/global/plugins/
Copy link
Contributor Author

@rfalkenstein rfalkenstein Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It might be a good idea to delete Customizing in the ILIAS root after moving the necessary directories. Same for data

```
Expand Down Expand Up @@ -616,6 +616,8 @@ As soon as all migrations are done you can do the database update:

```shell
cd /var/www/ilias
sudo -u www-data npm clean-install --omit=dev --ignore-scripts
sudo -u www-data composer install --no-dev
sudo -u www-data php cli/setup.php update
```

Expand Down
Loading