Skip to content
Merged
Changes from 3 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/
Comment thread
rfalkenstein marked this conversation as resolved.
Outdated
```
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