The temporary directory and its content are not writable, or are executable

2 topics in a row… what a day :slight_smile:
After getting my ssh connection to the right server I used dpkg-reconfigure and then opened the install-webpage.
The temporary directory and its content are not writable, or are executable.
I haven’t changed anything. As mentioned before its the OVA 3.5. Passbolt Pro
Thanks Chris

Hello,

It occurs generally when some passbolt commands are executed as root user instead of www-data on Debian systems.

You can fix it by restoring correct files ownership:

sudo chown -R www-data:www-data /var/lib/passbolt/tmp/
sudo chmod -R 775 $(find /var/lib/passbolt/tmp/ -type d)
sudo chmod -R 664 $(find /var/lib/passbolt/tmp/ -type f)

If you still have issues, can you post here the output of this command:

sudo /usr/share/php/passbolt/bin/status-report

Cheers,

1 Like

worked like a charme. Thanks :beers:

1 Like