Hi there, Have been searching for commands to setup cronjob for auto executing a script by url each day at 0:00 server time, but I only could find commands to do this for a file, not an url. Could anyone help me out? Currently my command for cronjob ( using cPanel if that matters ) is: 0 0 * * * http://www.mywebsite.net/update_file.php?key=key Code (markup): And before the command I also configured to run this command daily. Thanks in advance.
Try 0 0 * * * wget -O /dev/null http://www.mywebsite.net/update_file.php?key=key Code (markup): This should work.