• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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