Preload Cronjob is flooding /root
-
Hi, I just noticed that my /root directory has more than 200.000 entries from wpfastestcache, I am reloading the cache every minute via cron, to make sure it refills quickly after some page changes.
I guess this command must be the issue:
wget -O – “https://www.YOUR-URL.com/?action=wpfastestcache&type=preload” >/dev/null 2>&1
(suggested here: https://www.wpfastestcache.com/features/preload-settings/)
It’s downloading and creating a file in the format “index.html?action=wpfastestcache&type=preload.204622” for each request, if I am not totally wrong, do you have an alternative way to call it?
Can I switch to
curl -s “https://www.YOUR-URL.com/?action=wpfastestcache&type=preload” >/dev/null
or are these files required?
- You must be logged in to reply to this topic.