Skip to content

Known update problems

In this article we will add all known problems when updating from or to a specific i-doit version.

Version 25 - 28#

When using the updater it displays v30 as next version which is a bug. In this case use the hotfix or prepare the update manually by unzip the v29 update package into the i-doit folder. Use the corresponding hotfix for your version, Hotfix archive.

Files cannot be copied#

If the message A problem occurred during update: is displayed for 4. file update, this is often due to missing write permissions on the file system. In this case, please use the respective command to set the rights for the i-doit files, depending on the operating system and web server user used:

We assume a "standard" installation, as described below Installation.

1
2
3
4
cd /var/www/html/i-doit/
sudo chown www-data:www-data -R .
sudo find . -type d -name \* -exec chmod 775 {} \;
sudo find . -type f -exec chmod 664 {} \;
1
2
3
4
cd /var/www/html/i-doit/
sudo chown apache:apache -R .
sudo find . -type d -name \* -exec chmod 775 {} \;
sudo find . -type f -exec chmod 664 {} \;
1
2
3
4
cd /var/www/html/i-doit/
sudo chown wwwrun:www -R .
sudo find . -type d -name \* -exec chmod 775 {} \;
sudo find . -type f -exec chmod 664 {} \;

Specific file and directory rights do not need to be set.