Dive into the archives.
- Argument list too long
After run rm -f * you get the error /bin/rm: Argument list too long
Possible options:
Use xargs. Xargs pass a list of arguments to a command. This deletes all the files listed:
ls |xargs rm
Use find. You can use the find command to make some actions with the found elements.
find . -exec rm {} \;
If you don´t [...]
- Could not connect to database for SQL SessionHandler
When you try to login in Horde you see this error:
A fatal error has occurred
Could not connect to database for SQL SessionHandler.
Details have been logged for the administrator.
There are some different reasons that causes this error. This is a checklist to solve the problem.
- Unable to create backup session: Specified file is not accessible
This error happens in Plesk when you try to make a backup from the web interface.
The cause is that Plesk can´t write in the temporal folder specified to storage backups because the owner is root:
ll /var/lib/psa/dumps/
drwx—— 9 root root 4096 Apr 1 14:21 tmp
To fix this change the ownership of the [...]

