- Posts: 419
- Thank you received: 34
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
How do you know that these are session files of LimeSurvey?I'm running the latest version of LS 5.x and I'm storing session files on the file system. I'm seeing I have about 12 gigs of session files, dating back over 4 months.
Please Log in to join the conversation.
09,39 * * * * root [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi
Please Log in to join the conversation.
Please Log in to join the conversation.
find /path/to/session/files -type f -name "sess_*" -mtime +30 -exec rm {} \;
Please Log in to join the conversation.