Possible solutions of your questions

  hosting
<< Previous       A CRON job

Question: I want to add a job to CRON to run a query on the URL. Now the command is /usr/bin/wget -O - -q-t 1 http://krc.land/scheduler/ But it doesn`t work. How is the correct?
Answer:

Hello.

http://ukrline.com.ua/faq.php

wget -O - -q-t 1 http://yourdomain.com/cron.php > /dev/null 2>&1 
key \"-O\" specifies the output to the console (instead of saving to a file), \"-q\" makes it quiet (no screen output), a \"-t 1\" specifies to make only one connection attempt. 


<< Previous