• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Setting up cron job

R

Roosta21

Guest
I have a website url that when inputted into a browser generates the update of a database.

How would I set that up in plesk to run a cron jon to automate this task?
 
Go to "scheduled tasks" under "Server", and add a new task for the user "root". The command should be like that:
PHP:
lynx --source -noredir -validate -verbose 'http://www.URL.tld/' > /tmp/mycron.log 2> /tmp/mycron_error.log

Note: you've to get lynx installed on your host.
 
Thanks for the reply, tried both lynx and wget manually, as root, and they both get 403 forbidden..

checked the logs and they returned the following..

"client denied by server configuration:"

The file is chmod to 777

??
 
Had a .htaccess file in blocking it, silly error :). Thanks for the command below it worked perfectly after i put ' ' at eith side of the url.

Thanks again

Ross
 
Back
Top