Active
Project:
Animated gif support for image styles
Version:
7.x-1.6
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Sep 2019 at 06:51 UTC
Updated:
24 Mar 2020 at 09:48 UTC
Jump to comment: Most recent
Comments
Comment #2
joinso commentedComment #3
Cristina Gonzalo commentedUntil we wait for a solution for that I post a solution to clear the temporary files.
Add a daily crontab to call this bash script:
#!/bin/bash
PATH_TOOLS=/USER/YOUR_TOOLS_PATH
mkdir -p $PATH_TOOLS/logs
LOG_FILE=$PATH_TOOLS/logs/rm_anim_gifs_tmp.log
find /tmp/resized--* -mtime +1 -exec rm {} \; > $LOG_FILE 2>&1
find /tmp/animgif_* -mtime +1 -exec rm {} \; >> $LOG_FILE 2>&1
Take in care that I assume that /tmp is your Drupal temporary folder.
Regards,
Cristina Gonzalo
JOINSO