Schedule crawler at night

AndreyPopov

Well-Known Member
#4
I don't know what CMS you use and what Linux distributive
for example? I use Opencart 3.x and Opencart LSCache plug-in can use command from cli (command line interface)

Cli Command for Rebuild All Cache
Run the following command at the website host:
curl -N "http://yoursite/index.php?route=extension/module/lscache/recache&from=cli"
my hoster support cron tasks.

for example crontab:
* 2 * * * /usr/bin/curl -N 'https://yoursite/index.php?route=extension/module/lscache/recache&from=cli'
start recache process at 02:00
 
Top