Alternative Cron Job

1

I need to run this cron job

***** wget --spider -O - http://dominio.com/cron >/dev/null 2>&1

But the hosting does not allow me to use " , would you have any alternatives for this task?

Look what appears. link

Thank you in advance.

    
asked by anonymous 16.02.2017 / 12:08

1 answer

0

Simply remove the redirection, thus:

wget --spider -O - http://dominio.com/cron
    
16.02.2017 / 12:27